From 9f98dec145929400fddc333ebafc146937ecee9d Mon Sep 17 00:00:00 2001 From: Joostlek Date: Wed, 25 Feb 2026 21:27:54 +0100 Subject: [PATCH 1/3] Apply API changes --- src/spotifyaio/spotify.py | 148 +- tests/__snapshots__/test_spotify.ambr | 15590 +++++------------------ tests/fixtures/albums.json | 7372 ----------- tests/fixtures/artist_top_tracks.json | 4524 ------- tests/fixtures/artists.json | 117 - tests/fixtures/audiobooks.json | 11713 ----------------- tests/fixtures/categories.json | 252 - tests/fixtures/category.json | 12 - tests/fixtures/category_playlists.json | 732 -- tests/fixtures/chapters.json | 475 - tests/fixtures/episodes.json | 274 - tests/fixtures/featured_playlists.json | 733 -- tests/fixtures/new_releases.json | 4262 ------- tests/fixtures/user.json | 15 - tests/fixtures/user_playlist.json | 3760 ------ tests/test_spotify.py | 399 - 16 files changed, 3439 insertions(+), 46939 deletions(-) delete mode 100644 tests/fixtures/albums.json delete mode 100644 tests/fixtures/artist_top_tracks.json delete mode 100644 tests/fixtures/artists.json delete mode 100644 tests/fixtures/audiobooks.json delete mode 100644 tests/fixtures/categories.json delete mode 100644 tests/fixtures/category.json delete mode 100644 tests/fixtures/category_playlists.json delete mode 100644 tests/fixtures/chapters.json delete mode 100644 tests/fixtures/episodes.json delete mode 100644 tests/fixtures/featured_playlists.json delete mode 100644 tests/fixtures/new_releases.json delete mode 100644 tests/fixtures/user.json delete mode 100644 tests/fixtures/user_playlist.json diff --git a/src/spotifyaio/spotify.py b/src/spotifyaio/spotify.py index 1f8e521..42ff44b 100644 --- a/src/spotifyaio/spotify.py +++ b/src/spotifyaio/spotify.py @@ -20,33 +20,21 @@ ) from spotifyaio.models import ( Album, - AlbumsResponse, AlbumTracksResponse, Artist, - ArtistResponse, - ArtistTopTracksResponse, Audiobook, AudiobookChapterResponse, - AudiobooksResponse, AudioFeatures, BasePlaylist, - BaseUserProfile, - CategoriesResponse, - Category, - CategoryPlaylistResponse, Chapter, - ChaptersResponse, CurrentPlaying, Device, Devices, Episode, - EpisodesResponse, - FeaturedPlaylistResponse, FollowedArtistResponse, FollowType, Image, ModifyPlaylistResponse, - NewReleasesResponse, NewReleasesResponseInner, PlaybackState, PlayedTrack, @@ -210,20 +198,6 @@ async def get_album(self, album_id: str) -> Album: response = await self._get(f"v1/albums/{identifier}") return Album.from_json(response) - @catch_json_decode_error - async def get_albums(self, album_ids: list[str]) -> list[Album]: - """Get albums.""" - if not album_ids: - return [] - if len(album_ids) > 20: - msg = "Maximum of 20 albums can be requested at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in album_ids]) - } - response = await self._get("v1/albums", params=params) - return AlbumsResponse.from_json(response).albums - @catch_json_decode_error async def get_album_tracks(self, album_id: str) -> list[SimplifiedTrack]: """Get album tracks.""" @@ -282,13 +256,6 @@ async def is_album_saved(self, album_id: str) -> bool: identifier = get_identifier(album_id) return (await self.are_albums_saved([identifier]))[identifier] - @catch_json_decode_error - async def get_new_releases(self) -> list[SimplifiedAlbum]: - """Get new releases.""" - params: dict[str, Any] = {"limit": 48} - response = await self._get("v1/browse/new-releases", params=params) - return NewReleasesResponse.from_json(response).albums.items - @catch_json_decode_error async def get_artist(self, artist_id: str) -> Artist: """Get artist.""" @@ -296,20 +263,6 @@ async def get_artist(self, artist_id: str) -> Artist: response = await self._get(f"v1/artists/{identifier}") return Artist.from_json(response) - @catch_json_decode_error - async def get_artists(self, artist_ids: list[str]) -> list[Artist]: - """Get several artists.""" - if not artist_ids: - return [] - if len(artist_ids) > 50: - msg = "Maximum of 50 artists can be requested at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in artist_ids]) - } - response = await self._get("v1/artists", params=params) - return ArtistResponse.from_json(response).artists - @catch_json_decode_error async def get_artist_albums(self, artist_id: str) -> list[SimplifiedAlbum]: """Get artist albums.""" @@ -318,13 +271,6 @@ async def get_artist_albums(self, artist_id: str) -> list[SimplifiedAlbum]: response = await self._get(f"v1/artists/{identifier}/albums", params=params) return NewReleasesResponseInner.from_json(response).items - @catch_json_decode_error - async def get_artist_top_tracks(self, artist_id: str) -> list[Track]: - """Get artist top tracks.""" - identifier = artist_id.rsplit(":", maxsplit=1)[-1] - response = await self._get(f"v1/artists/{identifier}/top-tracks") - return ArtistTopTracksResponse.from_json(response).tracks - @catch_json_decode_error async def get_audiobook(self, audiobook_id: str) -> Audiobook: """Get audiobook.""" @@ -332,14 +278,6 @@ async def get_audiobook(self, audiobook_id: str) -> Audiobook: response = await self._get(f"v1/audiobooks/{identifier}") return Audiobook.from_json(response) - @catch_json_decode_error - async def get_audiobooks(self, audiobook_ids: list[str]) -> list[Audiobook]: - """Get audiobooks.""" - identifiers = [get_identifier(i) for i in audiobook_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/audiobooks", params=params) - return AudiobooksResponse.from_json(response).audiobooks - @catch_json_decode_error async def get_audiobook_chapters( self, audiobook_id: str @@ -397,19 +335,6 @@ async def are_audiobooks_saved(self, audiobook_ids: list[str]) -> dict[str, bool body: list[bool] = orjson.loads(response) # pylint: disable=no-member return dict(zip(identifiers, body, strict=False)) - @catch_json_decode_error - async def get_categories(self) -> list[Category]: - """Get list of categories.""" - params: dict[str, Any] = {"limit": 48} - response = await self._get("v1/browse/categories", params=params) - return CategoriesResponse.from_json(response).categories.items - - @catch_json_decode_error - async def get_category(self, category_id: str) -> Category: - """Get category.""" - response = await self._get(f"v1/browse/categories/{category_id}") - return Category.from_json(response) - @catch_json_decode_error async def get_chapter(self, chapter_id: str) -> Chapter: """Get chapter.""" @@ -417,20 +342,6 @@ async def get_chapter(self, chapter_id: str) -> Chapter: response = await self._get(f"v1/chapters/{identifier}") return Chapter.from_json(response) - @catch_json_decode_error - async def get_chapters(self, chapter_ids: list[str]) -> list[Chapter]: - """Get chapters.""" - if not chapter_ids: - return [] - if len(chapter_ids) > 50: - msg = "Maximum of 50 chapters can be requested at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in chapter_ids]) - } - response = await self._get("v1/chapters", params=params) - return ChaptersResponse.from_json(response).chapters - @catch_json_decode_error async def get_episode(self, episode_id: str) -> Episode: """Get episode.""" @@ -438,20 +349,6 @@ async def get_episode(self, episode_id: str) -> Episode: response = await self._get(f"v1/episodes/{identifier}") return Episode.from_json(response) - @catch_json_decode_error - async def get_episodes(self, episode_ids: list[str]) -> list[Episode]: - """Get episodes.""" - if not episode_ids: - return [] - if len(episode_ids) > 50: - msg = "Maximum of 50 episodes can be requested at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in episode_ids]) - } - response = await self._get("v1/episodes", params=params) - return EpisodesResponse.from_json(response).episodes - @catch_json_decode_error async def get_saved_episodes(self) -> list[SavedEpisode]: """Get saved episodes.""" @@ -666,6 +563,13 @@ async def update_playlist_details( data["collaborative"] = collaborative await self._put(f"v1/playlists/{identifier}", data=data) + @catch_json_decode_error + async def get_playlists_for_current_user(self) -> list[BasePlaylist]: + """Get playlists.""" + params: dict[str, Any] = {"limit": 48} + response = await self._get("v1/me/playlists", params=params) + return PlaylistResponse.from_json(response).items + @catch_json_decode_error async def get_playlist_items(self, playlist_id: str) -> list[PlaylistTrack]: """Get playlist tracks.""" @@ -735,21 +639,6 @@ async def remove_playlist_items( response = await self._delete(f"v1/playlists/{identifier}/tracks", data=data) return ModifyPlaylistResponse.from_json(response).snapshot_id - @catch_json_decode_error - async def get_playlists_for_current_user(self) -> list[BasePlaylist]: - """Get playlists.""" - params: dict[str, Any] = {"limit": 48} - response = await self._get("v1/me/playlists", params=params) - return PlaylistResponse.from_json(response).items - - @catch_json_decode_error - async def get_playlists_for_user(self, user_id: str) -> list[BasePlaylist]: - """Get playlists.""" - identifier = get_identifier(user_id) - params: dict[str, Any] = {"limit": 48} - response = await self._get(f"v1/user/{identifier}/playlists", params=params) - return PlaylistResponse.from_json(response).items - @catch_json_decode_error async def create_playlist( self, @@ -772,23 +661,6 @@ async def create_playlist( response = await self._post(f"v1/users/{identifier}/playlists", data=data) return Playlist.from_json(response) - @catch_json_decode_error - async def get_featured_playlists(self) -> list[BasePlaylist]: - """Get featured playlists.""" - params: dict[str, Any] = {"limit": 48} - response = await self._get("v1/browse/featured-playlists", params=params) - return FeaturedPlaylistResponse.from_json(response).playlists.items - - @catch_json_decode_error - async def get_category_playlists(self, category_id: str) -> list[BasePlaylist]: - """Get category playlists.""" - params: dict[str, Any] = {"limit": 48} - response = await self._get( - f"v1/browse/categories/{category_id}/playlists", - params=params, - ) - return CategoryPlaylistResponse.from_json(response).playlists.items - @catch_json_decode_error async def get_playlist_cover_image(self, playlist_id: str) -> list[Image]: """Get playlist cover image.""" @@ -956,12 +828,6 @@ async def get_top_tracks(self) -> list[Track]: response = await self._get("v1/me/top/tracks", params=params) return TopTracksResponse.from_json(response).items - @catch_json_decode_error - async def get_user(self, user_id: str) -> BaseUserProfile: - """Get user.""" - response = await self._get(f"v1/users/{user_id}") - return BaseUserProfile.from_json(response) - async def follow_playlist(self, playlist_id: str) -> None: """Follow a playlist.""" identifier = get_identifier(playlist_id) diff --git a/tests/__snapshots__/test_spotify.ambr b/tests/__snapshots__/test_spotify.ambr index a617844..afb2bea 100644 --- a/tests/__snapshots__/test_spotify.ambr +++ b/tests/__snapshots__/test_spotify.ambr @@ -922,1047 +922,237 @@ }), ]) # --- -# name: test_get_albums +# name: test_get_artist + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebee07b5820dd91d15d397e29c', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ee07b5820dd91d15d397e29c', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ee07b5820dd91d15d397e29c', + 'width': 160, + }), + ]), + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }) +# --- +# name: test_get_artist_albums list([ dict({ - 'album_id': '382ObEPsp2rxGrnsizN5TX', + 'album_id': '56jg3KJcYmfL7RzYmG2O1Q', 'album_type': , 'artists': list([ dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27326597c053b38c9cf93f8f3a9', + 'url': 'https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0226597c053b38c9cf93f8f3a9', + 'url': 'https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485126597c053b38c9cf93f8f3a9', + 'url': 'https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520', 'width': 64, }), ]), - 'name': 'TRON: Legacy Reconfigured', - 'release_date': '2011-01-01', + 'name': 'Trackhouse (Daytona 500 Edition)', + 'release_date': '2024-02-16', 'release_date_precision': , - 'total_tracks': 15, - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '3a9qv6NLHnsVxJUtKOMHvD', - 'name': 'The Glitch Mob', - 'uri': 'spotify:artist:3a9qv6NLHnsVxJUtKOMHvD', - }), - ]), - 'disc_number': 1, - 'duration_ms': 262240, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4lteJuSjb9Jt9W1W7PIU2U', - }), - 'href': 'https://api.spotify.com/v1/tracks/4lteJuSjb9Jt9W1W7PIU2U', - 'is_local': False, - 'name': 'Derezzed - Remixed by The Glitch Mob', - 'track_id': '4lteJuSjb9Jt9W1W7PIU2U', - 'track_number': 1, - 'uri': 'spotify:track:4lteJuSjb9Jt9W1W7PIU2U', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '4CecgT3PfTiMzdO3pFCDNP', - 'name': 'M83 VS Big Black Delta', - 'uri': 'spotify:artist:4CecgT3PfTiMzdO3pFCDNP', - }), - dict({ - 'artist_id': '63MQldklfxkjYDoUE4Tppz', - 'name': 'M83', - 'uri': 'spotify:artist:63MQldklfxkjYDoUE4Tppz', - }), - dict({ - 'artist_id': '2TXpVEw5FbzDh93tLoDm0i', - 'name': 'Big Black Delta', - 'uri': 'spotify:artist:2TXpVEw5FbzDh93tLoDm0i', - }), - ]), - 'disc_number': 1, - 'duration_ms': 234986, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/66uVqkmHAc0MBUzoPhIypN', - }), - 'href': 'https://api.spotify.com/v1/tracks/66uVqkmHAc0MBUzoPhIypN', - 'is_local': False, - 'name': 'Fall - Remixed by M83 VS Big Black Delta', - 'track_id': '66uVqkmHAc0MBUzoPhIypN', - 'track_number': 2, - 'uri': 'spotify:track:66uVqkmHAc0MBUzoPhIypN', - }), + 'total_tracks': 7, + 'uri': 'spotify:album:56jg3KJcYmfL7RzYmG2O1Q', + }), + dict({ + 'album_id': '1l86t4bTNT2j1X0ZBCIv6R', + 'album_type': , + 'artists': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '5eKLa1xyHLq8ERWmT1CRHj', - 'name': 'The Crystal Method', - 'uri': 'spotify:artist:5eKLa1xyHLq8ERWmT1CRHj', - }), - ]), - 'disc_number': 1, - 'duration_ms': 267786, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4OEnpg5ubhg6OQ4M2ZjtsL', - }), - 'href': 'https://api.spotify.com/v1/tracks/4OEnpg5ubhg6OQ4M2ZjtsL', - 'is_local': False, - 'name': 'The Grid - Remixed by The Crystal Method', - 'track_id': '4OEnpg5ubhg6OQ4M2ZjtsL', - 'track_number': 3, - 'uri': 'spotify:track:4OEnpg5ubhg6OQ4M2ZjtsL', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), + ]), + 'images': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '3gqv1kgivAc92KnUm4elKv', - 'name': 'Teddybears', - 'uri': 'spotify:artist:3gqv1kgivAc92KnUm4elKv', - }), - ]), - 'disc_number': 1, - 'duration_ms': 334346, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2EyK6JBWqftJlxAuqd0Dsq', - }), - 'href': 'https://api.spotify.com/v1/tracks/2EyK6JBWqftJlxAuqd0Dsq', - 'is_local': False, - 'name': 'Adagio for TRON - Remixed by Teddybears', - 'track_id': '2EyK6JBWqftJlxAuqd0Dsq', - 'track_number': 4, - 'uri': 'spotify:track:2EyK6JBWqftJlxAuqd0Dsq', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d', + 'width': 640, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '1mB4aweE1XGdjbFVFC8i5m', - 'name': 'Ki:Theory', - 'uri': 'spotify:artist:1mB4aweE1XGdjbFVFC8i5m', - }), - ]), - 'disc_number': 1, - 'duration_ms': 291506, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1TT6gRprLQ5vSWgoWpyKfR', - }), - 'href': 'https://api.spotify.com/v1/tracks/1TT6gRprLQ5vSWgoWpyKfR', - 'is_local': False, - 'name': 'The Son of Flynn - Remixed by Ki:Theory', - 'track_id': '1TT6gRprLQ5vSWgoWpyKfR', - 'track_number': 5, - 'uri': 'spotify:track:1TT6gRprLQ5vSWgoWpyKfR', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d', + 'width': 300, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '5MO2kbaGGA2a8kL4c9qqHq', - 'name': 'Paul Oakenfold', - 'uri': 'spotify:artist:5MO2kbaGGA2a8kL4c9qqHq', - }), - ]), - 'disc_number': 1, - 'duration_ms': 275266, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6hEvTmmvby9ZTkSdfmPW3m', - }), - 'href': 'https://api.spotify.com/v1/tracks/6hEvTmmvby9ZTkSdfmPW3m', - 'is_local': False, - 'name': 'C.L.U. - Remixed by Paul Oakenfold', - 'track_id': '6hEvTmmvby9ZTkSdfmPW3m', - 'track_number': 6, - 'uri': 'spotify:track:6hEvTmmvby9ZTkSdfmPW3m', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d', + 'width': 64, }), + ]), + 'name': 'Trackhouse', + 'release_date': '2023-10-06', + 'release_date_precision': , + 'total_tracks': 14, + 'uri': 'spotify:album:1l86t4bTNT2j1X0ZBCIv6R', + }), + dict({ + 'album_id': '6nCJAxRvXmPkPiZo8Vh5ZG', + 'album_type': , + 'artists': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '3OsRAKCvk37zwYcnzRf5XF', - 'name': 'Moby', - 'uri': 'spotify:artist:3OsRAKCvk37zwYcnzRf5XF', - }), - ]), - 'disc_number': 1, - 'duration_ms': 392293, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/03uOJUuuTgaFFI1Efal1no', - }), - 'href': 'https://api.spotify.com/v1/tracks/03uOJUuuTgaFFI1Efal1no', - 'is_local': False, - 'name': 'The Son of Flynn - Remixed by Moby', - 'track_id': '03uOJUuuTgaFFI1Efal1no', - 'track_number': 7, - 'uri': 'spotify:track:03uOJUuuTgaFFI1Efal1no', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), + ]), + 'images': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '62k5LKMhymqlDNo2DWOvvv', - 'name': 'Boys Noize', - 'uri': 'spotify:artist:62k5LKMhymqlDNo2DWOvvv', - }), - ]), - 'disc_number': 1, - 'duration_ms': 340186, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3YYnfKM02WkygOwg6ozfrL', - }), - 'href': 'https://api.spotify.com/v1/tracks/3YYnfKM02WkygOwg6ozfrL', - 'is_local': False, - 'name': 'End of Line - Remixed by Boys Noize', - 'track_id': '3YYnfKM02WkygOwg6ozfrL', - 'track_number': 8, - 'uri': 'spotify:track:3YYnfKM02WkygOwg6ozfrL', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d', + 'width': 640, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '6TQj5BFPooTa08A7pk8AQ1', - 'name': 'Kaskade', - 'uri': 'spotify:artist:6TQj5BFPooTa08A7pk8AQ1', - }), - ]), - 'disc_number': 1, - 'duration_ms': 412440, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2jFLd9OdNcLsblpv4fDTRn', - }), - 'href': 'https://api.spotify.com/v1/tracks/2jFLd9OdNcLsblpv4fDTRn', - 'is_local': False, - 'name': 'Rinzler - Remixed by Kaskade', - 'track_id': '2jFLd9OdNcLsblpv4fDTRn', - 'track_number': 9, - 'uri': 'spotify:track:2jFLd9OdNcLsblpv4fDTRn', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d', + 'width': 300, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '2wouN3QXejYa5tKetYdcVX', - 'name': 'Com Truise', - 'uri': 'spotify:artist:2wouN3QXejYa5tKetYdcVX', - }), - ]), - 'disc_number': 1, - 'duration_ms': 292093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3SL3UavpjRKNMM9UVlE9Bx', - }), - 'href': 'https://api.spotify.com/v1/tracks/3SL3UavpjRKNMM9UVlE9Bx', - 'is_local': False, - 'name': 'Encom Part 2 - Remixed by Com Truise', - 'track_id': '3SL3UavpjRKNMM9UVlE9Bx', - 'track_number': 10, - 'uri': 'spotify:track:3SL3UavpjRKNMM9UVlE9Bx', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d', + 'width': 64, }), + ]), + 'name': 'Libertad 548', + 'release_date': '2019-09-27', + 'release_date_precision': , + 'total_tracks': 15, + 'uri': 'spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG', + }), + dict({ + 'album_id': '6ZSNnOY2ESMNoVQ5DdvHrj', + 'album_type': , + 'artists': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '3hXDMlrPegHRO0zUvBsRSI', - 'name': 'Photek', - 'uri': 'spotify:artist:3hXDMlrPegHRO0zUvBsRSI', - }), - ]), - 'disc_number': 1, - 'duration_ms': 318720, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2UBYw2qf9PkvoKQ610ocft', - }), - 'href': 'https://api.spotify.com/v1/tracks/2UBYw2qf9PkvoKQ610ocft', - 'is_local': False, - 'name': 'End of Line - Remixed by Photek', - 'track_id': '2UBYw2qf9PkvoKQ610ocft', - 'track_number': 11, - 'uri': 'spotify:track:2UBYw2qf9PkvoKQ610ocft', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '5F8v5xSIGtfukNxq0Jqgwh', - 'name': 'The Japanese Popstars', - 'uri': 'spotify:artist:5F8v5xSIGtfukNxq0Jqgwh', - }), - ]), - 'disc_number': 1, - 'duration_ms': 367720, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7irNlzUSPNgCDtEyQuS3lm', - }), - 'href': 'https://api.spotify.com/v1/tracks/7irNlzUSPNgCDtEyQuS3lm', - 'is_local': False, - 'name': 'Arena - Remixed by The Japanese Popstars', - 'track_id': '7irNlzUSPNgCDtEyQuS3lm', - 'track_number': 12, - 'uri': 'spotify:track:7irNlzUSPNgCDtEyQuS3lm', + 'artist_id': '6RFjbxELOWFXv54t6ccuRZ', + 'name': 'Jorge Gomez', + 'uri': 'spotify:artist:6RFjbxELOWFXv54t6ccuRZ', }), + ]), + 'images': list([ dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', - 'name': 'Avicii', - 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 303946, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1rn6JIHBuBZiwvA57jeoOB', - }), - 'href': 'https://api.spotify.com/v1/tracks/1rn6JIHBuBZiwvA57jeoOB', - 'is_local': False, - 'name': 'Derezzed - Remixed by Avicii', - 'track_id': '1rn6JIHBuBZiwvA57jeoOB', - 'track_number': 13, - 'uri': 'spotify:track:1rn6JIHBuBZiwvA57jeoOB', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874', + 'width': 640, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '4iVhFmG8YCCEHANGeUUS9q', - 'name': 'Pretty Lights', - 'uri': 'spotify:artist:4iVhFmG8YCCEHANGeUUS9q', - }), - ]), - 'disc_number': 1, - 'duration_ms': 272853, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4OgB6TRmIGBRT4NoFxxIQd', - }), - 'href': 'https://api.spotify.com/v1/tracks/4OgB6TRmIGBRT4NoFxxIQd', - 'is_local': False, - 'name': 'Solar Sailer - Remixed by Pretty Lights', - 'track_id': '4OgB6TRmIGBRT4NoFxxIQd', - 'track_number': 14, - 'uri': 'spotify:track:4OgB6TRmIGBRT4NoFxxIQd', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874', + 'width': 300, }), dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - dict({ - 'artist_id': '3CfH3WZPzbk5mNDWXpGIy6', - 'name': 'Sander Kleinenberg', - 'uri': 'spotify:artist:3CfH3WZPzbk5mNDWXpGIy6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 304466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1Nv1h7ANN9E4rAjLP4OfgA', - }), - 'href': 'https://api.spotify.com/v1/tracks/1Nv1h7ANN9E4rAjLP4OfgA', - 'is_local': False, - 'name': 'TRON Legacy (End Titles) - Remixed by Sander Kleinenberg', - 'track_id': '1Nv1h7ANN9E4rAjLP4OfgA', - 'track_number': 15, - 'uri': 'spotify:track:1Nv1h7ANN9E4rAjLP4OfgA', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874', + 'width': 64, }), ]), - 'uri': 'spotify:album:382ObEPsp2rxGrnsizN5TX', + 'name': 'Gotti (Original Motion Picture Soundtrack)', + 'release_date': '2018-06-14', + 'release_date_precision': , + 'total_tracks': 19, + 'uri': 'spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj', }), dict({ - 'album_id': '1A2GTWGtFfWp7KSQTwWOyo', + 'album_id': '4jtKPpBQ5eneMwEI94f5Y0', 'album_type': , 'artists': list([ dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273d8601e15fa1b4351fe1fc6ae', + 'url': 'https://i.scdn.co/image/ab67616d0000b273847d47b2d33517f0e8b2b958', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d8601e15fa1b4351fe1fc6ae', + 'url': 'https://i.scdn.co/image/ab67616d00001e02847d47b2d33517f0e8b2b958', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851d8601e15fa1b4351fe1fc6ae', + 'url': 'https://i.scdn.co/image/ab67616d00004851847d47b2d33517f0e8b2b958', 'width': 64, }), ]), - 'name': 'Human After All', - 'release_date': '2005-03-14', + 'name': 'Climate Change', + 'release_date': '2017-03-17', 'release_date_precision': , - 'total_tracks': 10, - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 319879, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3aByRUC2BVL6Fs1zI723sd', - }), - 'href': 'https://api.spotify.com/v1/tracks/3aCKAkMx3yfaj3AO5Gz47e', - 'is_local': False, - 'name': 'Human After All', - 'track_id': '3aCKAkMx3yfaj3AO5Gz47e', - 'track_number': 1, - 'uri': 'spotify:track:3aCKAkMx3yfaj3AO5Gz47e', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 263240, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2ABpuao3ZbTjP2cSiX9KZc', - }), - 'href': 'https://api.spotify.com/v1/tracks/0UZRFYMoz9xmeE2AQUhTDl', - 'is_local': False, - 'name': 'The Prime Time of Your Life', - 'track_id': '0UZRFYMoz9xmeE2AQUhTDl', - 'track_number': 2, - 'uri': 'spotify:track:0UZRFYMoz9xmeE2AQUhTDl', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 287720, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4zu9wo2FXoBSsKjO6tRB3R', - }), - 'href': 'https://api.spotify.com/v1/tracks/7LL40F6YdZgeiQ6en1c7Lk', - 'is_local': False, - 'name': 'Robot Rock', - 'track_id': '7LL40F6YdZgeiQ6en1c7Lk', - 'track_number': 3, - 'uri': 'spotify:track:7LL40F6YdZgeiQ6en1c7Lk', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 321186, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/07KtTNn0wZndtN5NOYdBWR', - }), - 'href': 'https://api.spotify.com/v1/tracks/60HSQkYSlJVtdRdHgzRsXz', - 'is_local': False, - 'name': 'Steam Machine', - 'track_id': '60HSQkYSlJVtdRdHgzRsXz', - 'track_number': 4, - 'uri': 'spotify:track:60HSQkYSlJVtdRdHgzRsXz', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 289680, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1WnXCfO6oIxG0TbJj29MqR', - }), - 'href': 'https://api.spotify.com/v1/tracks/4ABWPP59ItFKykdaDF09K5', - 'is_local': False, - 'name': 'Make Love', - 'track_id': '4ABWPP59ItFKykdaDF09K5', - 'track_number': 5, - 'uri': 'spotify:track:4ABWPP59ItFKykdaDF09K5', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 248400, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/61qwHnU8dyMqPemGzopDcp', - }), - 'href': 'https://api.spotify.com/v1/tracks/73MAeHX5sqLYfuYclsrvHc', - 'is_local': False, - 'name': 'The Brainwasher', - 'track_id': '73MAeHX5sqLYfuYclsrvHc', - 'track_number': 6, - 'uri': 'spotify:track:73MAeHX5sqLYfuYclsrvHc', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 19200, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0cV1dl2k19YoGbxTKDb0rH', - }), - 'href': 'https://api.spotify.com/v1/tracks/3dWxT7lAv6lmXEW2AEZyPQ', - 'is_local': False, - 'name': 'On / Off', - 'track_id': '3dWxT7lAv6lmXEW2AEZyPQ', - 'track_number': 7, - 'uri': 'spotify:track:3dWxT7lAv6lmXEW2AEZyPQ', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 287840, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/73mTIDCNKGfUF4MiFfR3b5', - }), - 'href': 'https://api.spotify.com/v1/tracks/37M8nuFfSrlKfTR0AAp7gK', - 'is_local': False, - 'name': 'Television Rules the Nation', - 'track_id': '37M8nuFfSrlKfTR0AAp7gK', - 'track_number': 8, - 'uri': 'spotify:track:37M8nuFfSrlKfTR0AAp7gK', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 284280, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0LSLM0zuWRkEYemF7JcfEE', - }), - 'href': 'https://api.spotify.com/v1/tracks/1iNeZGJsoC0D7ZyJTdIbDS', - 'is_local': False, - 'name': 'Technologic', - 'track_id': '1iNeZGJsoC0D7ZyJTdIbDS', - 'track_number': 9, - 'uri': 'spotify:track:1iNeZGJsoC0D7ZyJTdIbDS', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 417320, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3PsJ6zisndTa3F9eOjBfCc', - }), - 'href': 'https://api.spotify.com/v1/tracks/0Dezmoeb373GNcYBjLVAMH', - 'is_local': False, - 'name': 'Emotion', - 'track_id': '0Dezmoeb373GNcYBjLVAMH', - 'track_number': 10, - 'uri': 'spotify:track:0Dezmoeb373GNcYBjLVAMH', - }), - ]), - 'uri': 'spotify:album:1A2GTWGtFfWp7KSQTwWOyo', + 'total_tracks': 12, + 'uri': 'spotify:album:4jtKPpBQ5eneMwEI94f5Y0', }), dict({ - 'album_id': '2noRn2Aes5aoNVsU6iWThc', + 'album_id': '0tKKoGCz9CaZ3x1hDD6Ss2', 'album_type': , 'artists': list([ dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736610c21366e613bfd9f5d197', + 'url': 'https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026610c21366e613bfd9f5d197', + 'url': 'https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516610c21366e613bfd9f5d197', + 'url': 'https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf', 'width': 64, }), ]), - 'name': 'Discovery', - 'release_date': '2001-03-12', + 'name': 'Dale', + 'release_date': '2015-06-30', 'release_date_precision': , - 'total_tracks': 14, - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 320357, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV', - }), - 'href': 'https://api.spotify.com/v1/tracks/0DiWol3AO6WpXZgp0goxAV', - 'is_local': False, - 'name': 'One More Time', - 'track_id': '0DiWol3AO6WpXZgp0goxAV', - 'track_number': 1, - 'uri': 'spotify:track:0DiWol3AO6WpXZgp0goxAV', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 212546, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3H3cOQ6LBLSvmcaV7QkZEu', - }), - 'href': 'https://api.spotify.com/v1/tracks/3H3cOQ6LBLSvmcaV7QkZEu', - 'is_local': False, - 'name': 'Aerodynamic', - 'track_id': '3H3cOQ6LBLSvmcaV7QkZEu', - 'track_number': 2, - 'uri': 'spotify:track:3H3cOQ6LBLSvmcaV7QkZEu', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 301373, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2VEZx7NWsZ1D0eJ4uv5Fym', - }), - 'href': 'https://api.spotify.com/v1/tracks/2VEZx7NWsZ1D0eJ4uv5Fym', - 'is_local': False, - 'name': 'Digital Love', - 'track_id': '2VEZx7NWsZ1D0eJ4uv5Fym', - 'track_number': 3, - 'uri': 'spotify:track:2VEZx7NWsZ1D0eJ4uv5Fym', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 226413, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5W3cjX2J3tjhG8zb6u0qHn', - }), - 'href': 'https://api.spotify.com/v1/tracks/5W3cjX2J3tjhG8zb6u0qHn', - 'is_local': False, - 'name': 'Harder, Better, Faster, Stronger', - 'track_id': '5W3cjX2J3tjhG8zb6u0qHn', - 'track_number': 4, - 'uri': 'spotify:track:5W3cjX2J3tjhG8zb6u0qHn', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211640, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6vuPZX9fWESg5js2JFTQRJ', - }), - 'href': 'https://api.spotify.com/v1/tracks/6vuPZX9fWESg5js2JFTQRJ', - 'is_local': False, - 'name': 'Crescendolls', - 'track_id': '6vuPZX9fWESg5js2JFTQRJ', - 'track_number': 5, - 'uri': 'spotify:track:6vuPZX9fWESg5js2JFTQRJ', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 104466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/63JXZZRbmzooashakb0zbu', - }), - 'href': 'https://api.spotify.com/v1/tracks/63JXZZRbmzooashakb0zbu', - 'is_local': False, - 'name': 'Nightvision', - 'track_id': '63JXZZRbmzooashakb0zbu', - 'track_number': 6, - 'uri': 'spotify:track:63JXZZRbmzooashakb0zbu', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 237800, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/186hvCTyrni4KT9nwIQ7zS', - }), - 'href': 'https://api.spotify.com/v1/tracks/186hvCTyrni4KT9nwIQ7zS', - 'is_local': False, - 'name': 'Superheroes', - 'track_id': '186hvCTyrni4KT9nwIQ7zS', - 'track_number': 7, - 'uri': 'spotify:track:186hvCTyrni4KT9nwIQ7zS', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 201800, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/098ttCNmncrO4YvqWUNMvn', - }), - 'href': 'https://api.spotify.com/v1/tracks/098ttCNmncrO4YvqWUNMvn', - 'is_local': False, - 'name': 'High Life', - 'track_id': '098ttCNmncrO4YvqWUNMvn', - 'track_number': 8, - 'uri': 'spotify:track:098ttCNmncrO4YvqWUNMvn', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 232666, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1NeLwFETswx8Fzxl2AFl91', - }), - 'href': 'https://api.spotify.com/v1/tracks/1NeLwFETswx8Fzxl2AFl91', - 'is_local': False, - 'name': 'Something About Us', - 'track_id': '1NeLwFETswx8Fzxl2AFl91', - 'track_number': 9, - 'uri': 'spotify:track:1NeLwFETswx8Fzxl2AFl91', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 227866, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7cMFjxhbXBpOlais7KMF3j', - }), - 'href': 'https://api.spotify.com/v1/tracks/7cMFjxhbXBpOlais7KMF3j', - 'is_local': False, - 'name': 'Voyager', - 'track_id': '7cMFjxhbXBpOlais7KMF3j', - 'track_number': 10, - 'uri': 'spotify:track:7cMFjxhbXBpOlais7KMF3j', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 345186, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2LD2gT7gwAurzdQDQtILds', - }), - 'href': 'https://api.spotify.com/v1/tracks/2LD2gT7gwAurzdQDQtILds', - 'is_local': False, - 'name': 'Veridis Quo', - 'track_id': '2LD2gT7gwAurzdQDQtILds', - 'track_number': 11, - 'uri': 'spotify:track:2LD2gT7gwAurzdQDQtILds', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 206866, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4npMbTuxrUA3Wd7edACZ2L', - }), - 'href': 'https://api.spotify.com/v1/tracks/4npMbTuxrUA3Wd7edACZ2L', - 'is_local': False, - 'name': 'Short Circuit', - 'track_id': '4npMbTuxrUA3Wd7edACZ2L', - 'track_number': 12, - 'uri': 'spotify:track:4npMbTuxrUA3Wd7edACZ2L', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 240173, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7v9Q0dAb9t7h8gJOkcJHay', - }), - 'href': 'https://api.spotify.com/v1/tracks/7v9Q0dAb9t7h8gJOkcJHay', - 'is_local': False, - 'name': 'Face to Face', - 'track_id': '7v9Q0dAb9t7h8gJOkcJHay', - 'track_number': 13, - 'uri': 'spotify:track:7v9Q0dAb9t7h8gJOkcJHay', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4tZwfgrHOc3mvqYlEYSvVi', - 'name': 'Daft Punk', - 'uri': 'spotify:artist:4tZwfgrHOc3mvqYlEYSvVi', - }), - ]), - 'disc_number': 1, - 'duration_ms': 600293, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3zMvotMEQK3xvH01vA9wAP', - }), - 'href': 'https://api.spotify.com/v1/tracks/3zMvotMEQK3xvH01vA9wAP', - 'is_local': False, - 'name': 'Too Long', - 'track_id': '3zMvotMEQK3xvH01vA9wAP', - 'track_number': 14, - 'uri': 'spotify:track:3zMvotMEQK3xvH01vA9wAP', - }), - ]), - 'uri': 'spotify:album:2noRn2Aes5aoNVsU6iWThc', + 'total_tracks': 12, + 'uri': 'spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2', }), - ]) -# --- -# name: test_get_artist - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebee07b5820dd91d15d397e29c', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ee07b5820dd91d15d397e29c', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ee07b5820dd91d15d397e29c', - 'width': 160, - }), - ]), - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }) -# --- -# name: test_get_artist_albums - list([ dict({ - 'album_id': '56jg3KJcYmfL7RzYmG2O1Q', + 'album_id': '4EUf4YyNjuXypWY6W5wEDm', 'album_type': , 'artists': list([ dict({ @@ -1974,28 +1164,28 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520', + 'url': 'https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520', + 'url': 'https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520', + 'url': 'https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7', 'width': 64, }), ]), - 'name': 'Trackhouse (Daytona 500 Edition)', - 'release_date': '2024-02-16', + 'name': 'Globalization', + 'release_date': '2014-11-21', 'release_date_precision': , - 'total_tracks': 7, - 'uri': 'spotify:album:56jg3KJcYmfL7RzYmG2O1Q', + 'total_tracks': 11, + 'uri': 'spotify:album:4EUf4YyNjuXypWY6W5wEDm', }), dict({ - 'album_id': '1l86t4bTNT2j1X0ZBCIv6R', + 'album_id': '4aawyAB9vmqN3uQ7FjRGTy', 'album_type': , 'artists': list([ dict({ @@ -2007,220 +1197,17 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d', + 'url': 'https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d', + 'url': 'https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d', - 'width': 64, - }), - ]), - 'name': 'Trackhouse', - 'release_date': '2023-10-06', - 'release_date_precision': , - 'total_tracks': 14, - 'uri': 'spotify:album:1l86t4bTNT2j1X0ZBCIv6R', - }), - dict({ - 'album_id': '6nCJAxRvXmPkPiZo8Vh5ZG', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d', - 'width': 64, - }), - ]), - 'name': 'Libertad 548', - 'release_date': '2019-09-27', - 'release_date_precision': , - 'total_tracks': 15, - 'uri': 'spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG', - }), - dict({ - 'album_id': '6ZSNnOY2ESMNoVQ5DdvHrj', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '6RFjbxELOWFXv54t6ccuRZ', - 'name': 'Jorge Gomez', - 'uri': 'spotify:artist:6RFjbxELOWFXv54t6ccuRZ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874', - 'width': 64, - }), - ]), - 'name': 'Gotti (Original Motion Picture Soundtrack)', - 'release_date': '2018-06-14', - 'release_date_precision': , - 'total_tracks': 19, - 'uri': 'spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj', - }), - dict({ - 'album_id': '4jtKPpBQ5eneMwEI94f5Y0', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273847d47b2d33517f0e8b2b958', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02847d47b2d33517f0e8b2b958', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851847d47b2d33517f0e8b2b958', - 'width': 64, - }), - ]), - 'name': 'Climate Change', - 'release_date': '2017-03-17', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:4jtKPpBQ5eneMwEI94f5Y0', - }), - dict({ - 'album_id': '0tKKoGCz9CaZ3x1hDD6Ss2', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf', - 'width': 64, - }), - ]), - 'name': 'Dale', - 'release_date': '2015-06-30', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2', - }), - dict({ - 'album_id': '4EUf4YyNjuXypWY6W5wEDm', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7', - 'width': 64, - }), - ]), - 'name': 'Globalization', - 'release_date': '2014-11-21', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:4EUf4YyNjuXypWY6W5wEDm', - }), - dict({ - 'album_id': '4aawyAB9vmqN3uQ7FjRGTy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4', + 'url': 'https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4', 'width': 64, }), ]), @@ -2638,647 +1625,358 @@ }), ]) # --- -# name: test_get_artist_top_tracks - list([ - dict({ - 'album': dict({ - 'album_id': '4rG0MhkU6UojACJxkMHIXB', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), +# name: test_get_audio_features + dict({ + 'acousticness': 0.011, + 'danceability': 0.696, + 'energy': 0.905, + 'instrumentalness': 0.000905, + 'key': , + 'liveness': 0.302, + 'loudness': -2.743, + 'mode': , + 'speechiness': 0.103, + 'tempo': 114.944, + 'time_signature': , + 'valence': 0.625, + }) +# --- +# name: test_get_audiobook + dict({ + 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', + 'authors': list([ + dict({ + 'name': 'Anya Niewierra', + }), + ]), + 'chapters': list([ + dict({ + 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', + 'chapter_number': 0, + 'duration_ms': 249652, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Planet Pit (Deluxe Version)', - 'release_date': '2011-06-17', - 'release_date_precision': , - 'total_tracks': 16, - 'uri': 'spotify:album:4rG0MhkU6UojACJxkMHIXB', + 'languages': list([ + '', + ]), + 'name': 'Track 1', + 'type': 'chapter', + 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '4D75GcNG95ebPtNvoNVXhz', - 'name': 'AFROJACK', - 'uri': 'spotify:artist:4D75GcNG95ebPtNvoNVXhz', - }), - dict({ - 'artist_id': '21E3waRsmPlU7jZsS13rcj', - 'name': 'Ne-Yo', - 'uri': 'spotify:artist:21E3waRsmPlU7jZsS13rcj', - }), - dict({ - 'artist_id': '1ruutHJcECI7cos2n5TqpO', - 'name': 'Nayer', - 'uri': 'spotify:artist:1ruutHJcECI7cos2n5TqpO', + dict({ + 'chapter_id': '49TZsjpPPA4jEuAJ8bJbGf', + 'chapter_number': 1, + 'duration_ms': 565942, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf', }), - ]), - 'disc_number': 1, - 'duration_ms': 252306, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4QNpBfC0zvjKqPJcyqBy9W', - }), - 'href': 'https://api.spotify.com/v1/tracks/4QNpBfC0zvjKqPJcyqBy9W', - 'is_local': False, - 'name': 'Give Me Everything (feat. Nayer)', - 'track_id': '4QNpBfC0zvjKqPJcyqBy9W', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:4QNpBfC0zvjKqPJcyqBy9W', - }), - dict({ - 'album': dict({ - 'album_id': '2F7tejLHzTqFq2XLol9ZGy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Global Warming: Meltdown (Deluxe Version)', - 'release_date': '2012', - 'release_date_precision': , - 'total_tracks': 17, - 'uri': 'spotify:album:2F7tejLHzTqFq2XLol9ZGy', + 'languages': list([ + '', + ]), + 'name': 'Track 2', + 'type': 'chapter', + 'uri': 'spotify:episode:49TZsjpPPA4jEuAJ8bJbGf', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '6LqNN22kT3074XbTVUrhzX', - 'name': 'Kesha', - 'uri': 'spotify:artist:6LqNN22kT3074XbTVUrhzX', + dict({ + 'chapter_id': '0rPuWNlTx3j4E2NJxat2rP', + 'chapter_number': 2, + 'duration_ms': 974132, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP', }), - ]), - 'disc_number': 1, - 'duration_ms': 204160, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3cHyrEgdyYRjgJKSOiOtcS', - }), - 'href': 'https://api.spotify.com/v1/tracks/3cHyrEgdyYRjgJKSOiOtcS', - 'is_local': False, - 'name': 'Timber', - 'track_id': '3cHyrEgdyYRjgJKSOiOtcS', - 'track_number': 13, - 'type': , - 'uri': 'spotify:track:3cHyrEgdyYRjgJKSOiOtcS', - }), - dict({ - 'album': dict({ - 'album_id': '6A1F3Fkq5dYeYYNkXflcTX', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '23zg3TcAtWQy7J6upgbUnj', - 'name': 'USHER', - 'uri': 'spotify:artist:23zg3TcAtWQy7J6upgbUnj', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27386b0c9728ad3ed338eaeea79', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0286b0c9728ad3ed338eaeea79', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485186b0c9728ad3ed338eaeea79', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Raymond v Raymond (Expanded Edition)', - 'release_date': '2010-03-30', - 'release_date_precision': , - 'total_tracks': 22, - 'uri': 'spotify:album:6A1F3Fkq5dYeYYNkXflcTX', + 'languages': list([ + '', + ]), + 'name': 'Track 3', + 'type': 'chapter', + 'uri': 'spotify:episode:0rPuWNlTx3j4E2NJxat2rP', }), - 'artists': list([ - dict({ - 'artist_id': '23zg3TcAtWQy7J6upgbUnj', - 'name': 'USHER', - 'uri': 'spotify:artist:23zg3TcAtWQy7J6upgbUnj', - }), - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + dict({ + 'chapter_id': '2E1Wk1N4bigyTVSg1tI0No', + 'chapter_number': 3, + 'duration_ms': 485590, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No', }), - ]), - 'disc_number': 1, - 'duration_ms': 220800, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4356Typ82hUiFAynbLYbPn', - }), - 'href': 'https://api.spotify.com/v1/tracks/4356Typ82hUiFAynbLYbPn', - 'is_local': False, - 'name': "DJ Got Us Fallin' In Love (feat. Pitbull)", - 'track_id': '4356Typ82hUiFAynbLYbPn', - 'track_number': 16, - 'type': , - 'uri': 'spotify:track:4356Typ82hUiFAynbLYbPn', - }), - dict({ - 'album': dict({ - 'album_id': '4EUf4YyNjuXypWY6W5wEDm', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Globalization', - 'release_date': '2014-11-21', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:4EUf4YyNjuXypWY6W5wEDm', + 'languages': list([ + '', + ]), + 'name': 'Track 4', + 'type': 'chapter', + 'uri': 'spotify:episode:2E1Wk1N4bigyTVSg1tI0No', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '21E3waRsmPlU7jZsS13rcj', - 'name': 'Ne-Yo', - 'uri': 'spotify:artist:21E3waRsmPlU7jZsS13rcj', + dict({ + 'chapter_id': '6tK38pBz4ZzcdeVlIRkRUM', + 'chapter_number': 4, + 'duration_ms': 523466, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM', }), - ]), - 'disc_number': 1, - 'duration_ms': 229360, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2bJvI42r8EF3wxjOuDav4r', - }), - 'href': 'https://api.spotify.com/v1/tracks/2bJvI42r8EF3wxjOuDav4r', - 'is_local': False, - 'name': 'Time of Our Lives', - 'track_id': '2bJvI42r8EF3wxjOuDav4r', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:2bJvI42r8EF3wxjOuDav4r', - }), - dict({ - 'album': dict({ - 'album_id': '4rG0MhkU6UojACJxkMHIXB', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Planet Pit (Deluxe Version)', - 'release_date': '2011-06-17', - 'release_date_precision': , - 'total_tracks': 16, - 'uri': 'spotify:album:4rG0MhkU6UojACJxkMHIXB', + 'languages': list([ + '', + ]), + 'name': 'Track 5', + 'type': 'chapter', + 'uri': 'spotify:episode:6tK38pBz4ZzcdeVlIRkRUM', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '7bXgB6jMjp9ATFy66eO08Z', - 'name': 'Chris Brown', - 'uri': 'spotify:artist:7bXgB6jMjp9ATFy66eO08Z', + dict({ + 'chapter_id': '4qQ7jT2GhcIat2pQFFxQA9', + 'chapter_number': 5, + 'duration_ms': 1022066, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9', }), - ]), - 'disc_number': 1, - 'duration_ms': 227280, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/62zFEHfAYl5kdHYOivj4BC', - }), - 'href': 'https://api.spotify.com/v1/tracks/62zFEHfAYl5kdHYOivj4BC', - 'is_local': False, - 'name': 'International Love (feat. Chris Brown)', - 'track_id': '62zFEHfAYl5kdHYOivj4BC', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:62zFEHfAYl5kdHYOivj4BC', - }), - dict({ - 'album': dict({ - 'album_id': '2F7tejLHzTqFq2XLol9ZGy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Global Warming: Meltdown (Deluxe Version)', - 'release_date': '2012', - 'release_date_precision': , - 'total_tracks': 17, - 'uri': 'spotify:album:2F7tejLHzTqFq2XLol9ZGy', + 'languages': list([ + '', + ]), + 'name': 'Track 6', + 'type': 'chapter', + 'uri': 'spotify:episode:4qQ7jT2GhcIat2pQFFxQA9', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '1l7ZsJRRS8wlW3WfJfPfNS', - 'name': 'Christina Aguilera', - 'uri': 'spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS', + dict({ + 'chapter_id': '0QNX88urT0YDlKxp9UWOWX', + 'chapter_number': 6, + 'duration_ms': 1602481, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX', }), - ]), - 'disc_number': 1, - 'duration_ms': 229506, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0Hf4aIJpsN4Os2f0y0VqWl', - }), - 'href': 'https://api.spotify.com/v1/tracks/0Hf4aIJpsN4Os2f0y0VqWl', - 'is_local': False, - 'name': 'Feel This Moment (feat. Christina Aguilera)', - 'track_id': '0Hf4aIJpsN4Os2f0y0VqWl', - 'track_number': 3, - 'type': , - 'uri': 'spotify:track:0Hf4aIJpsN4Os2f0y0VqWl', - }), - dict({ - 'album': dict({ - 'album_id': '4RaAjieYFIZRF8uh6GY43r', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273a511f69870fa68e7ba78c099', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a511f69870fa68e7ba78c099', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851a511f69870fa68e7ba78c099', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Pitbull Starring In Rebelution', - 'release_date': '2009-08-27', - 'release_date_precision': , - 'total_tracks': 14, - 'uri': 'spotify:album:4RaAjieYFIZRF8uh6GY43r', + 'languages': list([ + '', + ]), + 'name': 'Track 7', + 'type': 'chapter', + 'uri': 'spotify:episode:0QNX88urT0YDlKxp9UWOWX', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + dict({ + 'chapter_id': '2KgZ8UnDbdKFUHflP9AotL', + 'chapter_number': 7, + 'duration_ms': 1412075, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL', }), - ]), - 'disc_number': 1, - 'duration_ms': 237600, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0OPyDgTRuIdCJ9B4bYSths', - }), - 'href': 'https://api.spotify.com/v1/tracks/0OPyDgTRuIdCJ9B4bYSths', - 'is_local': False, - 'name': 'Hotel Room Service', - 'track_id': '0OPyDgTRuIdCJ9B4bYSths', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:0OPyDgTRuIdCJ9B4bYSths', - }), - dict({ - 'album': dict({ - 'album_id': '4EUf4YyNjuXypWY6W5wEDm', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Globalization', - 'release_date': '2014-11-21', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:4EUf4YyNjuXypWY6W5wEDm', + 'languages': list([ + '', + ]), + 'name': 'Track 8', + 'type': 'chapter', + 'uri': 'spotify:episode:2KgZ8UnDbdKFUHflP9AotL', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '3s73tswJycj6HTBNNN393z', - 'name': 'John Ryan', - 'uri': 'spotify:artist:3s73tswJycj6HTBNNN393z', + dict({ + 'chapter_id': '4L1Y0jWKgrGfMB0HptLkQB', + 'chapter_number': 8, + 'duration_ms': 782497, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB', }), - ]), - 'disc_number': 1, - 'duration_ms': 236200, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Y7XAxTANhu3lmnLAzhWJW', - }), - 'href': 'https://api.spotify.com/v1/tracks/4Y7XAxTANhu3lmnLAzhWJW', - 'is_local': False, - 'name': 'Fireball (feat. John Ryan)', - 'track_id': '4Y7XAxTANhu3lmnLAzhWJW', - 'track_number': 3, - 'type': , - 'uri': 'spotify:track:4Y7XAxTANhu3lmnLAzhWJW', - }), - dict({ - 'album': dict({ - 'album_id': '4rG0MhkU6UojACJxkMHIXB', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Planet Pit (Deluxe Version)', - 'release_date': '2011-06-17', - 'release_date_precision': , - 'total_tracks': 16, - 'uri': 'spotify:album:4rG0MhkU6UojACJxkMHIXB', + 'languages': list([ + '', + ]), + 'name': 'Track 9', + 'type': 'chapter', + 'uri': 'spotify:episode:4L1Y0jWKgrGfMB0HptLkQB', }), - 'artists': list([ - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - dict({ - 'artist_id': '3aQeKQSyrW4qWr35idm0cy', - 'name': 'T-Pain', - 'uri': 'spotify:artist:3aQeKQSyrW4qWr35idm0cy', + dict({ + 'chapter_id': '0b2UnulIuw17qtiyTb2AwM', + 'chapter_number': 9, + 'duration_ms': 670223, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM', }), - ]), - 'disc_number': 1, - 'duration_ms': 234453, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3rfhI32Il2hVRKDkuGeeen', - }), - 'href': 'https://api.spotify.com/v1/tracks/3rfhI32Il2hVRKDkuGeeen', - 'is_local': False, - 'name': 'Hey Baby (Drop It to the Floor) (feat. T-Pain)', - 'track_id': '3rfhI32Il2hVRKDkuGeeen', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:3rfhI32Il2hVRKDkuGeeen', - }), - dict({ - 'album': dict({ - 'album_id': '3V2ApPxUSquOkjLQU3wmjh', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '52iwsT98xCoGgiGntTiR7K', - 'name': 'Quevedo', - 'uri': 'spotify:artist:52iwsT98xCoGgiGntTiR7K', - }), - ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734b690afba75a356fcdad526e', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024b690afba75a356fcdad526e', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514b690afba75a356fcdad526e', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'BUENAS NOCHES', - 'release_date': '2024-11-22', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:3V2ApPxUSquOkjLQU3wmjh', - }), - 'artists': list([ - dict({ - 'artist_id': '52iwsT98xCoGgiGntTiR7K', - 'name': 'Quevedo', - 'uri': 'spotify:artist:52iwsT98xCoGgiGntTiR7K', - }), - dict({ - 'artist_id': '0TnOYISbd1XYRBk9myaseg', - 'name': 'Pitbull', - 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', - }), - ]), - 'disc_number': 1, - 'duration_ms': 165762, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/67LKV40NfSSGIJnm0xz6fi', - }), - 'href': 'https://api.spotify.com/v1/tracks/67LKV40NfSSGIJnm0xz6fi', - 'is_local': False, - 'name': 'MR. MOONDIAL', - 'track_id': '67LKV40NfSSGIJnm0xz6fi', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:67LKV40NfSSGIJnm0xz6fi', - }), - ]) -# --- -# name: test_get_audio_features - dict({ - 'acousticness': 0.011, - 'danceability': 0.696, - 'energy': 0.905, - 'instrumentalness': 0.000905, - 'key': , - 'liveness': 0.302, - 'loudness': -2.743, - 'mode': , - 'speechiness': 0.103, - 'tempo': 114.944, - 'time_signature': , - 'valence': 0.625, - }) -# --- -# name: test_get_audiobook - dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', + 'languages': list([ + '', + ]), + 'name': 'Track 10', + 'type': 'chapter', + 'uri': 'spotify:episode:0b2UnulIuw17qtiyTb2AwM', }), - ]), - 'chapters': list([ dict({ - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, + 'chapter_id': '6LrdmEqBMm6Y3HG9DPkZGc', + 'chapter_number': 10, + 'duration_ms': 1212630, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', + 'spotify': 'https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc', }), 'images': list([ dict({ @@ -3300,17 +1998,17 @@ 'languages': list([ '', ]), - 'name': 'Track 1', + 'name': 'Track 11', 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + 'uri': 'spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc', }), dict({ - 'chapter_id': '49TZsjpPPA4jEuAJ8bJbGf', - 'chapter_number': 1, - 'duration_ms': 565942, + 'chapter_id': '3XmAaccmDwQaCc63PlbSHu', + 'chapter_number': 11, + 'duration_ms': 952267, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf', + 'spotify': 'https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu', }), 'images': list([ dict({ @@ -3332,17 +2030,17 @@ 'languages': list([ '', ]), - 'name': 'Track 2', + 'name': 'Track 12', 'type': 'chapter', - 'uri': 'spotify:episode:49TZsjpPPA4jEuAJ8bJbGf', + 'uri': 'spotify:episode:3XmAaccmDwQaCc63PlbSHu', }), dict({ - 'chapter_id': '0rPuWNlTx3j4E2NJxat2rP', - 'chapter_number': 2, - 'duration_ms': 974132, + 'chapter_id': '09SfB2ZdMpJ0Horyvgb7uz', + 'chapter_number': 12, + 'duration_ms': 685061, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP', + 'spotify': 'https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz', }), 'images': list([ dict({ @@ -3364,17 +2062,17 @@ 'languages': list([ '', ]), - 'name': 'Track 3', + 'name': 'Track 13', 'type': 'chapter', - 'uri': 'spotify:episode:0rPuWNlTx3j4E2NJxat2rP', + 'uri': 'spotify:episode:09SfB2ZdMpJ0Horyvgb7uz', }), dict({ - 'chapter_id': '2E1Wk1N4bigyTVSg1tI0No', - 'chapter_number': 3, - 'duration_ms': 485590, + 'chapter_id': '2XA4dwf0ToQ9iVySpHTZ4D', + 'chapter_number': 13, + 'duration_ms': 986148, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No', + 'spotify': 'https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D', }), 'images': list([ dict({ @@ -3396,17 +2094,17 @@ 'languages': list([ '', ]), - 'name': 'Track 4', + 'name': 'Track 14', 'type': 'chapter', - 'uri': 'spotify:episode:2E1Wk1N4bigyTVSg1tI0No', + 'uri': 'spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D', }), dict({ - 'chapter_id': '6tK38pBz4ZzcdeVlIRkRUM', - 'chapter_number': 4, - 'duration_ms': 523466, + 'chapter_id': '0HdNqeQP9PF97GlIUKT2e6', + 'chapter_number': 14, + 'duration_ms': 347689, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM', + 'spotify': 'https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6', }), 'images': list([ dict({ @@ -3428,17 +2126,17 @@ 'languages': list([ '', ]), - 'name': 'Track 5', + 'name': 'Track 15', 'type': 'chapter', - 'uri': 'spotify:episode:6tK38pBz4ZzcdeVlIRkRUM', + 'uri': 'spotify:episode:0HdNqeQP9PF97GlIUKT2e6', }), dict({ - 'chapter_id': '4qQ7jT2GhcIat2pQFFxQA9', - 'chapter_number': 5, - 'duration_ms': 1022066, + 'chapter_id': '4EgGjPK9EyWvuS4pb0JfVn', + 'chapter_number': 15, + 'duration_ms': 249678, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9', + 'spotify': 'https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn', }), 'images': list([ dict({ @@ -3460,17 +2158,17 @@ 'languages': list([ '', ]), - 'name': 'Track 6', + 'name': 'Track 16', 'type': 'chapter', - 'uri': 'spotify:episode:4qQ7jT2GhcIat2pQFFxQA9', + 'uri': 'spotify:episode:4EgGjPK9EyWvuS4pb0JfVn', }), dict({ - 'chapter_id': '0QNX88urT0YDlKxp9UWOWX', - 'chapter_number': 6, - 'duration_ms': 1602481, + 'chapter_id': '0QW159PFdnfSo4jwofmh94', + 'chapter_number': 16, + 'duration_ms': 793338, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX', + 'spotify': 'https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94', }), 'images': list([ dict({ @@ -3492,17 +2190,17 @@ 'languages': list([ '', ]), - 'name': 'Track 7', + 'name': 'Track 17', 'type': 'chapter', - 'uri': 'spotify:episode:0QNX88urT0YDlKxp9UWOWX', + 'uri': 'spotify:episode:0QW159PFdnfSo4jwofmh94', }), dict({ - 'chapter_id': '2KgZ8UnDbdKFUHflP9AotL', - 'chapter_number': 7, - 'duration_ms': 1412075, + 'chapter_id': '6dhG5dwyxkMJ3o6c7VyMa9', + 'chapter_number': 17, + 'duration_ms': 774870, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL', + 'spotify': 'https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9', }), 'images': list([ dict({ @@ -3524,17 +2222,17 @@ 'languages': list([ '', ]), - 'name': 'Track 8', + 'name': 'Track 18', 'type': 'chapter', - 'uri': 'spotify:episode:2KgZ8UnDbdKFUHflP9AotL', + 'uri': 'spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9', }), dict({ - 'chapter_id': '4L1Y0jWKgrGfMB0HptLkQB', - 'chapter_number': 8, - 'duration_ms': 782497, + 'chapter_id': '7LQHbg3sUq9hcWLXFjtor9', + 'chapter_number': 18, + 'duration_ms': 524800, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB', + 'spotify': 'https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9', }), 'images': list([ dict({ @@ -3556,17 +2254,17 @@ 'languages': list([ '', ]), - 'name': 'Track 9', + 'name': 'Track 19', 'type': 'chapter', - 'uri': 'spotify:episode:4L1Y0jWKgrGfMB0HptLkQB', + 'uri': 'spotify:episode:7LQHbg3sUq9hcWLXFjtor9', }), dict({ - 'chapter_id': '0b2UnulIuw17qtiyTb2AwM', - 'chapter_number': 9, - 'duration_ms': 670223, + 'chapter_id': '6M0DmXvWGbIktNcxruSPaC', + 'chapter_number': 19, + 'duration_ms': 777769, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM', + 'spotify': 'https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC', }), 'images': list([ dict({ @@ -3588,17 +2286,17 @@ 'languages': list([ '', ]), - 'name': 'Track 10', + 'name': 'Track 20', 'type': 'chapter', - 'uri': 'spotify:episode:0b2UnulIuw17qtiyTb2AwM', + 'uri': 'spotify:episode:6M0DmXvWGbIktNcxruSPaC', }), dict({ - 'chapter_id': '6LrdmEqBMm6Y3HG9DPkZGc', - 'chapter_number': 10, - 'duration_ms': 1212630, + 'chapter_id': '3Jffij0q1mpI9yBut0Qk9s', + 'chapter_number': 20, + 'duration_ms': 1149648, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc', + 'spotify': 'https://open.spotify.com/episode/3Jffij0q1mpI9yBut0Qk9s', }), 'images': list([ dict({ @@ -3620,17 +2318,17 @@ 'languages': list([ '', ]), - 'name': 'Track 11', + 'name': 'Track 21', 'type': 'chapter', - 'uri': 'spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc', + 'uri': 'spotify:episode:3Jffij0q1mpI9yBut0Qk9s', }), dict({ - 'chapter_id': '3XmAaccmDwQaCc63PlbSHu', - 'chapter_number': 11, - 'duration_ms': 952267, + 'chapter_id': '0oZjvmF7NJzNtNyyiciJqB', + 'chapter_number': 21, + 'duration_ms': 433815, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu', + 'spotify': 'https://open.spotify.com/episode/0oZjvmF7NJzNtNyyiciJqB', }), 'images': list([ dict({ @@ -3652,17 +2350,17 @@ 'languages': list([ '', ]), - 'name': 'Track 12', + 'name': 'Track 22', 'type': 'chapter', - 'uri': 'spotify:episode:3XmAaccmDwQaCc63PlbSHu', + 'uri': 'spotify:episode:0oZjvmF7NJzNtNyyiciJqB', }), dict({ - 'chapter_id': '09SfB2ZdMpJ0Horyvgb7uz', - 'chapter_number': 12, - 'duration_ms': 685061, + 'chapter_id': '1r9bh8GhVPKvzP0sH5y43y', + 'chapter_number': 22, + 'duration_ms': 1846883, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz', + 'spotify': 'https://open.spotify.com/episode/1r9bh8GhVPKvzP0sH5y43y', }), 'images': list([ dict({ @@ -3684,17 +2382,17 @@ 'languages': list([ '', ]), - 'name': 'Track 13', + 'name': 'Track 23', 'type': 'chapter', - 'uri': 'spotify:episode:09SfB2ZdMpJ0Horyvgb7uz', + 'uri': 'spotify:episode:1r9bh8GhVPKvzP0sH5y43y', }), dict({ - 'chapter_id': '2XA4dwf0ToQ9iVySpHTZ4D', - 'chapter_number': 13, - 'duration_ms': 986148, + 'chapter_id': '1r4Am9RdfpXjOmNVhLe1RB', + 'chapter_number': 23, + 'duration_ms': 1928855, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D', + 'spotify': 'https://open.spotify.com/episode/1r4Am9RdfpXjOmNVhLe1RB', }), 'images': list([ dict({ @@ -3716,17 +2414,17 @@ 'languages': list([ '', ]), - 'name': 'Track 14', + 'name': 'Track 24', 'type': 'chapter', - 'uri': 'spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D', + 'uri': 'spotify:episode:1r4Am9RdfpXjOmNVhLe1RB', }), dict({ - 'chapter_id': '0HdNqeQP9PF97GlIUKT2e6', - 'chapter_number': 14, - 'duration_ms': 347689, + 'chapter_id': '2MB3hYOuX94ualcaTo1IAQ', + 'chapter_number': 24, + 'duration_ms': 835552, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6', + 'spotify': 'https://open.spotify.com/episode/2MB3hYOuX94ualcaTo1IAQ', }), 'images': list([ dict({ @@ -3748,17 +2446,17 @@ 'languages': list([ '', ]), - 'name': 'Track 15', + 'name': 'Track 25', 'type': 'chapter', - 'uri': 'spotify:episode:0HdNqeQP9PF97GlIUKT2e6', + 'uri': 'spotify:episode:2MB3hYOuX94ualcaTo1IAQ', }), dict({ - 'chapter_id': '4EgGjPK9EyWvuS4pb0JfVn', - 'chapter_number': 15, - 'duration_ms': 249678, + 'chapter_id': '28S5Yt9f1GMK0C371FxaQ0', + 'chapter_number': 25, + 'duration_ms': 1211637, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn', + 'spotify': 'https://open.spotify.com/episode/28S5Yt9f1GMK0C371FxaQ0', }), 'images': list([ dict({ @@ -3780,17 +2478,17 @@ 'languages': list([ '', ]), - 'name': 'Track 16', + 'name': 'Track 26', 'type': 'chapter', - 'uri': 'spotify:episode:4EgGjPK9EyWvuS4pb0JfVn', + 'uri': 'spotify:episode:28S5Yt9f1GMK0C371FxaQ0', }), dict({ - 'chapter_id': '0QW159PFdnfSo4jwofmh94', - 'chapter_number': 16, - 'duration_ms': 793338, + 'chapter_id': '5EuXfpQW2dyfvNKGQmfafO', + 'chapter_number': 26, + 'duration_ms': 608548, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94', + 'spotify': 'https://open.spotify.com/episode/5EuXfpQW2dyfvNKGQmfafO', }), 'images': list([ dict({ @@ -3812,17 +2510,17 @@ 'languages': list([ '', ]), - 'name': 'Track 17', + 'name': 'Track 27', 'type': 'chapter', - 'uri': 'spotify:episode:0QW159PFdnfSo4jwofmh94', + 'uri': 'spotify:episode:5EuXfpQW2dyfvNKGQmfafO', }), dict({ - 'chapter_id': '6dhG5dwyxkMJ3o6c7VyMa9', - 'chapter_number': 17, - 'duration_ms': 774870, + 'chapter_id': '3I74lzJe404dLgzS4JSSS1', + 'chapter_number': 27, + 'duration_ms': 1744848, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9', + 'spotify': 'https://open.spotify.com/episode/3I74lzJe404dLgzS4JSSS1', }), 'images': list([ dict({ @@ -3844,17 +2542,17 @@ 'languages': list([ '', ]), - 'name': 'Track 18', + 'name': 'Track 28', 'type': 'chapter', - 'uri': 'spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9', + 'uri': 'spotify:episode:3I74lzJe404dLgzS4JSSS1', }), dict({ - 'chapter_id': '7LQHbg3sUq9hcWLXFjtor9', - 'chapter_number': 18, - 'duration_ms': 524800, + 'chapter_id': '5qol4EI2NnldwPQtAY5kFM', + 'chapter_number': 28, + 'duration_ms': 986253, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9', + 'spotify': 'https://open.spotify.com/episode/5qol4EI2NnldwPQtAY5kFM', }), 'images': list([ dict({ @@ -3876,17 +2574,17 @@ 'languages': list([ '', ]), - 'name': 'Track 19', + 'name': 'Track 29', 'type': 'chapter', - 'uri': 'spotify:episode:7LQHbg3sUq9hcWLXFjtor9', + 'uri': 'spotify:episode:5qol4EI2NnldwPQtAY5kFM', }), dict({ - 'chapter_id': '6M0DmXvWGbIktNcxruSPaC', - 'chapter_number': 19, - 'duration_ms': 777769, + 'chapter_id': '5bsGB6123U4d27TZ4gRTxi', + 'chapter_number': 29, + 'duration_ms': 2147735, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC', + 'spotify': 'https://open.spotify.com/episode/5bsGB6123U4d27TZ4gRTxi', }), 'images': list([ dict({ @@ -3908,17 +2606,17 @@ 'languages': list([ '', ]), - 'name': 'Track 20', + 'name': 'Track 30', 'type': 'chapter', - 'uri': 'spotify:episode:6M0DmXvWGbIktNcxruSPaC', + 'uri': 'spotify:episode:5bsGB6123U4d27TZ4gRTxi', }), dict({ - 'chapter_id': '3Jffij0q1mpI9yBut0Qk9s', - 'chapter_number': 20, - 'duration_ms': 1149648, + 'chapter_id': '07qlaV2Igv88BtBaS4fEdM', + 'chapter_number': 30, + 'duration_ms': 814080, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3Jffij0q1mpI9yBut0Qk9s', + 'spotify': 'https://open.spotify.com/episode/07qlaV2Igv88BtBaS4fEdM', }), 'images': list([ dict({ @@ -3940,17 +2638,17 @@ 'languages': list([ '', ]), - 'name': 'Track 21', + 'name': 'Track 31', 'type': 'chapter', - 'uri': 'spotify:episode:3Jffij0q1mpI9yBut0Qk9s', + 'uri': 'spotify:episode:07qlaV2Igv88BtBaS4fEdM', }), dict({ - 'chapter_id': '0oZjvmF7NJzNtNyyiciJqB', - 'chapter_number': 21, - 'duration_ms': 433815, + 'chapter_id': '3c4LRz6BbLuTaRGD9pEEDh', + 'chapter_number': 31, + 'duration_ms': 2349662, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0oZjvmF7NJzNtNyyiciJqB', + 'spotify': 'https://open.spotify.com/episode/3c4LRz6BbLuTaRGD9pEEDh', }), 'images': list([ dict({ @@ -3972,17 +2670,17 @@ 'languages': list([ '', ]), - 'name': 'Track 22', + 'name': 'Track 32', 'type': 'chapter', - 'uri': 'spotify:episode:0oZjvmF7NJzNtNyyiciJqB', + 'uri': 'spotify:episode:3c4LRz6BbLuTaRGD9pEEDh', }), dict({ - 'chapter_id': '1r9bh8GhVPKvzP0sH5y43y', - 'chapter_number': 22, - 'duration_ms': 1846883, + 'chapter_id': '7Fl8XJc3ruNHa9GtJqL0Qn', + 'chapter_number': 32, + 'duration_ms': 509257, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1r9bh8GhVPKvzP0sH5y43y', + 'spotify': 'https://open.spotify.com/episode/7Fl8XJc3ruNHa9GtJqL0Qn', }), 'images': list([ dict({ @@ -4004,17 +2702,17 @@ 'languages': list([ '', ]), - 'name': 'Track 23', + 'name': 'Track 33', 'type': 'chapter', - 'uri': 'spotify:episode:1r9bh8GhVPKvzP0sH5y43y', + 'uri': 'spotify:episode:7Fl8XJc3ruNHa9GtJqL0Qn', }), dict({ - 'chapter_id': '1r4Am9RdfpXjOmNVhLe1RB', - 'chapter_number': 23, - 'duration_ms': 1928855, + 'chapter_id': '1XatZyhYldaab2QcGQS9Pb', + 'chapter_number': 33, + 'duration_ms': 1821910, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1r4Am9RdfpXjOmNVhLe1RB', + 'spotify': 'https://open.spotify.com/episode/1XatZyhYldaab2QcGQS9Pb', }), 'images': list([ dict({ @@ -4036,17 +2734,17 @@ 'languages': list([ '', ]), - 'name': 'Track 24', + 'name': 'Track 34', 'type': 'chapter', - 'uri': 'spotify:episode:1r4Am9RdfpXjOmNVhLe1RB', + 'uri': 'spotify:episode:1XatZyhYldaab2QcGQS9Pb', }), dict({ - 'chapter_id': '2MB3hYOuX94ualcaTo1IAQ', - 'chapter_number': 24, - 'duration_ms': 835552, + 'chapter_id': '0JvhJpMBLt7AUVaG6uIbde', + 'chapter_number': 34, + 'duration_ms': 382955, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2MB3hYOuX94ualcaTo1IAQ', + 'spotify': 'https://open.spotify.com/episode/0JvhJpMBLt7AUVaG6uIbde', }), 'images': list([ dict({ @@ -4068,17 +2766,17 @@ 'languages': list([ '', ]), - 'name': 'Track 25', + 'name': 'Track 35', 'type': 'chapter', - 'uri': 'spotify:episode:2MB3hYOuX94ualcaTo1IAQ', + 'uri': 'spotify:episode:0JvhJpMBLt7AUVaG6uIbde', }), dict({ - 'chapter_id': '28S5Yt9f1GMK0C371FxaQ0', - 'chapter_number': 25, - 'duration_ms': 1211637, + 'chapter_id': '5vCof4NdStWGCuV9mRQTWJ', + 'chapter_number': 35, + 'duration_ms': 647836, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/28S5Yt9f1GMK0C371FxaQ0', + 'spotify': 'https://open.spotify.com/episode/5vCof4NdStWGCuV9mRQTWJ', }), 'images': list([ dict({ @@ -4100,17 +2798,17 @@ 'languages': list([ '', ]), - 'name': 'Track 26', + 'name': 'Track 36', 'type': 'chapter', - 'uri': 'spotify:episode:28S5Yt9f1GMK0C371FxaQ0', + 'uri': 'spotify:episode:5vCof4NdStWGCuV9mRQTWJ', }), dict({ - 'chapter_id': '5EuXfpQW2dyfvNKGQmfafO', - 'chapter_number': 26, - 'duration_ms': 608548, + 'chapter_id': '1pB66z22q8Hq1PuD6uqqBt', + 'chapter_number': 36, + 'duration_ms': 561005, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5EuXfpQW2dyfvNKGQmfafO', + 'spotify': 'https://open.spotify.com/episode/1pB66z22q8Hq1PuD6uqqBt', }), 'images': list([ dict({ @@ -4132,17 +2830,17 @@ 'languages': list([ '', ]), - 'name': 'Track 27', + 'name': 'Track 37', 'type': 'chapter', - 'uri': 'spotify:episode:5EuXfpQW2dyfvNKGQmfafO', + 'uri': 'spotify:episode:1pB66z22q8Hq1PuD6uqqBt', }), dict({ - 'chapter_id': '3I74lzJe404dLgzS4JSSS1', - 'chapter_number': 27, - 'duration_ms': 1744848, + 'chapter_id': '6dI3NSMs9U2JUzliQGdgK7', + 'chapter_number': 37, + 'duration_ms': 1134158, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3I74lzJe404dLgzS4JSSS1', + 'spotify': 'https://open.spotify.com/episode/6dI3NSMs9U2JUzliQGdgK7', }), 'images': list([ dict({ @@ -4164,17 +2862,17 @@ 'languages': list([ '', ]), - 'name': 'Track 28', + 'name': 'Track 38', 'type': 'chapter', - 'uri': 'spotify:episode:3I74lzJe404dLgzS4JSSS1', + 'uri': 'spotify:episode:6dI3NSMs9U2JUzliQGdgK7', }), dict({ - 'chapter_id': '5qol4EI2NnldwPQtAY5kFM', - 'chapter_number': 28, - 'duration_ms': 986253, - 'explicit': False, + 'chapter_id': '6b1dF8WD0U6rA3ktJqfJp2', + 'chapter_number': 38, + 'duration_ms': 432195, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5qol4EI2NnldwPQtAY5kFM', + 'spotify': 'https://open.spotify.com/episode/6b1dF8WD0U6rA3ktJqfJp2', }), 'images': list([ dict({ @@ -4196,17 +2894,17 @@ 'languages': list([ '', ]), - 'name': 'Track 29', + 'name': 'Track 39', 'type': 'chapter', - 'uri': 'spotify:episode:5qol4EI2NnldwPQtAY5kFM', + 'uri': 'spotify:episode:6b1dF8WD0U6rA3ktJqfJp2', }), dict({ - 'chapter_id': '5bsGB6123U4d27TZ4gRTxi', - 'chapter_number': 29, - 'duration_ms': 2147735, + 'chapter_id': '73nqrNdGzTsgR9svw1SA1G', + 'chapter_number': 39, + 'duration_ms': 648724, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5bsGB6123U4d27TZ4gRTxi', + 'spotify': 'https://open.spotify.com/episode/73nqrNdGzTsgR9svw1SA1G', }), 'images': list([ dict({ @@ -4228,17 +2926,17 @@ 'languages': list([ '', ]), - 'name': 'Track 30', + 'name': 'Track 40', 'type': 'chapter', - 'uri': 'spotify:episode:5bsGB6123U4d27TZ4gRTxi', + 'uri': 'spotify:episode:73nqrNdGzTsgR9svw1SA1G', }), dict({ - 'chapter_id': '07qlaV2Igv88BtBaS4fEdM', - 'chapter_number': 30, - 'duration_ms': 814080, + 'chapter_id': '45jG2BMCnRZBVEOsw1BswM', + 'chapter_number': 40, + 'duration_ms': 901146, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/07qlaV2Igv88BtBaS4fEdM', + 'spotify': 'https://open.spotify.com/episode/45jG2BMCnRZBVEOsw1BswM', }), 'images': list([ dict({ @@ -4260,17 +2958,17 @@ 'languages': list([ '', ]), - 'name': 'Track 31', + 'name': 'Track 41', 'type': 'chapter', - 'uri': 'spotify:episode:07qlaV2Igv88BtBaS4fEdM', + 'uri': 'spotify:episode:45jG2BMCnRZBVEOsw1BswM', }), dict({ - 'chapter_id': '3c4LRz6BbLuTaRGD9pEEDh', - 'chapter_number': 31, - 'duration_ms': 2349662, + 'chapter_id': '7CMZE1TeMleiK3PwEVCHVR', + 'chapter_number': 41, + 'duration_ms': 581877, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3c4LRz6BbLuTaRGD9pEEDh', + 'spotify': 'https://open.spotify.com/episode/7CMZE1TeMleiK3PwEVCHVR', }), 'images': list([ dict({ @@ -4292,17 +2990,17 @@ 'languages': list([ '', ]), - 'name': 'Track 32', + 'name': 'Track 42', 'type': 'chapter', - 'uri': 'spotify:episode:3c4LRz6BbLuTaRGD9pEEDh', + 'uri': 'spotify:episode:7CMZE1TeMleiK3PwEVCHVR', }), dict({ - 'chapter_id': '7Fl8XJc3ruNHa9GtJqL0Qn', - 'chapter_number': 32, - 'duration_ms': 509257, + 'chapter_id': '4byBCvjAcXe7aNIxmtMcn3', + 'chapter_number': 42, + 'duration_ms': 2124068, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7Fl8XJc3ruNHa9GtJqL0Qn', + 'spotify': 'https://open.spotify.com/episode/4byBCvjAcXe7aNIxmtMcn3', }), 'images': list([ dict({ @@ -4324,17 +3022,17 @@ 'languages': list([ '', ]), - 'name': 'Track 33', + 'name': 'Track 43', 'type': 'chapter', - 'uri': 'spotify:episode:7Fl8XJc3ruNHa9GtJqL0Qn', + 'uri': 'spotify:episode:4byBCvjAcXe7aNIxmtMcn3', }), dict({ - 'chapter_id': '1XatZyhYldaab2QcGQS9Pb', - 'chapter_number': 33, - 'duration_ms': 1821910, + 'chapter_id': '62ORogw9Znrj8lG7emt33z', + 'chapter_number': 43, + 'duration_ms': 1246093, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1XatZyhYldaab2QcGQS9Pb', + 'spotify': 'https://open.spotify.com/episode/62ORogw9Znrj8lG7emt33z', }), 'images': list([ dict({ @@ -4356,17 +3054,17 @@ 'languages': list([ '', ]), - 'name': 'Track 34', + 'name': 'Track 44', 'type': 'chapter', - 'uri': 'spotify:episode:1XatZyhYldaab2QcGQS9Pb', + 'uri': 'spotify:episode:62ORogw9Znrj8lG7emt33z', }), dict({ - 'chapter_id': '0JvhJpMBLt7AUVaG6uIbde', - 'chapter_number': 34, - 'duration_ms': 382955, + 'chapter_id': '2zVVcf09xv6zuQrVf4mnkx', + 'chapter_number': 44, + 'duration_ms': 808228, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0JvhJpMBLt7AUVaG6uIbde', + 'spotify': 'https://open.spotify.com/episode/2zVVcf09xv6zuQrVf4mnkx', }), 'images': list([ dict({ @@ -4388,17 +3086,17 @@ 'languages': list([ '', ]), - 'name': 'Track 35', + 'name': 'Track 45', 'type': 'chapter', - 'uri': 'spotify:episode:0JvhJpMBLt7AUVaG6uIbde', + 'uri': 'spotify:episode:2zVVcf09xv6zuQrVf4mnkx', }), dict({ - 'chapter_id': '5vCof4NdStWGCuV9mRQTWJ', - 'chapter_number': 35, - 'duration_ms': 647836, + 'chapter_id': '1AOg0Ft76RiOITF8hp4cEC', + 'chapter_number': 45, + 'duration_ms': 741276, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5vCof4NdStWGCuV9mRQTWJ', + 'spotify': 'https://open.spotify.com/episode/1AOg0Ft76RiOITF8hp4cEC', }), 'images': list([ dict({ @@ -4420,17 +3118,17 @@ 'languages': list([ '', ]), - 'name': 'Track 36', + 'name': 'Track 46', 'type': 'chapter', - 'uri': 'spotify:episode:5vCof4NdStWGCuV9mRQTWJ', + 'uri': 'spotify:episode:1AOg0Ft76RiOITF8hp4cEC', }), dict({ - 'chapter_id': '1pB66z22q8Hq1PuD6uqqBt', - 'chapter_number': 36, - 'duration_ms': 561005, + 'chapter_id': '3NCNzeZsuSioUkpAWDTGha', + 'chapter_number': 46, + 'duration_ms': 315062, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1pB66z22q8Hq1PuD6uqqBt', + 'spotify': 'https://open.spotify.com/episode/3NCNzeZsuSioUkpAWDTGha', }), 'images': list([ dict({ @@ -4452,17 +3150,17 @@ 'languages': list([ '', ]), - 'name': 'Track 37', + 'name': 'Track 47', 'type': 'chapter', - 'uri': 'spotify:episode:1pB66z22q8Hq1PuD6uqqBt', + 'uri': 'spotify:episode:3NCNzeZsuSioUkpAWDTGha', }), dict({ - 'chapter_id': '6dI3NSMs9U2JUzliQGdgK7', - 'chapter_number': 37, - 'duration_ms': 1134158, + 'chapter_id': '0580L8XcDYwI8ihms7R81U', + 'chapter_number': 47, + 'duration_ms': 320783, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6dI3NSMs9U2JUzliQGdgK7', + 'spotify': 'https://open.spotify.com/episode/0580L8XcDYwI8ihms7R81U', }), 'images': list([ dict({ @@ -4484,17 +3182,17 @@ 'languages': list([ '', ]), - 'name': 'Track 38', + 'name': 'Track 48', 'type': 'chapter', - 'uri': 'spotify:episode:6dI3NSMs9U2JUzliQGdgK7', + 'uri': 'spotify:episode:0580L8XcDYwI8ihms7R81U', }), dict({ - 'chapter_id': '6b1dF8WD0U6rA3ktJqfJp2', - 'chapter_number': 38, - 'duration_ms': 432195, + 'chapter_id': '7u2OveukvhLXEcwX2mqhSP', + 'chapter_number': 48, + 'duration_ms': 227474, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6b1dF8WD0U6rA3ktJqfJp2', + 'spotify': 'https://open.spotify.com/episode/7u2OveukvhLXEcwX2mqhSP', }), 'images': list([ dict({ @@ -4516,367 +3214,47 @@ 'languages': list([ '', ]), - 'name': 'Track 39', + 'name': 'De nomade', 'type': 'chapter', - 'uri': 'spotify:episode:6b1dF8WD0U6rA3ktJqfJp2', + 'uri': 'spotify:episode:7u2OveukvhLXEcwX2mqhSP', }), + ]), + 'description': ''' + Author(s): Anya Niewierra + Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

+
+

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
+ Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
+ Rob Cobben, cultuurverslaggever Dagblad De Limburger

+ ''', + 'edition': 'Unabridged', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + }), + 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', + 'images': list([ dict({ - 'chapter_id': '73nqrNdGzTsgR9svw1SA1G', - 'chapter_number': 39, - 'duration_ms': 648724, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/73nqrNdGzTsgR9svw1SA1G', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 40', - 'type': 'chapter', - 'uri': 'spotify:episode:73nqrNdGzTsgR9svw1SA1G', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, }), dict({ - 'chapter_id': '45jG2BMCnRZBVEOsw1BswM', - 'chapter_number': 40, - 'duration_ms': 901146, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/45jG2BMCnRZBVEOsw1BswM', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 41', - 'type': 'chapter', - 'uri': 'spotify:episode:45jG2BMCnRZBVEOsw1BswM', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, }), dict({ - 'chapter_id': '7CMZE1TeMleiK3PwEVCHVR', - 'chapter_number': 41, - 'duration_ms': 581877, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7CMZE1TeMleiK3PwEVCHVR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 42', - 'type': 'chapter', - 'uri': 'spotify:episode:7CMZE1TeMleiK3PwEVCHVR', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, }), - dict({ - 'chapter_id': '4byBCvjAcXe7aNIxmtMcn3', - 'chapter_number': 42, - 'duration_ms': 2124068, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4byBCvjAcXe7aNIxmtMcn3', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 43', - 'type': 'chapter', - 'uri': 'spotify:episode:4byBCvjAcXe7aNIxmtMcn3', - }), - dict({ - 'chapter_id': '62ORogw9Znrj8lG7emt33z', - 'chapter_number': 43, - 'duration_ms': 1246093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/62ORogw9Znrj8lG7emt33z', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 44', - 'type': 'chapter', - 'uri': 'spotify:episode:62ORogw9Znrj8lG7emt33z', - }), - dict({ - 'chapter_id': '2zVVcf09xv6zuQrVf4mnkx', - 'chapter_number': 44, - 'duration_ms': 808228, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2zVVcf09xv6zuQrVf4mnkx', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 45', - 'type': 'chapter', - 'uri': 'spotify:episode:2zVVcf09xv6zuQrVf4mnkx', - }), - dict({ - 'chapter_id': '1AOg0Ft76RiOITF8hp4cEC', - 'chapter_number': 45, - 'duration_ms': 741276, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1AOg0Ft76RiOITF8hp4cEC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 46', - 'type': 'chapter', - 'uri': 'spotify:episode:1AOg0Ft76RiOITF8hp4cEC', - }), - dict({ - 'chapter_id': '3NCNzeZsuSioUkpAWDTGha', - 'chapter_number': 46, - 'duration_ms': 315062, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NCNzeZsuSioUkpAWDTGha', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 47', - 'type': 'chapter', - 'uri': 'spotify:episode:3NCNzeZsuSioUkpAWDTGha', - }), - dict({ - 'chapter_id': '0580L8XcDYwI8ihms7R81U', - 'chapter_number': 47, - 'duration_ms': 320783, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0580L8XcDYwI8ihms7R81U', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 48', - 'type': 'chapter', - 'uri': 'spotify:episode:0580L8XcDYwI8ihms7R81U', - }), - dict({ - 'chapter_id': '7u2OveukvhLXEcwX2mqhSP', - 'chapter_number': 48, - 'duration_ms': 227474, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7u2OveukvhLXEcwX2mqhSP', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'De nomade', - 'type': 'chapter', - 'uri': 'spotify:episode:7u2OveukvhLXEcwX2mqhSP', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ + ]), + 'languages': list([ + 'nl', + ]), + 'name': 'De nomade', + 'narrators': list([ dict({ 'name': 'Nienke Brinkhuis', }), @@ -5537,1947 +3915,837 @@ }), ]) # --- -# name: test_get_audiobooks - list([ - dict({ - 'audiobook_id': '7iHfbu1YPACw6oZPAFJtqe', +# name: test_get_chapter + dict({ + 'audiobook': dict({ + 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', 'authors': list([ dict({ - 'name': 'Frank Herbert', + 'name': 'Anya Niewierra', }), ]), - 'chapters': list([ + 'description': ''' + Author(s): Anya Niewierra + Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

+
+

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
+ Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
+ Rob Cobben, cultuurverslaggever Dagblad De Limburger

+ ''', + 'edition': 'Unabridged', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + }), + 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', + 'images': list([ dict({ - 'chapter_id': '73ThiUvDp7VbVX6tWTNjE4', - 'chapter_number': 0, - 'duration_ms': 60056, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/73ThiUvDp7VbVX6tWTNjE4', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Opening Credits', - 'type': 'chapter', - 'uri': 'spotify:episode:73ThiUvDp7VbVX6tWTNjE4', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, }), dict({ - 'chapter_id': '7zdR7zJCuEzLEJkSWYlEWj', - 'chapter_number': 1, - 'duration_ms': 1737274, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7zdR7zJCuEzLEJkSWYlEWj', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 1', - 'type': 'chapter', - 'uri': 'spotify:episode:7zdR7zJCuEzLEJkSWYlEWj', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, }), dict({ - 'chapter_id': '6wbkoWAKtlVHC0pk46ORyd', - 'chapter_number': 2, - 'duration_ms': 1257875, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6wbkoWAKtlVHC0pk46ORyd', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 2', - 'type': 'chapter', - 'uri': 'spotify:episode:6wbkoWAKtlVHC0pk46ORyd', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, }), + ]), + 'languages': list([ + 'nl', + ]), + 'name': 'De nomade', + 'narrators': list([ dict({ - 'chapter_id': '6JVmsEPc2uOX551TCWVHUQ', - 'chapter_number': 3, - 'duration_ms': 998244, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6JVmsEPc2uOX551TCWVHUQ', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 3', - 'type': 'chapter', - 'uri': 'spotify:episode:6JVmsEPc2uOX551TCWVHUQ', + 'name': 'Nienke Brinkhuis', }), dict({ - 'chapter_id': '3Tfs2OyT4dBurDFBmxpA3Z', - 'chapter_number': 4, - 'duration_ms': 1387808, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3Tfs2OyT4dBurDFBmxpA3Z', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 4', - 'type': 'chapter', - 'uri': 'spotify:episode:3Tfs2OyT4dBurDFBmxpA3Z', + 'name': 'Cees van Ede', }), dict({ - 'chapter_id': '0oduVqcMbgrXrhlhmtRaUl', - 'chapter_number': 5, - 'duration_ms': 606459, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0oduVqcMbgrXrhlhmtRaUl', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 5', - 'type': 'chapter', - 'uri': 'spotify:episode:0oduVqcMbgrXrhlhmtRaUl', + 'name': 'Mattijn Hartemink', }), - dict({ - 'chapter_id': '2SUk86PXGjOptTcmuwQuzA', - 'chapter_number': 6, - 'duration_ms': 940696, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2SUk86PXGjOptTcmuwQuzA', + ]), + 'publisher': 'Anya Niewierra', + 'total_chapters': 49, + 'type': 'audiobook', + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', + 'chapter_number': 0, + 'duration_ms': 249652, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, + }), + ]), + 'languages': list([ + 'nl', + ]), + 'name': 'Track 1', + 'type': 'chapter', + 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + }) +# --- +# name: test_get_current_playing + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p', + }), + 'href': 'https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + 'currently_playing_type': 'track', + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '1LorgdkFY2zgE6NbDdY19k', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 6', - 'type': 'chapter', - 'uri': 'spotify:episode:2SUk86PXGjOptTcmuwQuzA', - }), - dict({ - 'chapter_id': '0aV28m0uV3KTKxxjtbfics', - 'chapter_number': 7, - 'duration_ms': 1620245, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0aV28m0uV3KTKxxjtbfics', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 7', - 'type': 'chapter', - 'uri': 'spotify:episode:0aV28m0uV3KTKxxjtbfics', - }), - dict({ - 'chapter_id': '32ajSFsIg0j1x7nfcIbORW', - 'chapter_number': 8, - 'duration_ms': 1309388, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/32ajSFsIg0j1x7nfcIbORW', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 8', - 'type': 'chapter', - 'uri': 'spotify:episode:32ajSFsIg0j1x7nfcIbORW', - }), - dict({ - 'chapter_id': '5rfIxa6UYIkSFlP2mL2ovu', - 'chapter_number': 9, - 'duration_ms': 581983, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5rfIxa6UYIkSFlP2mL2ovu', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 9', - 'type': 'chapter', - 'uri': 'spotify:episode:5rfIxa6UYIkSFlP2mL2ovu', - }), + ]), + 'name': 'Dun Smeren Geld Verdienen', + 'release_date': '2019-05-13', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:1LorgdkFY2zgE6NbDdY19k', + }), + 'artists': list([ dict({ - 'chapter_id': '477FnG3smKF8cZTn4T3rnN', - 'chapter_number': 10, - 'duration_ms': 1236742, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/477FnG3smKF8cZTn4T3rnN', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 10', - 'type': 'chapter', - 'uri': 'spotify:episode:477FnG3smKF8cZTn4T3rnN', + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', }), + ]), + 'disc_number': 1, + 'duration_ms': 245581, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ', + }), + 'href': 'https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ', + 'is_local': False, + 'name': 'Witte Was', + 'track_id': '4sIkwgf9bU7rQPvsA37rVQ', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:4sIkwgf9bU7rQPvsA37rVQ', + }), + 'progress_ms': 134749, + }) +# --- +# name: test_get_current_user + dict({ + 'display_name': 'Joost Lekkerkerker', + 'email': 'joostlek@outlook.com', + 'images': list([ + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc', + 'width': 64, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc', + 'width': 300, + }), + ]), + 'object_type': 'user', + 'product': , + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }) +# --- +# name: test_get_current_users_playlists[current_user_playlist_1.json] + list([ + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', + }), + 'images': list([ dict({ - 'chapter_id': '5TRMZm6VkIiXR384u5ZQr3', - 'chapter_number': 11, - 'duration_ms': 768392, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5TRMZm6VkIiXR384u5ZQr3', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 11', - 'type': 'chapter', - 'uri': 'spotify:episode:5TRMZm6VkIiXR384u5ZQr3', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d061f5bfae8d38558f3698c1', + 'width': 640, }), + ]), + 'name': 'Hyper', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', + 'public': True, + 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', + }), + 'images': list([ dict({ - 'chapter_id': '1F1x57cJyvLxnbzGOqdeur', - 'chapter_number': 12, - 'duration_ms': 2322965, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1F1x57cJyvLxnbzGOqdeur', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 12', - 'type': 'chapter', - 'uri': 'spotify:episode:1F1x57cJyvLxnbzGOqdeur', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'width': 640, }), dict({ - 'chapter_id': '4ETF6jtwY0Xpf8JilpLsRa', - 'chapter_number': 13, - 'duration_ms': 744516, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4ETF6jtwY0Xpf8JilpLsRa', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 13', - 'type': 'chapter', - 'uri': 'spotify:episode:4ETF6jtwY0Xpf8JilpLsRa', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'width': 300, }), dict({ - 'chapter_id': '3Dfui4lmf6bi6YAen3EABM', - 'chapter_number': 14, - 'duration_ms': 498182, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3Dfui4lmf6bi6YAen3EABM', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 14', - 'type': 'chapter', - 'uri': 'spotify:episode:3Dfui4lmf6bi6YAen3EABM', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'width': 60, + }), + ]), + 'name': 'Ain’t got shit on me', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Rens Boeser', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', }), + 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', + 'object_type': 'user', + 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', + 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', + }), + 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', + 'public': False, + 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + }), + 'images': list([ dict({ - 'chapter_id': '6IPghpa2z4FeNwcVlqbcWC', - 'chapter_number': 15, - 'duration_ms': 3164396, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6IPghpa2z4FeNwcVlqbcWC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 15', - 'type': 'chapter', - 'uri': 'spotify:episode:6IPghpa2z4FeNwcVlqbcWC', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'width': 640, }), dict({ - 'chapter_id': '33fos0bqN1TLYreVtVd32r', - 'chapter_number': 16, - 'duration_ms': 3244879, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/33fos0bqN1TLYreVtVd32r', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 16', - 'type': 'chapter', - 'uri': 'spotify:episode:33fos0bqN1TLYreVtVd32r', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'width': 300, }), dict({ - 'chapter_id': '29fjoyMwqwmKJtc6yNZuEJ', - 'chapter_number': 17, - 'duration_ms': 1851560, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/29fjoyMwqwmKJtc6yNZuEJ', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 17', - 'type': 'chapter', - 'uri': 'spotify:episode:29fjoyMwqwmKJtc6yNZuEJ', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'width': 60, }), - dict({ - 'chapter_id': '4Mj1tl85Ue9MK0pgfgHarR', - 'chapter_number': 18, - 'duration_ms': 759981, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4Mj1tl85Ue9MK0pgfgHarR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 18', - 'type': 'chapter', - 'uri': 'spotify:episode:4Mj1tl85Ue9MK0pgfgHarR', + ]), + 'name': 'Billie (interlude)', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2ZfissHhjQnhlmD54h6elH', + 'public': True, + 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', + }), + dict({ + 'collaborative': False, + 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', + }), + 'images': list([ dict({ - 'chapter_id': '3yADXAbeustrCocpeHxUCp', - 'chapter_number': 19, - 'duration_ms': 1547442, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3yADXAbeustrCocpeHxUCp', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 19', - 'type': 'chapter', - 'uri': 'spotify:episode:3yADXAbeustrCocpeHxUCp', + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000bebbdce297c9b2a3b46d3c0a41fb', + 'width': None, }), - dict({ - 'chapter_id': '2DngPhNwMz9LejeFNFk571', - 'chapter_number': 20, - 'duration_ms': 398864, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2DngPhNwMz9LejeFNFk571', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 20', - 'type': 'chapter', - 'uri': 'spotify:episode:2DngPhNwMz9LejeFNFk571', + ]), + 'name': 'Forza Horizon 5 Bass Arena', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'SylveonTribe', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/rwilming', }), - dict({ - 'chapter_id': '24sEDN4P9plH5XC0cGhu3z', - 'chapter_number': 21, - 'duration_ms': 2013885, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/24sEDN4P9plH5XC0cGhu3z', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 21', - 'type': 'chapter', - 'uri': 'spotify:episode:24sEDN4P9plH5XC0cGhu3z', + 'href': 'https://api.spotify.com/v1/users/rwilming', + 'object_type': 'user', + 'owner_id': 'rwilming', + 'uri': 'spotify:user:rwilming', + }), + 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', + 'public': False, + 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', + }), + 'images': list([ + ]), + 'name': 'My Playlist #63', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', + 'public': True, + 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', + }), + 'images': list([ dict({ - 'chapter_id': '2lctt39yGO8PVWOlm6MJZN', - 'chapter_number': 22, - 'duration_ms': 2204605, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2lctt39yGO8PVWOlm6MJZN', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 22', - 'type': 'chapter', - 'uri': 'spotify:episode:2lctt39yGO8PVWOlm6MJZN', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'width': 640, }), dict({ - 'chapter_id': '7MKcghyeGn4ZdvopzubNN3', - 'chapter_number': 23, - 'duration_ms': 715756, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7MKcghyeGn4ZdvopzubNN3', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 1', - 'type': 'chapter', - 'uri': 'spotify:episode:7MKcghyeGn4ZdvopzubNN3', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'width': 300, }), dict({ - 'chapter_id': '4zTOq40lKE3rBzwW4YSZij', - 'chapter_number': 24, - 'duration_ms': 1677010, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4zTOq40lKE3rBzwW4YSZij', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 2', - 'type': 'chapter', - 'uri': 'spotify:episode:4zTOq40lKE3rBzwW4YSZij', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'width': 60, }), - dict({ - 'chapter_id': '08MYfv81KfnankqZqLTb3T', - 'chapter_number': 25, - 'duration_ms': 1892154, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/08MYfv81KfnankqZqLTb3T', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 3', - 'type': 'chapter', - 'uri': 'spotify:episode:08MYfv81KfnankqZqLTb3T', + ]), + 'name': 'Crème', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', + 'public': True, + 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', + }), + dict({ + 'collaborative': False, + 'description': 'Spotify Wrapped presents the songs that you loved most this year.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', + }), + 'images': list([ dict({ - 'chapter_id': '6NNR9oWRgY9pxEaB37mJ11', - 'chapter_number': 26, - 'duration_ms': 1503191, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6NNR9oWRgY9pxEaB37mJ11', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 4', - 'type': 'chapter', - 'uri': 'spotify:episode:6NNR9oWRgY9pxEaB37mJ11', + 'height': None, + 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/large/your-top-songs-2022_large_en.jpg', + 'width': None, }), - dict({ - 'chapter_id': '26kNqrRZOpLtYqDkD3zXIG', - 'chapter_number': 27, - 'duration_ms': 2232059, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/26kNqrRZOpLtYqDkD3zXIG', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 5', - 'type': 'chapter', - 'uri': 'spotify:episode:26kNqrRZOpLtYqDkD3zXIG', + ]), + 'name': 'Your Top Songs 2022', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1F0sijgNaJdgit', + 'public': False, + 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', + }), + dict({ + 'collaborative': False, + 'description': 'Rock for when on the move.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX6YSLRPj8EAI', + }), + 'images': list([ dict({ - 'chapter_id': '5A5TCBfKyALXV9n7gMAlSk', - 'chapter_number': 28, - 'duration_ms': 918936, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5A5TCBfKyALXV9n7gMAlSk', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 6', - 'type': 'chapter', - 'uri': 'spotify:episode:5A5TCBfKyALXV9n7gMAlSk', + 'height': None, + 'url': 'https://i.scdn.co/image/ab67706f000000037ef65b059c5fdd9834b05bc9', + 'width': None, }), - dict({ - 'chapter_id': '7CAUsYnK6WH25ECbB2RoIk', - 'chapter_number': 29, - 'duration_ms': 1460899, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7CAUsYnK6WH25ECbB2RoIk', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 7', - 'type': 'chapter', - 'uri': 'spotify:episode:7CAUsYnK6WH25ECbB2RoIk', + ]), + 'name': 'omw from the pit', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1DX6YSLRPj8EAI', + 'public': False, + 'uri': 'spotify:playlist:37i9dQZF1DX6YSLRPj8EAI', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', + }), + 'images': list([ dict({ - 'chapter_id': '1k93wGYEEjYYVcAGLy0K7I', - 'chapter_number': 30, - 'duration_ms': 1212918, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1k93wGYEEjYYVcAGLy0K7I', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 8', - 'type': 'chapter', - 'uri': 'spotify:episode:1k93wGYEEjYYVcAGLy0K7I', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'width': 640, }), dict({ - 'chapter_id': '7M885ouJ7cr0frNA5Pb0Y3', - 'chapter_number': 31, - 'duration_ms': 1736438, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7M885ouJ7cr0frNA5Pb0Y3', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 9', - 'type': 'chapter', - 'uri': 'spotify:episode:7M885ouJ7cr0frNA5Pb0Y3', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'width': 300, }), dict({ - 'chapter_id': '01bThkNFrxa8IHkLjMrUkW', - 'chapter_number': 32, - 'duration_ms': 1343165, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/01bThkNFrxa8IHkLjMrUkW', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 10', - 'type': 'chapter', - 'uri': 'spotify:episode:01bThkNFrxa8IHkLjMrUkW', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'width': 60, + }), + ]), + 'name': 'My Shazam Tracks', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', + 'public': True, + 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', + }), + 'images': list([ dict({ - 'chapter_id': '3xZAVq4uRNe8UQLaL18dmB', - 'chapter_number': 33, - 'duration_ms': 2047426, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3xZAVq4uRNe8UQLaL18dmB', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 11', - 'type': 'chapter', - 'uri': 'spotify:episode:3xZAVq4uRNe8UQLaL18dmB', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'width': 640, }), dict({ - 'chapter_id': '402Y8O19dElX8xuAY5VnJZ', - 'chapter_number': 34, - 'duration_ms': 1986273, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/402Y8O19dElX8xuAY5VnJZ', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 12', - 'type': 'chapter', - 'uri': 'spotify:episode:402Y8O19dElX8xuAY5VnJZ', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'width': 300, }), dict({ - 'chapter_id': '5zFiYihxmwnkQxeXl3Z3Vf', - 'chapter_number': 35, - 'duration_ms': 2839119, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5zFiYihxmwnkQxeXl3Z3Vf', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 13', - 'type': 'chapter', - 'uri': 'spotify:episode:5zFiYihxmwnkQxeXl3Z3Vf', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'width': 60, + }), + ]), + 'name': 'Likes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', + 'public': True, + 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', + }), + dict({ + 'collaborative': False, + 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', + }), + 'images': list([ dict({ - 'chapter_id': '13r6Hp8WFXyzWHMn6huHpx', - 'chapter_number': 36, - 'duration_ms': 1397264, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/13r6Hp8WFXyzWHMn6huHpx', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 14', - 'type': 'chapter', - 'uri': 'spotify:episode:13r6Hp8WFXyzWHMn6huHpx', + 'height': None, + 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/stfxRixhceEsm_g7gO49YG1QsPjeunG6pNz8FmJENkOk2hR2EYo9nNsDL_MhjTxn8dIkVBsnTkvXlYlE7IZ0818v7z5KIwRNyI6tUamw8Fg=/MjA6NTQ6ODBUNjItMjEtMw==', + 'width': None, + }), + ]), + 'name': 'Discover Weekly', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZEVXcGYKTerf9omc', + 'public': False, + 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', + }), + dict({ + 'collaborative': False, + 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', + }), + 'images': list([ dict({ - 'chapter_id': '6qtqoAXjtnh2PLQ5t8KFFo', - 'chapter_number': 37, - 'duration_ms': 2321163, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6qtqoAXjtnh2PLQ5t8KFFo', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 15', - 'type': 'chapter', - 'uri': 'spotify:episode:6qtqoAXjtnh2PLQ5t8KFFo', + 'height': None, + 'url': 'https://newjams-images.scdn.co/image/ab6764780000c480/dt/v3/release-radar/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b/en-GB', + 'width': None, + }), + ]), + 'name': 'Release Radar', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + }), + 'images': list([ dict({ - 'chapter_id': '6aIH2AMngxR4j9Z8meDwQW', - 'chapter_number': 38, - 'duration_ms': 1232510, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6aIH2AMngxR4j9Z8meDwQW', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 1', - 'type': 'chapter', - 'uri': 'spotify:episode:6aIH2AMngxR4j9Z8meDwQW', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'width': 640, }), dict({ - 'chapter_id': '6ILiWXyPyQzRqI2HGWNZbY', - 'chapter_number': 39, - 'duration_ms': 1055112, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6ILiWXyPyQzRqI2HGWNZbY', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 2', - 'type': 'chapter', - 'uri': 'spotify:episode:6ILiWXyPyQzRqI2HGWNZbY', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'width': 300, }), dict({ - 'chapter_id': '19oUIVtDPSHDzC7OELsw6a', - 'chapter_number': 40, - 'duration_ms': 1898789, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/19oUIVtDPSHDzC7OELsw6a', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 3', - 'type': 'chapter', - 'uri': 'spotify:episode:19oUIVtDPSHDzC7OELsw6a', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'width': 60, + }), + ]), + 'name': "March '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '709T4OzANnUi2lKQLlVkrE', + 'public': False, + 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', + }), + 'images': list([ dict({ - 'chapter_id': '3UPOWZj22wwik20wzxfz3M', - 'chapter_number': 41, - 'duration_ms': 1531690, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3UPOWZj22wwik20wzxfz3M', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 4', - 'type': 'chapter', - 'uri': 'spotify:episode:3UPOWZj22wwik20wzxfz3M', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'width': 640, }), dict({ - 'chapter_id': '00PlgkfJtH1D2p5kKcsqRm', - 'chapter_number': 42, - 'duration_ms': 1074600, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/00PlgkfJtH1D2p5kKcsqRm', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 5', - 'type': 'chapter', - 'uri': 'spotify:episode:00PlgkfJtH1D2p5kKcsqRm', - }), - dict({ - 'chapter_id': '7JM6CGIDx4huFNhWG91TtH', - 'chapter_number': 43, - 'duration_ms': 2439759, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7JM6CGIDx4huFNhWG91TtH', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 6', - 'type': 'chapter', - 'uri': 'spotify:episode:7JM6CGIDx4huFNhWG91TtH', - }), - dict({ - 'chapter_id': '66zZV7mG5q1sJkaJY75Xwk', - 'chapter_number': 44, - 'duration_ms': 2018926, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/66zZV7mG5q1sJkaJY75Xwk', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 7', - 'type': 'chapter', - 'uri': 'spotify:episode:66zZV7mG5q1sJkaJY75Xwk', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'width': 300, }), dict({ - 'chapter_id': '6KhPKC5MHl88WNm6ZkntUi', - 'chapter_number': 45, - 'duration_ms': 1608882, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6KhPKC5MHl88WNm6ZkntUi', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 8', - 'type': 'chapter', - 'uri': 'spotify:episode:6KhPKC5MHl88WNm6ZkntUi', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'width': 60, }), - dict({ - 'chapter_id': '2nKo6lLWxinuQFUQ9cyqzv', - 'chapter_number': 46, - 'duration_ms': 1282587, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2nKo6lLWxinuQFUQ9cyqzv', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 9', - 'type': 'chapter', - 'uri': 'spotify:episode:2nKo6lLWxinuQFUQ9cyqzv', + ]), + 'name': "February '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', + 'public': False, + 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', + }), + 'images': list([ dict({ - 'chapter_id': '1NveSJGfS8ncJnsDYxHPDS', - 'chapter_number': 47, - 'duration_ms': 1581297, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1NveSJGfS8ncJnsDYxHPDS', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 10', - 'type': 'chapter', - 'uri': 'spotify:episode:1NveSJGfS8ncJnsDYxHPDS', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'width': 640, }), dict({ - 'chapter_id': '6bmPSreTIOCbWhsRVdD8Gz', - 'chapter_number': 48, - 'duration_ms': 3556572, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6bmPSreTIOCbWhsRVdD8Gz', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Chapter 11', - 'type': 'chapter', - 'uri': 'spotify:episode:6bmPSreTIOCbWhsRVdD8Gz', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'width': 300, }), dict({ - 'chapter_id': '0PMQAsGZ8f9tSTd9moghJs', - 'chapter_number': 49, - 'duration_ms': 53473, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0PMQAsGZ8f9tSTd9moghJs', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Ending Credits', - 'type': 'chapter', - 'uri': 'spotify:episode:0PMQAsGZ8f9tSTd9moghJs', + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'width': 60, }), ]), - 'description': ''' - Author(s): Frank Herbert - Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance -

NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling

Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.

A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever.

- ''', - 'edition': 'Unabridged', - 'explicit': False, + 'name': "January '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', + 'public': False, + 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', + }), + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe', + 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', }), - 'html_description': 'Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
<p><b>NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling<br></b><br>Set on the desert planet Arrakis, <i>Dune</i> is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.<br><br>A stunning blend of adventure and mysticism, environmentalism and politics, <i>Dune</i> won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever.</p>', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', - 'width': 64, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'width': 60, }), ]), - 'languages': list([ - 'en', - ]), - 'name': 'Dune: Book One in the Dune Chronicles', - 'narrators': list([ - dict({ - 'name': 'Scott Brick', - }), - dict({ - 'name': 'Orlagh Cassidy', - }), - dict({ - 'name': 'Euan Morton', + 'name': "December '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', + 'public': False, + 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', + }), + 'images': list([ dict({ - 'name': 'Ilyana Kadushin', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'width': 640, }), dict({ - 'name': 'Simon Vance', + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'width': 300, }), - ]), - 'publisher': 'Frank Herbert', - 'total_chapters': 51, - 'type': 'audiobook', - 'uri': 'spotify:show:7iHfbu1YPACw6oZPAFJtqe', - }), - ]) -# --- -# name: test_get_categories - list([ - dict({ - 'category_id': '0JQ5DAt0tbjZptfcdMSKl3', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAt0tbjZptfcdMSKl3', - 'icons': list([ dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg', - 'width': 274, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'width': 60, }), ]), - 'name': 'Made For You', - }), - dict({ - 'category_id': '0JQ5DAqbMKFz6FAsUtgAab', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFz6FAsUtgAab', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg', - 'width': 274, - }), - ]), - 'name': 'New Releases', - }), - dict({ - 'category_id': '0JQ5DAqbMKFEC4WFtoNRpw', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFEC4WFtoNRpw', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/pop-274x274_447148649685019f5e2a03a39e78ba52_0_0_274_274.jpg', - 'width': 274, - }), - ]), - 'name': 'Pop', - }), - dict({ - 'category_id': '0JQ5DAqbMKFQ00XGBls6ym', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFQ00XGBls6ym', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg', - 'width': 274, - }), - ]), - 'name': 'Hip-Hop', - }), - dict({ - 'category_id': '0JQ5DAqbMKFHOzuVTgTizF', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFHOzuVTgTizF', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/edm-274x274_0ef612604200a9c14995432994455a6d_0_0_274_274.jpg', - 'width': 274, - }), - ]), - 'name': 'Dance/Electronic', - }), - dict({ - 'category_id': '0JQ5DAqbMKFCLroFGPFVr5', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFCLroFGPFVr5', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/970c289306e64c8782ecc84de5dea795.jpeg', - 'width': 274, - }), - ]), - 'name': 'Dutch music', - }), - dict({ - 'category_id': '0JQ5DAudkNjCgYMM0TZXDw', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAudkNjCgYMM0TZXDw', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://charts-images.scdn.co/spotify-charts-logos/music_charts_search_arrow_274x274.jpeg', - 'width': 274, - }), - ]), - 'name': 'Charts', - }), - dict({ - 'category_id': '0JQ5DAqbMKFzHmL4tf05da', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFzHmL4tf05da', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/original/mood-274x274_976986a31ac8c49794cbdc7246fd5ad7_274x274.jpg', - 'width': 274, - }), - ]), - 'name': 'Mood', - }), - dict({ - 'category_id': '0JQ5DAqbMKFCWjUTdzaG0e', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFCWjUTdzaG0e', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/fe06caf056474bc58862591cd60b57fc.jpeg', - 'width': 274, - }), - ]), - 'name': 'Indie', - }), - dict({ - 'category_id': '0JQ5DAqbMKFIRybaNTYXXy', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFIRybaNTYXXy', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg', - 'width': 274, - }), - ]), - 'name': 'In the car', - }), - dict({ - 'category_id': '0JQ5DAqbMKFEZPnFQSFB1T', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFEZPnFQSFB1T', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/r-b-274x274_fd56efa72f4f63764b011b68121581d8_0_0_274_274.jpg', - 'width': 274, - }), - ]), - 'name': 'R&B', - }), - dict({ - 'category_id': '0JQ5DAtOnAEpjOgUKwXyxj', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAtOnAEpjOgUKwXyxj', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg', - 'width': 274, - }), - ]), - 'name': 'Discover', - }), - dict({ - 'category_id': '0JQ5DAqbMKFA6SOHvT3gck', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFA6SOHvT3gck', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/7ee6530d5b3c4acc9a0957046bf11d63', - 'width': 274, - }), - ]), - 'name': 'Party', - }), - dict({ - 'category_id': '0JQ5DAqbMKFAXlCG6QvYQ4', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFAXlCG6QvYQ4', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/links/workout-274x274.png', - 'width': 274, - }), - ]), - 'name': 'Workout', - }), - dict({ - 'category_id': '0JQ5DAqbMKFGnsSfvg90Wo', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFGnsSfvg90Wo', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/c5495b9f0f694ffcb39c9217d4ed4375', - 'width': 274, - }), - ]), - 'name': 'GLOW', - }), - dict({ - 'category_id': '0JQ5DAqbMKFNQ0fGp4byGU', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFNQ0fGp4byGU', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/b505b01bbe0e490cbe43b07f16212892.jpeg', - 'width': 274, + 'name': "November '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), - ]), - 'name': 'Afro', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', + 'public': False, + 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', }), dict({ - 'category_id': '0JQ5DAqbMKFGvOw3O4nLAf', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFGvOw3O4nLAf', - 'icons': list([ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', + }), + 'images': list([ dict({ - 'height': 274, - 'url': 'https://t.scdn.co/images/2078afd91e4d431eb19efc5bee5ab131.jpeg', - 'width': 274, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'width': 640, }), - ]), - 'name': 'K-pop', - }), - dict({ - 'category_id': '0JQ5DAqbMKFIpEuaCnimBj', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFIpEuaCnimBj', - 'icons': list([ dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/soul-274x274_266bc900b35dda8956380cffc73a4d8c_0_0_274_274.jpg', - 'width': 274, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'width': 300, }), - ]), - 'name': 'Soul', - }), - dict({ - 'category_id': '0JQ5DAqbMKFFzDl7qN9Apr', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFFzDl7qN9Apr', - 'icons': list([ dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/chill-274x274_4c46374f007813dd10b37e8d8fd35b4b_0_0_274_274.jpg', - 'width': 274, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'width': 60, }), ]), - 'name': 'Chill', - }), - dict({ - 'category_id': '0JQ5DAqbMKFDXXwE9BDJAr', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFDXXwE9BDJAr', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/derived/rock_9ce79e0a4ef901bbd10494f5b855d3cc_0_0_274_274.jpg', - 'width': 274, + 'name': "October '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', }), - ]), - 'name': 'Rock', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', + 'public': False, + 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', }), ]) # --- -# name: test_get_category - dict({ - 'category_id': '0JQ5DAqbMKFRY5ok2pxXJ0', - 'href': 'https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFRY5ok2pxXJ0', - 'icons': list([ - dict({ - 'height': 274, - 'url': 'https://t.scdn.co/media/original/dinner_1b6506abba0ba52c54e6d695c8571078_274x274.jpg', - 'width': 274, - }), - ]), - 'name': 'Cooking & Dining', - }) -# --- -# name: test_get_category_playlists +# name: test_get_current_users_playlists[current_user_playlist_2.json] list([ dict({ 'collaborative': False, - 'description': 'Lekker eten en lang natafelen? Daar hoort muziek bij.', + 'description': 'You listened to freedom and vibing on Mondays in the morning. Here\'s some: melodic techno, house, fraternity, 130 bpm, doof doof and electric', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX7yhuKT9G4qk', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000343319faa9428405f3312b588', + 'url': 'https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg', 'width': None, }), ]), - 'name': 'eten met vrienden', + 'name': 'daylist • melodic techno house monday morning', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7489,24 +4757,24 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DX7yhuKT9G4qk', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX7yhuKT9G4qk', + 'playlist_id': '37i9dQZF1EP6YuccBxUcC1', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EP6YuccBxUcC1', }), dict({ 'collaborative': False, - 'description': 'From new retro to classic country blues, honky tonk, rockabilly, and more.', + 'description': 'A Blend of music for Joost and Cheyenne. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXbvE0SE0Cczh', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003b93c270883619dde61725fc8', + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg', 'width': None, }), ]), - 'name': 'Jukebox Joint', + 'name': 'Cheyenne + Joost', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7518,24 +4786,24 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DXbvE0SE0Cczh', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXbvE0SE0Cczh', + 'playlist_id': '37i9dQZF1EJvpyGjPopYtd', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJvpyGjPopYtd', }), dict({ 'collaborative': False, - 'description': 'Classic and new soul music for the perfect dinner.', + 'description': '100% good vibes.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZheHO7xislj', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034b69d5ba7d5a9940475c3ef2', + 'url': 'https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2', 'width': None, }), ]), - 'name': 'Soulful Dinner', + 'name': 'Serotonin', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7547,111 +4815,111 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DWZheHO7xislj', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZheHO7xislj', + 'playlist_id': '37i9dQZF1DWYMroOc5KTTh', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1DWYMroOc5KTTh', }), dict({ 'collaborative': False, - 'description': 'Cold beer. Hot wings. Great rock. ', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXauOWFg72pbl', + 'spotify': 'https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034b04e77913de1fc2a4b819df', + 'url': 'https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21', 'width': None, }), ]), - 'name': 'Beer & Wings', + 'name': 'Sweet', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DXauOWFg72pbl', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXauOWFg72pbl', + 'playlist_id': '5t75uJ5vBvEdbbvs5uIqXJ', + 'public': True, + 'uri': 'spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ', }), dict({ 'collaborative': False, - 'description': 'An uplifting yet tasteful dinner playlist with a guaranteed feel good vibe.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXbm6HfkbMtFZ', + 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000032ba865eb4204be02ce3e8e09', + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', 'width': None, }), ]), - 'name': 'Feel Good Dinner', + 'name': 'Pain', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DXbm6HfkbMtFZ', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXbm6HfkbMtFZ', + 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', + 'public': True, + 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', }), dict({ 'collaborative': False, - 'description': 'Instrumental Jazz to set the mood for a relaxed evening.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWTALrdBtcXjw', + 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034311976b3775ca3ab337366c', + 'url': 'https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1', 'width': None, }), ]), - 'name': 'Jazzy Dinner', + 'name': 'Hyper', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DWTALrdBtcXjw', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWTALrdBtcXjw', + 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', + 'public': True, + 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', }), dict({ 'collaborative': False, - 'description': 'Sultry house and mellow beats to accompany your cocktail drinks.', + 'description': 'A Blend of music for Joost and Christel. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX6syac0fWYdV', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003a9daf47636eec9303a28bcfb', + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg', 'width': None, }), ]), - 'name': 'Cocktail Lounge', + 'name': 'Christel + Joost', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7663,53 +4931,63 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DX6syac0fWYdV', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX6syac0fWYdV', + 'playlist_id': '37i9dQZF1EJwDEkXAeJkCv', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJwDEkXAeJkCv', }), dict({ 'collaborative': False, - 'description': 'Take yourself to Havana with some Cuban Salsa and Café favourites.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZLN2cXno63R', + 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d142d7feb73b11db237b11e8', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'width': 60, }), ]), - 'name': 'Café Cubano', + 'name': 'Ain’t got shit on me', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Rensie', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', + 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', }), - 'playlist_id': '37i9dQZF1DWZLN2cXno63R', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZLN2cXno63R', + 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', + 'public': True, + 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', }), dict({ 'collaborative': False, - 'description': 'La playlist à la cool pour accompagner votre dîner !', + 'description': 'A Blend of music for Joost and kosmik. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX915ogFalrko', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000036ec804b14464d59cd9ddcd17', + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg', 'width': None, }), ]), - 'name': 'Dîner entre amis', + 'name': 'kosmik + Joost', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7721,140 +4999,155 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DX915ogFalrko', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX915ogFalrko', + 'playlist_id': '37i9dQZF1EJDyIuS82b8FD', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJDyIuS82b8FD', }), dict({ 'collaborative': False, - 'description': 'The perfect soundtrack to those long nights over dinner', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4xuWVBs4FgJ', + 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000036e515187c071e45918e9f0de', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 60, }), ]), - 'name': 'Dinner with Friends', + 'name': 'Billie (interlude)', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DX4xuWVBs4FgJ', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX4xuWVBs4FgJ', + 'playlist_id': '2ZfissHhjQnhlmD54h6elH', + 'public': True, + 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', }), dict({ 'collaborative': False, - 'description': 'Lekker eten en lang natafelen? Daar hoort muziek bij.', + 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX7yhuKT9G4qk', + 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000343319faa9428405f3312b588', + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb', 'width': None, }), ]), - 'name': 'eten met vrienden', + 'name': 'Forza Horizon 5 Bass Arena', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'SylveonTribe', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/rwilming', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/rwilming', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': 'rwilming', + 'uri': 'spotify:user:rwilming', }), - 'playlist_id': '37i9dQZF1DX7yhuKT9G4qk', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX7yhuKT9G4qk', + 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', + 'public': True, + 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', }), dict({ 'collaborative': False, - 'description': "Gettin' figgy with it, bana-na-na-nanana", + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX2FsCLsHeMrM', + 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', }), 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000038dc9fe0c14e5f34ad165e3c2', - 'width': None, - }), ]), - 'name': 'Kitchen Swagger', + 'name': 'My Playlist #63', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DX2FsCLsHeMrM', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX2FsCLsHeMrM', + 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', + 'public': True, + 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', }), dict({ 'collaborative': False, - 'description': 'An uplifting yet tasteful dinner playlist with a guaranteed feel good vibe.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXbm6HfkbMtFZ', + 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000032ba865eb4204be02ce3e8e09', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 60, }), ]), - 'name': 'Feel Good Dinner', + 'name': 'Crème', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DXbm6HfkbMtFZ', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXbm6HfkbMtFZ', + 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', + 'public': True, + 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', }), dict({ 'collaborative': False, - 'description': 'Classic and new soul music for the perfect dinner.', + 'description': 'Spotify Wrapped presents the songs that you loved most this year.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZheHO7xislj', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034b69d5ba7d5a9940475c3ef2', + 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg', 'width': None, }), ]), - 'name': 'Soulful Dinner', + 'name': 'Your Top Songs 2022', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7866,24 +5159,24 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DWZheHO7xislj', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZheHO7xislj', + 'playlist_id': '37i9dQZF1F0sijgNaJdgit', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', }), dict({ 'collaborative': False, - 'description': 'Buon Appetito!', + 'description': "The UK's biggest rock playlist. Cover: Circa Waves", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWT1R6bXL4dyW', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003c294a27b8c4fc98462b8b6a9', + 'url': 'https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464', 'width': None, }), ]), - 'name': 'The Perfect Italian Dinner', + 'name': 'The Rock List', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7895,82 +5188,102 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DWT1R6bXL4dyW', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWT1R6bXL4dyW', + 'playlist_id': '37i9dQZF1DX4DZAVUAwHMT', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1DX4DZAVUAwHMT', }), dict({ 'collaborative': False, - 'description': 'As you prepare and settle into your romantic dinner, let us provide the soundtrack with these RnB/Soul love songs.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWTJNOeepZTGy', + 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003196ba4b8d065a628edeac3b0', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 60, }), ]), - 'name': 'Wine & Dine', + 'name': 'My Shazam Tracks', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DWTJNOeepZTGy', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWTJNOeepZTGy', + 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', + 'public': True, + 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', }), dict({ 'collaborative': False, - 'description': 'Instrumental Jazz to set the mood for a relaxed evening.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWTALrdBtcXjw', + 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034311976b3775ca3ab337366c', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 60, }), ]), - 'name': 'Jazzy Dinner', + 'name': 'Likes', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DWTALrdBtcXjw', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWTALrdBtcXjw', + 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', + 'public': True, + 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', }), dict({ 'collaborative': False, - 'description': 'Chill & Bumpy', + 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWVUxkQFrGCkK', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000030795c45ffc1c5b0b48689b79', + 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==', 'width': None, }), ]), - 'name': 'Umami', + 'name': 'Discover Weekly', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -7982,24 +5295,24 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DWVUxkQFrGCkK', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWVUxkQFrGCkK', + 'playlist_id': '37i9dQZEVXcGYKTerf9omc', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', }), dict({ 'collaborative': False, - 'description': 'Take yourself to Havana with some Cuban Salsa and Café favourites.', + 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZLN2cXno63R', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d142d7feb73b11db237b11e8', + 'url': 'https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en', 'width': None, }), ]), - 'name': 'Café Cubano', + 'name': 'Release Radar', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -8011,241 +5324,73 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DWZLN2cXno63R', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZLN2cXno63R', + 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', }), dict({ 'collaborative': False, - 'description': 'Great food, good company and some soft music. ', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXatMjChPKgBk', + 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003df69720bbead04d106b7182e', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 60, }), ]), - 'name': 'Dinner Music', + 'name': "March '22", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DXatMjChPKgBk', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXatMjChPKgBk', + 'playlist_id': '709T4OzANnUi2lKQLlVkrE', + 'public': True, + 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', }), - ]) -# --- -# name: test_get_chapter - dict({ - 'audiobook': dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'width': 60, }), ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ - dict({ - 'name': 'Nienke Brinkhuis', - }), - dict({ - 'name': 'Cees van Ede', - }), - dict({ - 'name': 'Mattijn Hartemink', - }), - ]), - 'publisher': 'Anya Niewierra', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Track 1', - 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', - }) -# --- -# name: test_get_current_playing - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p', - }), - 'href': 'https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - 'currently_playing_type': 'track', - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '1LorgdkFY2zgE6NbDdY19k', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2', - 'width': 64, - }), - ]), - 'name': 'Dun Smeren Geld Verdienen', - 'release_date': '2019-05-13', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:1LorgdkFY2zgE6NbDdY19k', - }), - 'artists': list([ - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - ]), - 'disc_number': 1, - 'duration_ms': 245581, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ', - }), - 'href': 'https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ', - 'is_local': False, - 'name': 'Witte Was', - 'track_id': '4sIkwgf9bU7rQPvsA37rVQ', - 'track_number': 6, - 'type': , - 'uri': 'spotify:track:4sIkwgf9bU7rQPvsA37rVQ', - }), - 'progress_ms': 134749, - }) -# --- -# name: test_get_current_user - dict({ - 'display_name': 'Joost Lekkerkerker', - 'email': 'joostlek@outlook.com', - 'images': list([ - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc', - 'width': 64, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc', - 'width': 300, - }), - ]), - 'object_type': 'user', - 'product': , - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }) -# --- -# name: test_get_current_users_playlists[current_user_playlist_1.json] - list([ - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273d061f5bfae8d38558f3698c1', - 'width': 640, - }), - ]), - 'name': 'Hyper', + 'name': "February '22", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8257,73 +5402,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', + 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', 'public': True, - 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', + 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', + 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', 'width': 60, }), ]), - 'name': 'Ain’t got shit on me', + 'name': "January '22", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Rens Boeser', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', - 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', - 'public': False, - 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', + 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', + 'public': True, + 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', 'width': 60, }), ]), - 'name': 'Billie (interlude)', + 'name': "December '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8335,48 +5480,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '2ZfissHhjQnhlmD54h6elH', + 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', 'public': True, - 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', + 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', }), dict({ 'collaborative': False, - 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', + 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000bebbdce297c9b2a3b46d3c0a41fb', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 640, }), - ]), - 'name': 'Forza Horizon 5 Bass Arena', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'SylveonTribe', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/rwilming', + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 60, }), - 'href': 'https://api.spotify.com/v1/users/rwilming', - 'object_type': 'user', - 'owner_id': 'rwilming', - 'uri': 'spotify:user:rwilming', - }), - 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', - 'public': False, - 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', - }), - 'images': list([ ]), - 'name': 'My Playlist #63', + 'name': "November '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8388,34 +5519,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', + 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', 'public': True, - 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', + 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', + 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', 'width': 60, }), ]), - 'name': 'Crème', + 'name': "October '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8427,92 +5558,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', + 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', 'public': True, - 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', - }), - dict({ - 'collaborative': False, - 'description': 'Spotify Wrapped presents the songs that you loved most this year.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/large/your-top-songs-2022_large_en.jpg', - 'width': None, - }), - ]), - 'name': 'Your Top Songs 2022', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1F0sijgNaJdgit', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', - }), - dict({ - 'collaborative': False, - 'description': 'Rock for when on the move.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX6YSLRPj8EAI', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000037ef65b059c5fdd9834b05bc9', - 'width': None, - }), - ]), - 'name': 'omw from the pit', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX6YSLRPj8EAI', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZF1DX6YSLRPj8EAI', + 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', + 'spotify': 'https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 60, }), ]), - 'name': 'My Shazam Tracks', + 'name': "September '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8524,131 +5597,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', + 'playlist_id': '2ExZs1G4AOluuEwg3q5M1v', 'public': True, - 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', + 'uri': 'spotify:playlist:2ExZs1G4AOluuEwg3q5M1v', }), dict({ 'collaborative': False, - 'description': '', + 'description': 'de soms niet zo casual weird vibe playlist', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', + 'spotify': 'https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', 'width': 60, }), ]), - 'name': 'Likes', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', - 'public': True, - 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', - }), - dict({ - 'collaborative': False, - 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/stfxRixhceEsm_g7gO49YG1QsPjeunG6pNz8FmJENkOk2hR2EYo9nNsDL_MhjTxn8dIkVBsnTkvXlYlE7IZ0818v7z5KIwRNyI6tUamw8Fg=/MjA6NTQ6ODBUNjItMjEtMw==', - 'width': None, - }), - ]), - 'name': 'Discover Weekly', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZEVXcGYKTerf9omc', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', - }), - dict({ - 'collaborative': False, - 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab6764780000c480/dt/v3/release-radar/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b/en-GB', - 'width': None, - }), - ]), - 'name': 'Release Radar', + 'name': 'Slumpmässiga', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'xleanne_', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/xleanne_', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/xleanne_', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': 'xleanne_', + 'uri': 'spotify:user:xleanne_', }), - 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', + 'playlist_id': '4jNUJLnkZJ32nuFE1PjkGu', 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', + 'uri': 'spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + 'spotify': 'https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 60, }), ]), - 'name': "March '22", + 'name': "August '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8660,34 +5675,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '709T4OzANnUi2lKQLlVkrE', - 'public': False, - 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', + 'playlist_id': '700dVjBihCDj2HwyhYDTRp', + 'public': True, + 'uri': 'spotify:playlist:700dVjBihCDj2HwyhYDTRp', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', + 'spotify': 'https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 60, }), ]), - 'name': "February '22", + 'name': 'Discover Weekly Archive', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8699,34 +5714,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', - 'public': False, - 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', + 'playlist_id': '6B5dmWX7pK2LHHtS6ph265', + 'public': True, + 'uri': 'spotify:playlist:6B5dmWX7pK2LHHtS6ph265', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', + 'spotify': 'https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', 'width': 60, }), ]), - 'name': "January '22", + 'name': 'Dance vibes', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8738,34 +5753,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', - 'public': False, - 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', + 'playlist_id': '0ISThPpDv4JBNeHdptcK6i', + 'public': True, + 'uri': 'spotify:playlist:0ISThPpDv4JBNeHdptcK6i', }), dict({ - 'collaborative': False, + 'collaborative': True, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', + 'spotify': 'https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', 'width': 60, }), ]), - 'name': "December '21", + 'name': 'goeien numertjs', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8777,34 +5792,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', - 'public': False, - 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + 'playlist_id': '2ElmM8s9Um1XSP07hADX9s', + 'public': True, + 'uri': 'spotify:playlist:2ElmM8s9Um1XSP07hADX9s', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', + 'spotify': 'https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', 'width': 60, }), ]), - 'name': "November '21", + 'name': 'Summer vibes', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8816,34 +5831,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', - 'public': False, - 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', + 'playlist_id': '0DRUBqBUSFJH1a7FvBIsGg', + 'public': True, + 'uri': 'spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', + 'spotify': 'https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', 'width': 60, }), ]), - 'name': "October '21", + 'name': "July '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -8855,28 +5870,24 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', - 'public': False, - 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', + 'playlist_id': '4PSXSX9WhxdjAzSjU175od', + 'public': True, + 'uri': 'spotify:playlist:4PSXSX9WhxdjAzSjU175od', }), - ]) -# --- -# name: test_get_current_users_playlists[current_user_playlist_2.json] - list([ dict({ 'collaborative': False, - 'description': 'You listened to freedom and vibing on Mondays in the morning. Here\'s some: melodic techno, house, fraternity, 130 bpm, doof doof and electric', + 'description': 'A Blend of music for Joost and xleanne_. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly', }), 'images': list([ dict({ 'height': None, - 'url': 'https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg', + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg', 'width': None, }), ]), - 'name': 'daylist • melodic techno house monday morning', + 'name': 'xleanne_ + Joost', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -8888,111 +5899,131 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1EP6YuccBxUcC1', + 'playlist_id': '37i9dQZF1EJADo3CBlOCly', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EP6YuccBxUcC1', + 'uri': 'spotify:playlist:37i9dQZF1EJADo3CBlOCly', }), dict({ 'collaborative': False, - 'description': 'A Blend of music for Joost and Cheyenne. Updates daily.', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd', + 'spotify': 'https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 60, }), ]), - 'name': 'Cheyenne + Joost', + 'name': "June '21", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1EJvpyGjPopYtd', + 'playlist_id': '1XKSZRcsYP6VTkObunDIjQ', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJvpyGjPopYtd', + 'uri': 'spotify:playlist:1XKSZRcsYP6VTkObunDIjQ', }), dict({ 'collaborative': False, - 'description': '100% good vibes.', + 'description': 'This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh', + 'spotify': 'https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2', + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c', 'width': None, }), ]), - 'name': 'Serotonin', + 'name': 'GTA Cayo Perico Beach Party: Keinemusik Set', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Austin Martinez', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/127651589', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/127651589', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '127651589', + 'uri': 'spotify:user:127651589', }), - 'playlist_id': '37i9dQZF1DWYMroOc5KTTh', + 'playlist_id': '3uCD1EyW3JRx8SV1QnA3Zm', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DWYMroOc5KTTh', + 'uri': 'spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm', }), dict({ 'collaborative': False, - 'description': '', + 'description': 'A Blend of music for Joost and Marc. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21', + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg', 'width': None, }), ]), - 'name': 'Sweet', + 'name': 'Marc + Joost', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', + 'href': 'https://api.spotify.com/v1/users/spotify', 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), - 'playlist_id': '5t75uJ5vBvEdbbvs5uIqXJ', + 'playlist_id': '37i9dQZF1EJBr22FUQwTGS', 'public': True, - 'uri': 'spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ', + 'uri': 'spotify:playlist:37i9dQZF1EJBr22FUQwTGS', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', + 'spotify': 'https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 60, }), ]), - 'name': 'Pain', + 'name': "May '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -9004,24 +6035,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', + 'playlist_id': '3yPujxZ9OiB4By8COZaxaK', 'public': True, - 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', + 'uri': 'spotify:playlist:3yPujxZ9OiB4By8COZaxaK', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', + 'spotify': 'https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 60, }), ]), - 'name': 'Hyper', + 'name': "April '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -9033,92 +6074,92 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', + 'playlist_id': '4A31OO75jaLCV2r7bvbQUa', 'public': True, - 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', + 'uri': 'spotify:playlist:4A31OO75jaLCV2r7bvbQUa', }), dict({ 'collaborative': False, - 'description': 'A Blend of music for Joost and Christel. Updates daily.', + 'description': 'HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv', + 'spotify': 'https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK', }), 'images': list([ dict({ 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg', + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c', 'width': None, }), ]), - 'name': 'Christel + Joost', + 'name': 'BASS BOOSTED CAR MUSIC 2023', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'LIZOT', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/max.kleinschmidt', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/max.kleinschmidt', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': 'max.kleinschmidt', + 'uri': 'spotify:user:max.kleinschmidt', }), - 'playlist_id': '37i9dQZF1EJwDEkXAeJkCv', + 'playlist_id': '6JbGAAe70bKTA3yfddjWTK', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJwDEkXAeJkCv', + 'uri': 'spotify:playlist:6JbGAAe70bKTA3yfddjWTK', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', + 'spotify': 'https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', 'width': 60, }), ]), - 'name': 'Ain’t got shit on me', + 'name': "March '21", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Rensie', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', - 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', + 'playlist_id': '6lVbphMrnxl1vIlfPhdA8i', 'public': True, - 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', + 'uri': 'spotify:playlist:6lVbphMrnxl1vIlfPhdA8i', }), dict({ 'collaborative': False, - 'description': 'A Blend of music for Joost and kosmik. Updates daily.', + 'description': "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV', }), 'images': list([ dict({ 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg', + 'url': 'https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337', 'width': None, }), ]), - 'name': 'kosmik + Joost', + 'name': 'ADE Guest List', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -9130,34 +6171,34 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1EJDyIuS82b8FD', + 'playlist_id': '37i9dQZF1DX3FNkD0kDpDV', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJDyIuS82b8FD', + 'uri': 'spotify:playlist:37i9dQZF1DX3FNkD0kDpDV', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + 'spotify': 'https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', 'width': 60, }), ]), - 'name': 'Billie (interlude)', + 'name': "February '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -9169,145 +6210,63 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '2ZfissHhjQnhlmD54h6elH', + 'playlist_id': '3l0iA85qv43y9aMWztVIHu', 'public': True, - 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', + 'uri': 'spotify:playlist:3l0iA85qv43y9aMWztVIHu', }), dict({ 'collaborative': False, - 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', + 'spotify': 'https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 60, }), ]), - 'name': 'Forza Horizon 5 Bass Arena', + 'name': "January '21", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'SylveonTribe', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/rwilming', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/rwilming', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'rwilming', - 'uri': 'spotify:user:rwilming', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', + 'playlist_id': '2jp4GK1k1l7I1X67f2EbmD', 'public': True, - 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', + 'uri': 'spotify:playlist:2jp4GK1k1l7I1X67f2EbmD', }), dict({ 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', - }), - 'images': list([ - ]), - 'name': 'My Playlist #63', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', - 'public': True, - 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', - 'width': 60, - }), - ]), - 'name': 'Crème', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', - 'public': True, - 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', - }), - dict({ - 'collaborative': False, - 'description': 'Spotify Wrapped presents the songs that you loved most this year.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg', - 'width': None, - }), - ]), - 'name': 'Your Top Songs 2022', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1F0sijgNaJdgit', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', - }), - dict({ - 'collaborative': False, - 'description': "The UK's biggest rock playlist. Cover: Circa Waves", + 'description': 'The songs you loved most this year, all wrapped up.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6', }), 'images': list([ dict({ 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464', + 'url': 'https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg', 'width': None, }), ]), - 'name': 'The Rock List', + 'name': 'Your Top Songs 2020', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Spotify', @@ -9319,34 +6278,34 @@ 'owner_id': 'spotify', 'uri': 'spotify:user:spotify', }), - 'playlist_id': '37i9dQZF1DX4DZAVUAwHMT', + 'playlist_id': '37i9dQZF1EM9phQOPnbiB6', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DX4DZAVUAwHMT', + 'uri': 'spotify:playlist:37i9dQZF1EM9phQOPnbiB6', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', + 'spotify': 'https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', 'width': 60, }), ]), - 'name': 'My Shazam Tracks', + 'name': "December '20", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -9358,34 +6317,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', + 'playlist_id': '027kb6scBKg9y9dE5nPPTv', 'public': True, - 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', + 'uri': 'spotify:playlist:027kb6scBKg9y9dE5nPPTv', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', + 'spotify': 'https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', 'width': 60, }), ]), - 'name': 'Likes', + 'name': "November '20", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -9397,1182 +6356,923 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', + 'playlist_id': '1lX3M3MvpNmQGzuh7tVi15', 'public': True, - 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', + 'uri': 'spotify:playlist:1lX3M3MvpNmQGzuh7tVi15', }), + ]) +# --- +# name: test_get_devices + list([ dict({ - 'collaborative': False, - 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==', - 'width': None, - }), - ]), - 'name': 'Discover Weekly', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZEVXcGYKTerf9omc', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', + 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', + 'device_type': , + 'is_active': False, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'DESKTOP-BKC5SIK', + 'supports_volume': True, + 'volume_percent': 69, }), - dict({ - 'collaborative': False, - 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', + ]) +# --- +# name: test_get_episode + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3690161, + 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', + }), + 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en', - 'width': None, - }), - ]), - 'name': 'Release Radar', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, }), - 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', - }), - dict({ - 'collaborative': False, - 'description': '', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'My Squirrel Has Brain Damage - Safety Third 119', + 'release_date': '2024-07-26', + 'release_date_precision': , + 'show': dict({ + 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, }), ]), - 'name': "March '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '709T4OzANnUi2lKQLlVkrE', - 'public': True, - 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', + 'name': 'Safety Third', + 'publisher': 'Safety Third ', + 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', + 'total_episodes': 120, + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', }), + 'type': , + 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', + }) +# --- +# name: test_get_following_artists + list([ dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', - }), + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e', + 'width': 160, }), ]), - 'name': "February '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', - 'public': True, - 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', - }), + 'artist_id': '0p4nmQO2msCgU4IF37Wi3j', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5c3349ddba6b8e064c1bab16', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745c3349ddba6b8e064c1bab16', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785c3349ddba6b8e064c1bab16', + 'width': 160, }), ]), - 'name': "January '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', - 'public': True, - 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', + 'name': 'Avril Lavigne', + 'uri': 'spotify:artist:0p4nmQO2msCgU4IF37Wi3j', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', - }), + 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b60ba4ab40815357c713dc2', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051747b60ba4ab40815357c713dc2', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1787b60ba4ab40815357c713dc2', + 'width': 160, }), ]), - 'name': "December '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', - 'public': True, - 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + 'name': 'Beast In Black', + 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', - }), + 'artist_id': '0uBVyPbLZRDNEBiA4fZUlp', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebf6cb4b106fe956c95d243a1f', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174f6cb4b106fe956c95d243a1f', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178f6cb4b106fe956c95d243a1f', + 'width': 160, }), ]), - 'name': "November '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', - 'public': True, - 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', + 'name': 'Froukje', + 'uri': 'spotify:artist:0uBVyPbLZRDNEBiA4fZUlp', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', - }), + 'artist_id': '10GT4yz8c6xjjnPGtGPI1l', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebb0debcb6b7015f1a7a1bfaa0', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174b0debcb6b7015f1a7a1bfaa0', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178b0debcb6b7015f1a7a1bfaa0', + 'width': 160, }), ]), - 'name': "October '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', - 'public': True, - 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', + 'name': 'Franc Moody', + 'uri': 'spotify:artist:10GT4yz8c6xjjnPGtGPI1l', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v', - }), + 'artist_id': '17IDrizGUiveZm4P77Kkio', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb712d292bff8648aa62c2dad4', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174712d292bff8648aa62c2dad4', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178712d292bff8648aa62c2dad4', + 'width': 160, }), ]), - 'name': "September '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '2ExZs1G4AOluuEwg3q5M1v', - 'public': True, - 'uri': 'spotify:playlist:2ExZs1G4AOluuEwg3q5M1v', + 'name': 'Icarus', + 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', }), dict({ - 'collaborative': False, - 'description': 'de soms niet zo casual weird vibe playlist', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu', - }), + 'artist_id': '1A6zWJwn4XmdZZgob3wYPM', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5022973615b58f2756ab3ff3', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745022973615b58f2756ab3ff3', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', - 'width': 60, - }), - ]), - 'name': 'Slumpmässiga', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'xleanne_', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/xleanne_', + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785022973615b58f2756ab3ff3', + 'width': 160, }), - 'href': 'https://api.spotify.com/v1/users/xleanne_', - 'object_type': 'user', - 'owner_id': 'xleanne_', - 'uri': 'spotify:user:xleanne_', - }), - 'playlist_id': '4jNUJLnkZJ32nuFE1PjkGu', - 'public': True, - 'uri': 'spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu', + ]), + 'name': 'Blaudzun', + 'uri': 'spotify:artist:1A6zWJwn4XmdZZgob3wYPM', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp', - }), + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebbfa0f25d3d775e4892e0add3', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174bfa0f25d3d775e4892e0add3', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178bfa0f25d3d775e4892e0add3', + 'width': 160, }), ]), - 'name': "August '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '700dVjBihCDj2HwyhYDTRp', - 'public': True, - 'uri': 'spotify:playlist:700dVjBihCDj2HwyhYDTRp', + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265', - }), + 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebf150017ca69c8793503c2d4f', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174f150017ca69c8793503c2d4f', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178f150017ca69c8793503c2d4f', + 'width': 160, }), ]), - 'name': 'Discover Weekly Archive', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '6B5dmWX7pK2LHHtS6ph265', - 'public': True, - 'uri': 'spotify:playlist:6B5dmWX7pK2LHHtS6ph265', + 'name': 'David Guetta', + 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i', - }), + 'artist_id': '1DbXVMdQqNejIYLU2xsIMi', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8', + 'width': 160, }), ]), - 'name': 'Dance vibes', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0ISThPpDv4JBNeHdptcK6i', - 'public': True, - 'uri': 'spotify:playlist:0ISThPpDv4JBNeHdptcK6i', + 'name': 'Ryan Ritual', + 'uri': 'spotify:artist:1DbXVMdQqNejIYLU2xsIMi', }), dict({ - 'collaborative': True, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s', - }), + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebd263e0042b36fd357c8c7cdb', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174d263e0042b36fd357c8c7cdb', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178d263e0042b36fd357c8c7cdb', + 'width': 160, }), ]), - 'name': 'goeien numertjs', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '2ElmM8s9Um1XSP07hADX9s', - 'public': True, - 'uri': 'spotify:playlist:2ElmM8s9Um1XSP07hADX9s', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg', - }), + 'artist_id': '1LOB7jTeEV14pHai6EXSzF', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebc6b0d99b1a736712a1653d6a', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174c6b0d99b1a736712a1653d6a', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178c6b0d99b1a736712a1653d6a', + 'width': 160, }), ]), - 'name': 'Summer vibes', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0DRUBqBUSFJH1a7FvBIsGg', - 'public': True, - 'uri': 'spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg', + 'name': 'Cash Cash', + 'uri': 'spotify:artist:1LOB7jTeEV14pHai6EXSzF', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od', - }), + 'artist_id': '1QOHbhVRpDoNtRkz79si6b', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb403bad456309541432feb79b', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174403bad456309541432feb79b', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178403bad456309541432feb79b', + 'width': 160, }), ]), - 'name': "July '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4PSXSX9WhxdjAzSjU175od', - 'public': True, - 'uri': 'spotify:playlist:4PSXSX9WhxdjAzSjU175od', + 'name': 'Karen Harding', + 'uri': 'spotify:artist:1QOHbhVRpDoNtRkz79si6b', }), dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and xleanne_. Updates daily.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly', - }), + 'artist_id': '1eK59pkylGGka9wRUEKVXt', 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b6e73b581c807a49a146eb6', + 'width': 640, }), - ]), - 'name': 'xleanne_ + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051747b6e73b581c807a49a146eb6', + 'width': 320, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJADo3CBlOCly', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJADo3CBlOCly', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1787b6e73b581c807a49a146eb6', + 'width': 160, + }), + ]), + 'name': 'Chris Brochu', + 'uri': 'spotify:artist:1eK59pkylGGka9wRUEKVXt', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ', - }), + 'artist_id': '1ho3p0XM4jDk7n9NUOekbp', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736d5999b6e7e2dd2fd19f88f8', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'url': 'https://i.scdn.co/image/ab67616d00001e026d5999b6e7e2dd2fd19f88f8', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048516d5999b6e7e2dd2fd19f88f8', + 'width': 64, }), ]), - 'name': "June '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '1XKSZRcsYP6VTkObunDIjQ', - 'public': True, - 'uri': 'spotify:playlist:1XKSZRcsYP6VTkObunDIjQ', + 'name': 'Inthelittlewood', + 'uri': 'spotify:artist:1ho3p0XM4jDk7n9NUOekbp', }), dict({ - 'collaborative': False, - 'description': 'This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm', - }), + 'artist_id': '1kDGbuxWknIKx4FlgWxiSp', 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57', + 'width': 640, }), - ]), - 'name': 'GTA Cayo Perico Beach Party: Keinemusik Set', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Austin Martinez', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/127651589', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57', + 'width': 320, }), - 'href': 'https://api.spotify.com/v1/users/127651589', - 'object_type': 'user', - 'owner_id': '127651589', - 'uri': 'spotify:user:127651589', - }), - 'playlist_id': '3uCD1EyW3JRx8SV1QnA3Zm', - 'public': True, - 'uri': 'spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm', - }), - dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and Marc. Updates daily.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg', - 'width': None, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57', + 'width': 160, }), ]), - 'name': 'Marc + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJBr22FUQwTGS', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJBr22FUQwTGS', + 'name': 'Nothing But Thieves', + 'uri': 'spotify:artist:1kDGbuxWknIKx4FlgWxiSp', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK', - }), + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113', + 'width': 160, }), ]), - 'name': "May '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '3yPujxZ9OiB4By8COZaxaK', - 'public': True, - 'uri': 'spotify:playlist:3yPujxZ9OiB4By8COZaxaK', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa', - }), + 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'url': 'https://i.scdn.co/image/ab6761610000e5ebffa0888ff64a510cbf665855', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ffa0888ff64a510cbf665855', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ffa0888ff64a510cbf665855', + 'width': 160, }), ]), - 'name': "April '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4A31OO75jaLCV2r7bvbQUa', - 'public': True, - 'uri': 'spotify:playlist:4A31OO75jaLCV2r7bvbQUa', + 'name': 'MK', + 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', }), dict({ - 'collaborative': False, - 'description': 'HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK', - }), + 'artist_id': '23fqKkggKUBHNkbKtXEls4', 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe5ea1aa1404629c12ad86658', + 'width': 640, }), - ]), - 'name': 'BASS BOOSTED CAR MUSIC 2023', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'LIZOT', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/max.kleinschmidt', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e5ea1aa1404629c12ad86658', + 'width': 320, }), - 'href': 'https://api.spotify.com/v1/users/max.kleinschmidt', - 'object_type': 'user', - 'owner_id': 'max.kleinschmidt', - 'uri': 'spotify:user:max.kleinschmidt', - }), - 'playlist_id': '6JbGAAe70bKTA3yfddjWTK', - 'public': True, - 'uri': 'spotify:playlist:6JbGAAe70bKTA3yfddjWTK', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e5ea1aa1404629c12ad86658', + 'width': 160, + }), + ]), + 'name': 'Kygo', + 'uri': 'spotify:artist:23fqKkggKUBHNkbKtXEls4', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i', - }), + 'artist_id': '2NZMqINcyfepvLxQJdzcZk', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb96b6d4d0d0f43bd50216f22e', 'width': 640, }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', - 'width': 300, + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517496b6d4d0d0f43bd50216f22e', + 'width': 320, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', - 'width': 60, + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17896b6d4d0d0f43bd50216f22e', + 'width': 160, }), ]), - 'name': "March '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '6lVbphMrnxl1vIlfPhdA8i', - 'public': True, - 'uri': 'spotify:playlist:6lVbphMrnxl1vIlfPhdA8i', + 'name': 'Lensko', + 'uri': 'spotify:artist:2NZMqINcyfepvLxQJdzcZk', }), - dict({ - 'collaborative': False, - 'description': "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", + ]) +# --- +# name: test_get_playback_state[playback_1.json] + dict({ + 'context': dict({ + 'context_type': , 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337', - 'width': None, - }), - ]), - 'name': 'ADE Guest List', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'spotify': 'https://open.spotify.com/collection/tracks', }), - 'playlist_id': '37i9dQZF1DX3FNkD0kDpDV', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DX3FNkD0kDpDV', + 'href': 'https://api.spotify.com/v1/me/tracks', + 'uri': 'spotify:user:1112264649:collection', }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu', + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'DESKTOP-BKC5SIK', + 'supports_volume': True, + 'volume_percent': 69, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '1iasbpTobDPa5BmsK0Rz1f', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722', + 'width': 64, + }), + ]), + 'name': 'WARRIORS, Pt. 1 (Final Stage)', + 'release_date': '2023-10-20', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1iasbpTobDPa5BmsK0Rz1f', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', - 'width': 300, - }), + 'artists': list([ dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', - 'width': 60, + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', }), ]), - 'name': "February '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'disc_number': 1, + 'duration_ms': 268525, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv', }), - 'playlist_id': '3l0iA85qv43y9aMWztVIHu', - 'public': True, - 'uri': 'spotify:playlist:3l0iA85qv43y9aMWztVIHu', + 'href': 'https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv', + 'is_local': False, + 'name': 'WARRIORS, Pt. 1 (Final Stage)', + 'track_id': '1FyXbzOlq3dkxaB6iRsETv', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1FyXbzOlq3dkxaB6iRsETv', }), - dict({ - 'collaborative': False, - 'description': '', + 'progress_ms': 225564, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_2.json] + dict({ + 'context': dict({ + 'context_type': , 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', - 'width': 60, - }), - ]), - 'name': "January '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'spotify': 'https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm', }), - 'playlist_id': '2jp4GK1k1l7I1X67f2EbmD', - 'public': True, - 'uri': 'spotify:playlist:2jp4GK1k1l7I1X67f2EbmD', + 'href': 'https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm', + 'uri': 'spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm', }), - dict({ - 'collaborative': False, - 'description': 'The songs you loved most this year, all wrapped up.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6', + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': 'a19f7a03a25aff3e43f457a328a8ba67a8c44789', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'Master Bathroom Speaker', + 'supports_volume': True, + 'volume_percent': 25, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '3nUNxSh2szhmN7iifAKv5i', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', + 'name': 'Rush', + 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983', + 'width': 64, + }), + ]), + 'name': 'Permanent Waves', + 'release_date': '1980-01-01', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:3nUNxSh2szhmN7iifAKv5i', }), - 'images': list([ + 'artists': list([ dict({ - 'height': None, - 'url': 'https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg', - 'width': None, + 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', + 'name': 'Rush', + 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', }), ]), - 'name': 'Your Top Songs 2020', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'disc_number': 1, + 'duration_ms': 296466, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p', }), - 'playlist_id': '37i9dQZF1EM9phQOPnbiB6', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EM9phQOPnbiB6', + 'href': 'https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p', + 'is_local': False, + 'name': 'The Spirit Of Radio', + 'track_id': '4e9hUiLsN4mx61ARosFi7p', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4e9hUiLsN4mx61ARosFi7p', }), - dict({ - 'collaborative': False, - 'description': '', + 'progress_ms': 249367, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_3.json] + dict({ + 'context': dict({ + 'context_type': , 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', - 'width': 60, - }), - ]), - 'name': "December '20", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'spotify': 'https://open.spotify.com/collection/tracks', }), - 'playlist_id': '027kb6scBKg9y9dE5nPPTv', - 'public': True, - 'uri': 'spotify:playlist:027kb6scBKg9y9dE5nPPTv', + 'href': 'https://api.spotify.com/v1/me/tracks', + 'uri': 'spotify:user:1112264649:collection', }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15', + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': None, + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': True, + 'name': 'Sonos Roam SL', + 'supports_volume': True, + 'volume_percent': 34, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '3qCsGHHWG6t9izvmsE47jr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c', + 'width': 64, + }), + ]), + 'name': 'Ome Robert', + 'release_date': '2018-04-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3qCsGHHWG6t9izvmsE47jr', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', - 'width': 300, - }), + 'artists': list([ dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', - 'width': 60, + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', }), ]), - 'name': "November '20", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'disc_number': 1, + 'duration_ms': 152500, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z', }), - 'playlist_id': '1lX3M3MvpNmQGzuh7tVi15', - 'public': True, - 'uri': 'spotify:playlist:1lX3M3MvpNmQGzuh7tVi15', + 'href': 'https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z', + 'is_local': False, + 'name': 'Ome Robert', + 'track_id': '3TE49HXyoNczZk2IBhP87z', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3TE49HXyoNczZk2IBhP87z', }), - ]) + 'progress_ms': 7919, + 'repeat_mode': , + 'shuffle': False, + }) # --- -# name: test_get_devices - list([ - dict({ - 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', +# name: test_get_playback_state[playback_4.json] + dict({ + 'context': None, + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': 'aee274e4bbe6b44cf3b22ad3b68eca3a6954a701', 'device_type': , - 'is_active': False, + 'is_active': True, 'is_private_session': False, 'is_restricted': False, - 'name': 'DESKTOP-BKC5SIK', + 'name': 'Joost’s MacBook Pro', 'supports_volume': True, - 'volume_percent': 69, + 'volume_percent': 67, }), - ]) + 'is_playing': True, + 'item': None, + 'progress_ms': 22215, + 'repeat_mode': , + 'shuffle': False, + }) # --- -# name: test_get_episode +# name: test_get_playback_state[playback_audiobook_1.json] dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3690161, - 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', - }), - 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', }), - ]), - 'name': 'My Squirrel Has Brain Damage - Safety Third 119', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'show': dict({ - 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + 'currently_playing_type': 'episode', + 'device': dict({ + 'device_id': '9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'Nothing phone (1)', + 'supports_volume': False, + 'volume_percent': 100, + }), + 'is_playing': True, + 'item': dict({ + 'description': '', + 'duration_ms': 249652, + 'episode_id': '3NW4BmIOG0qzQZgtLgsydR', + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'href': 'https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', 'width': 64, }), ]), - 'name': 'Safety Third', - 'publisher': 'Safety Third ', - 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 120, - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + 'name': 'Track 1', + 'release_date': '0000', + 'release_date_precision': , + 'show': dict({ + 'description': ''' + Author(s): Anya Niewierra + Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink +

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

+

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

+

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

+

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

+
+

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
+ Heleen Spanjaard, Margriet

+

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
+ Rob Cobben, cultuurverslaggever Dagblad De Limburger

+ ''', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + }), + 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, + }), + ]), + 'name': 'De nomade', + 'publisher': 'Anya Niewierra', + 'show_id': '58cFIY8IT7yGqR3kHnKqzV', + 'total_episodes': None, + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + 'type': , + 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', }), - 'type': , - 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', + 'progress_ms': 15611, + 'repeat_mode': , + 'shuffle': False, }) # --- -# name: test_get_episodes - list([ - dict({ +# name: test_get_playback_state[playback_episode_1.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'currently_playing_type': 'episode', + 'device': dict({ + 'device_id': None, + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': True, + 'name': 'Sonos Roam SL', + 'supports_volume': True, + 'volume_percent': 46, + }), + 'is_playing': True, + 'item': dict({ 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', 'duration_ms': 3690161, 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', @@ -10627,6309 +7327,1062 @@ 'name': 'Safety Third', 'publisher': 'Safety Third ', 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 122, + 'total_episodes': 120, 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', }), 'type': , 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', }), - ]) + 'progress_ms': 5410, + 'repeat_mode': , + 'shuffle': False, + }) # --- -# name: test_get_featured_playlists - list([ - dict({ - 'collaborative': False, - 'description': 'De ideale playlist voor het fijne kerstgevoel bij de boom!', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4dopZ9vOp1t', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000037d14c267b8ee5fea2246a8fe', - 'width': None, - }), - ]), - 'name': 'Kerst Hits 2023', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX4dopZ9vOp1t', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX4dopZ9vOp1t', +# name: test_get_playlist[playlist_1.json] + dict({ + 'collaborative': False, + 'description': 'A playlist for testing pourposes', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3cEYpjA9oz9GiPac4AsH4n', }), - dict({ - 'collaborative': False, - 'description': 'De 50 populairste hits van Nederland. Cover: Jack Harlow', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWSBi5svWQ9Nk', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003f7b99051789611a49101c1cf', - 'width': None, - }), - ]), - 'name': 'Top Hits NL', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67706c0000da848d0ce13d55f634e290f744ba', + 'width': None, }), - 'playlist_id': '37i9dQZF1DWSBi5svWQ9Nk', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWSBi5svWQ9Nk', - }), - dict({ - 'collaborative': False, - 'description': 'The biggest Christmas songs of all time.', + ]), + 'name': 'Spotify Web API Testing playlist', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'JMPerez²', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX0Yxoavh5qJV', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003ef53563c4fa1187c7537f13f', - 'width': None, - }), - ]), - 'name': 'Christmas Hits', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - 'playlist_id': '37i9dQZF1DX0Yxoavh5qJV', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX0Yxoavh5qJV', + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'object_type': 'user', + 'owner_id': 'jmperezperez', + 'uri': 'spotify:user:jmperezperez', }), - dict({ - 'collaborative': False, - 'description': 'Luister de Radio 2 Top 2000 - 2023 - Editie 25!', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWTmvXBN4DgpA', - }), - 'images': list([ + 'playlist_id': '3cEYpjA9oz9GiPac4AsH4n', + 'public': True, + 'tracks': dict({ + 'items': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034a3550dfb857569735d6c5ab', - 'width': None, - }), - ]), - 'name': 'Top 2000', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', + }), + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '2pANdqPvxInB0YvcDiw4ko', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', + 'name': 'Various Artists', + 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', + 'width': 64, + }), + ]), + 'name': 'Progressive Psy Trance Picks Vol.8', + 'release_date': '2012-04-02', + 'release_date_precision': , + 'total_tracks': 20, + 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', + }), + 'artists': list([ + dict({ + 'artist_id': '6eSdhw46riw2OUHgMwR8B5', + 'name': 'Odiseo', + 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', + }), + ]), + 'disc_number': 1, + 'duration_ms': 376000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', + 'is_local': False, + 'name': 'Api', + 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', + }), }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWTmvXBN4DgpA', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWTmvXBN4DgpA', - }), - dict({ - 'collaborative': False, - 'description': 'Lekker rustig aan doen op zondag met deze zachte pop liedjes.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZpGSuzrdTXg', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000034203ab0c15f6a3243fea16d8', - 'width': None, - }), - ]), - 'name': 'Easy On Sunday', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWZpGSuzrdTXg', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZpGSuzrdTXg', - }), - dict({ - 'collaborative': False, - 'description': 'Timeless heart-warming classics from 1940- 1980 for the holiday season.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX6R7QUWePReA', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003b70e0f51ac4cf9d62cee4977', - 'width': None, - }), - ]), - 'name': 'Christmas Classics', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX6R7QUWePReA', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX6R7QUWePReA', - }), - dict({ - 'collaborative': False, - 'description': 'De beste Nederlandse hits van vroeger en nu. Cover: Tino Martin & Mart Hoogkamer', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXdKMCnEhDnDL', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d93ec9896683ab78fa949391', - 'width': None, - }), - ]), - 'name': 'Beste van NL', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DXdKMCnEhDnDL', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXdKMCnEhDnDL', - }), - dict({ - 'collaborative': False, - 'description': 'Reanny & King Ocho op de cover van Woordenschat!', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX19xRtMyA5LM', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003f90ad1550abb0e50440cc032', - 'width': None, - }), - ]), - 'name': 'Woordenschat', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX19xRtMyA5LM', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX19xRtMyA5LM', - }), - dict({ - 'collaborative': False, - 'description': 'Koffie met gemoedelijke muziek op de achtergrond.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWYPwGkJoztcR', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000358e9793722274f9d7b7e85e6', - 'width': None, - }), - ]), - 'name': "'t Koffiehuis", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWYPwGkJoztcR', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWYPwGkJoztcR', - }), - dict({ - 'collaborative': False, - 'description': 'De grootste hits uit de kroeg in één playlist.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWUppGmuwT9c7', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d307684e485446632dce60ab', - 'width': None, - }), - ]), - 'name': 'Kroegenhits', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWUppGmuwT9c7', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWUppGmuwT9c7', - }), - dict({ - 'collaborative': False, - 'description': 'Niks aan te doen, Winter 2023 is coming! ', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXcx1szy2g67M', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003f2338153122480fcf814c326', - 'width': None, - }), - ]), - 'name': "Winter '23", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DXcx1szy2g67M', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXcx1szy2g67M', - }), - dict({ - 'collaborative': False, - 'description': 'Kick back to the best new and recent chill hits.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4WYpdgoIcn6', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000385a267af7eab188ae99105ad', - 'width': None, - }), - ]), - 'name': 'Chill Hits', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX4WYpdgoIcn6', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX4WYpdgoIcn6', - }), - dict({ - 'collaborative': False, - 'description': 'Mitski is on top of the Hottest 50!', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000037ac0d0713aa7b5a4fb38e273', - 'width': None, - }), - ]), - 'name': 'Today’s Top Hits', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DXcBWIGoYBM5M', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXcBWIGoYBM5M', - }), - dict({ - 'collaborative': False, - 'description': 'Warm instrumental versions of your favorite Christmas songs.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWU0r6G8OGirN', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003c3196f5150c18abb9ce7db75', - 'width': None, - }), - ]), - 'name': 'Cozy Christmas Jazz', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWU0r6G8OGirN', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWU0r6G8OGirN', - }), - dict({ - 'collaborative': False, - 'description': 'De meest gestreamde tracks van 2023 in Nederland. Cover: Maan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWZ58KqXkQf1S', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003f1590ccbee8af2a83ef32d73', - 'width': None, - }), - ]), - 'name': 'Top Tracks 2023 NL', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWZ58KqXkQf1S', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWZ58KqXkQf1S', - }), - dict({ - 'collaborative': False, - 'description': 'De beste en nieuwste dance hits. Cover: David Guetta & Kim Petras', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWTwCImwcYjDL', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003c0aa04aa9a5a82b6471e3d01', - 'width': None, - }), - ]), - 'name': '360 Dance', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWTwCImwcYjDL', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWTwCImwcYjDL', - }), - dict({ - 'collaborative': False, - 'description': 'De nieuwste releases elke vrijdag op Spotify! Cover: SERA, YouNotUs', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DXb5BKLTO7ULa', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000038cd883983a21f8d91b6324c0', - 'width': None, - }), - ]), - 'name': 'New Music Friday NL', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DXb5BKLTO7ULa', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DXb5BKLTO7ULa', - }), - dict({ - 'collaborative': False, - 'description': 'Motion, fissa & good vibes! Cover: J Balvin', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWXHyhanaNMoy', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d469349e5325224b9f84c79c', - 'width': None, - }), - ]), - 'name': 'La Vida Loca', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWXHyhanaNMoy', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWXHyhanaNMoy', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWWMOmoXKqHTD', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003ffa215be1a4c64e3cbf59d1e', - 'width': None, - }), - ]), - 'name': 'Songs to Sing in the Car', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWWMOmoXKqHTD', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DWWMOmoXKqHTD', - }), - dict({ - 'collaborative': False, - 'description': 'Peaceful piano to help you slow down, breathe, and relax. ', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4sWSpwq3LiO', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000003d073e656e546e43bc387ad79', - 'width': None, - }), - ]), - 'name': 'Peaceful Piano', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX4sWSpwq3LiO', - 'public': None, - 'uri': 'spotify:playlist:37i9dQZF1DX4sWSpwq3LiO', - }), - ]) -# --- -# name: test_get_following_artists - list([ - dict({ - 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e', - 'width': 160, - }), - ]), - 'name': 'Pegboard Nerds', - 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', - }), - dict({ - 'artist_id': '0p4nmQO2msCgU4IF37Wi3j', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb5c3349ddba6b8e064c1bab16', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051745c3349ddba6b8e064c1bab16', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1785c3349ddba6b8e064c1bab16', - 'width': 160, - }), - ]), - 'name': 'Avril Lavigne', - 'uri': 'spotify:artist:0p4nmQO2msCgU4IF37Wi3j', - }), - dict({ - 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b60ba4ab40815357c713dc2', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051747b60ba4ab40815357c713dc2', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1787b60ba4ab40815357c713dc2', - 'width': 160, - }), - ]), - 'name': 'Beast In Black', - 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', - }), - dict({ - 'artist_id': '0uBVyPbLZRDNEBiA4fZUlp', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf6cb4b106fe956c95d243a1f', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f6cb4b106fe956c95d243a1f', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f6cb4b106fe956c95d243a1f', - 'width': 160, - }), - ]), - 'name': 'Froukje', - 'uri': 'spotify:artist:0uBVyPbLZRDNEBiA4fZUlp', - }), - dict({ - 'artist_id': '10GT4yz8c6xjjnPGtGPI1l', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebb0debcb6b7015f1a7a1bfaa0', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174b0debcb6b7015f1a7a1bfaa0', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178b0debcb6b7015f1a7a1bfaa0', - 'width': 160, - }), - ]), - 'name': 'Franc Moody', - 'uri': 'spotify:artist:10GT4yz8c6xjjnPGtGPI1l', - }), - dict({ - 'artist_id': '17IDrizGUiveZm4P77Kkio', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb712d292bff8648aa62c2dad4', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174712d292bff8648aa62c2dad4', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178712d292bff8648aa62c2dad4', - 'width': 160, - }), - ]), - 'name': 'Icarus', - 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', - }), - dict({ - 'artist_id': '1A6zWJwn4XmdZZgob3wYPM', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb5022973615b58f2756ab3ff3', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051745022973615b58f2756ab3ff3', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1785022973615b58f2756ab3ff3', - 'width': 160, - }), - ]), - 'name': 'Blaudzun', - 'uri': 'spotify:artist:1A6zWJwn4XmdZZgob3wYPM', - }), - dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebbfa0f25d3d775e4892e0add3', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174bfa0f25d3d775e4892e0add3', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178bfa0f25d3d775e4892e0add3', - 'width': 160, - }), - ]), - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', - }), - dict({ - 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf150017ca69c8793503c2d4f', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f150017ca69c8793503c2d4f', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f150017ca69c8793503c2d4f', - 'width': 160, - }), - ]), - 'name': 'David Guetta', - 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', - }), - dict({ - 'artist_id': '1DbXVMdQqNejIYLU2xsIMi', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8', - 'width': 160, - }), - ]), - 'name': 'Ryan Ritual', - 'uri': 'spotify:artist:1DbXVMdQqNejIYLU2xsIMi', - }), - dict({ - 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebd263e0042b36fd357c8c7cdb', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174d263e0042b36fd357c8c7cdb', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178d263e0042b36fd357c8c7cdb', - 'width': 160, - }), - ]), - 'name': 'The Kooks', - 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', - }), - dict({ - 'artist_id': '1LOB7jTeEV14pHai6EXSzF', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebc6b0d99b1a736712a1653d6a', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174c6b0d99b1a736712a1653d6a', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178c6b0d99b1a736712a1653d6a', - 'width': 160, - }), - ]), - 'name': 'Cash Cash', - 'uri': 'spotify:artist:1LOB7jTeEV14pHai6EXSzF', - }), - dict({ - 'artist_id': '1QOHbhVRpDoNtRkz79si6b', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb403bad456309541432feb79b', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174403bad456309541432feb79b', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178403bad456309541432feb79b', - 'width': 160, - }), - ]), - 'name': 'Karen Harding', - 'uri': 'spotify:artist:1QOHbhVRpDoNtRkz79si6b', - }), - dict({ - 'artist_id': '1eK59pkylGGka9wRUEKVXt', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b6e73b581c807a49a146eb6', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051747b6e73b581c807a49a146eb6', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1787b6e73b581c807a49a146eb6', - 'width': 160, - }), - ]), - 'name': 'Chris Brochu', - 'uri': 'spotify:artist:1eK59pkylGGka9wRUEKVXt', - }), - dict({ - 'artist_id': '1ho3p0XM4jDk7n9NUOekbp', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736d5999b6e7e2dd2fd19f88f8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026d5999b6e7e2dd2fd19f88f8', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516d5999b6e7e2dd2fd19f88f8', - 'width': 64, - }), - ]), - 'name': 'Inthelittlewood', - 'uri': 'spotify:artist:1ho3p0XM4jDk7n9NUOekbp', - }), - dict({ - 'artist_id': '1kDGbuxWknIKx4FlgWxiSp', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57', - 'width': 160, - }), - ]), - 'name': 'Nothing But Thieves', - 'uri': 'spotify:artist:1kDGbuxWknIKx4FlgWxiSp', - }), - dict({ - 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113', - 'width': 160, - }), - ]), - 'name': 'Avicii', - 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', - }), - dict({ - 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebffa0888ff64a510cbf665855', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ffa0888ff64a510cbf665855', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ffa0888ff64a510cbf665855', - 'width': 160, - }), - ]), - 'name': 'MK', - 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', - }), - dict({ - 'artist_id': '23fqKkggKUBHNkbKtXEls4', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebe5ea1aa1404629c12ad86658', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174e5ea1aa1404629c12ad86658', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178e5ea1aa1404629c12ad86658', - 'width': 160, - }), - ]), - 'name': 'Kygo', - 'uri': 'spotify:artist:23fqKkggKUBHNkbKtXEls4', - }), - dict({ - 'artist_id': '2NZMqINcyfepvLxQJdzcZk', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb96b6d4d0d0f43bd50216f22e', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab6761610000517496b6d4d0d0f43bd50216f22e', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f17896b6d4d0d0f43bd50216f22e', - 'width': 160, - }), - ]), - 'name': 'Lensko', - 'uri': 'spotify:artist:2NZMqINcyfepvLxQJdzcZk', - }), - ]) -# --- -# name: test_get_new_releases - list([ - dict({ - 'album_id': '5SGtrmYbIo0Dsg4kJ4qjM6', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4gzpq5DPGxSnKTe4SA8HAU', - 'name': 'Coldplay', - 'uri': 'spotify:artist:4gzpq5DPGxSnKTe4SA8HAU', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0209ba52a5116e0c3e8461f58b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485109ba52a5116e0c3e8461f58b', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27309ba52a5116e0c3e8461f58b', - 'width': 640, - }), - ]), - 'name': 'Moon Music', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 10, - 'uri': 'spotify:album:5SGtrmYbIo0Dsg4kJ4qjM6', - }), - dict({ - 'album_id': '713lZ7AF55fEFSQgcttj9y', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4U9nsRTH2mr9L4UXEWqG5e', - 'name': 'Bente', - 'uri': 'spotify:artist:4U9nsRTH2mr9L4UXEWqG5e', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ab9953b1d18f8233f6b26027', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ab9953b1d18f8233f6b26027', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ab9953b1d18f8233f6b26027', - 'width': 640, - }), - ]), - 'name': 'drift', - 'release_date': '2024-10-03', - 'release_date_precision': , - 'total_tracks': 14, - 'uri': 'spotify:album:713lZ7AF55fEFSQgcttj9y', - }), - dict({ - 'album_id': '49kVZFZguyqvfxt0HklIhg', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7J41Q5hdwuBgyVo7zGhPhO', - 'name': 'MEROL', - 'uri': 'spotify:artist:7J41Q5hdwuBgyVo7zGhPhO', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ef565801d3a62e7da27d8d0a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ef565801d3a62e7da27d8d0a', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ef565801d3a62e7da27d8d0a', - 'width': 640, - }), - ]), - 'name': 'Naar De Haaien & Weer Terug', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 15, - 'uri': 'spotify:album:49kVZFZguyqvfxt0HklIhg', - }), - dict({ - 'album_id': '5M84TQMlBTgqPZej6KCvVd', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '30mNTnmvPn3HwXA5dW1Iza', - 'name': 'Racoon', - 'uri': 'spotify:artist:30mNTnmvPn3HwXA5dW1Iza', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02527a4f51021439a52c266259', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851527a4f51021439a52c266259', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273527a4f51021439a52c266259', - 'width': 640, - }), - ]), - 'name': 'It Is What It Is', - 'release_date': '2024-10-03', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:5M84TQMlBTgqPZej6KCvVd', - }), - dict({ - 'album_id': '6mHNMtHrXIdUWWuZD9njsG', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '3qnGvpP8Yth1AqSBMqON5x', - 'name': 'Leon Bridges', - 'uri': 'spotify:artist:3qnGvpP8Yth1AqSBMqON5x', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b7ac31cd8650b673ed24ea71', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b7ac31cd8650b673ed24ea71', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b7ac31cd8650b673ed24ea71', - 'width': 640, - }), - ]), - 'name': 'Leon', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 13, - 'uri': 'spotify:album:6mHNMtHrXIdUWWuZD9njsG', - }), - dict({ - 'album_id': '1wOiuWSlK5pQdpQP8VgH6F', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6styCzc1Ej4NxISL0LiigM', - 'name': 'The Smile', - 'uri': 'spotify:artist:6styCzc1Ej4NxISL0LiigM', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026613d3127feee7ee948412f9', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516613d3127feee7ee948412f9', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736613d3127feee7ee948412f9', - 'width': 640, - }), - ]), - 'name': 'Cutouts', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 10, - 'uri': 'spotify:album:1wOiuWSlK5pQdpQP8VgH6F', - }), - dict({ - 'album_id': '1Dds4p0qcMEnSE7jlMEt8n', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4EzkuveR9pLvDVFNx6foYD', - 'name': 'James Bay', - 'uri': 'spotify:artist:4EzkuveR9pLvDVFNx6foYD', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e029ee701eef621f69f3c2967ed', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048519ee701eef621f69f3c2967ed', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2739ee701eef621f69f3c2967ed', - 'width': 640, - }), - ]), - 'name': 'Changes All The Time', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:1Dds4p0qcMEnSE7jlMEt8n', - }), - dict({ - 'album_id': '7LJBpaTfUgMflZOz3JmMBv', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2qXV33vUIb0D4YygTg7FCT', - 'name': 'Genna', - 'uri': 'spotify:artist:2qXV33vUIb0D4YygTg7FCT', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b5d14d3f2fd36368daaf2da5', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b5d14d3f2fd36368daaf2da5', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b5d14d3f2fd36368daaf2da5', - 'width': 640, - }), - ]), - 'name': '7 Stappen', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 7, - 'uri': 'spotify:album:7LJBpaTfUgMflZOz3JmMBv', - }), - dict({ - 'album_id': '4Kws98pwkccx24c0zLewXG', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7nfwBKWMnPY7FJZQwh1wq8', - 'name': 'Stenfert', - 'uri': 'spotify:artist:7nfwBKWMnPY7FJZQwh1wq8', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ddb058c1f361f94e8a89945d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ddb058c1f361f94e8a89945d', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ddb058c1f361f94e8a89945d', - 'width': 640, - }), - ]), - 'name': 'Zeezout', - 'release_date': '2024-10-03', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:4Kws98pwkccx24c0zLewXG', - }), - dict({ - 'album_id': '6ixQBPjQSxlp1ITpzyzTHj', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5mwcMzXAn2fReGFjXeGGsJ', - 'name': 'Plume', - 'uri': 'spotify:artist:5mwcMzXAn2fReGFjXeGGsJ', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b612c27f3630e523d3ae5222', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b612c27f3630e523d3ae5222', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b612c27f3630e523d3ae5222', - 'width': 640, - }), - ]), - 'name': 'The Rules', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:6ixQBPjQSxlp1ITpzyzTHj', - }), - dict({ - 'album_id': '7swV2ssDdlKc89h1DxUNh7', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '37M5pPGs6V1fchFJSgCguX', - 'name': 'FINNEAS', - 'uri': 'spotify:artist:37M5pPGs6V1fchFJSgCguX', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024db4ce3fe9ed73fb7bc79b4a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514db4ce3fe9ed73fb7bc79b4a', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734db4ce3fe9ed73fb7bc79b4a', - 'width': 640, - }), - ]), - 'name': "For Cryin' Out Loud!", - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 10, - 'uri': 'spotify:album:7swV2ssDdlKc89h1DxUNh7', - }), - dict({ - 'album_id': '4c7fP0tUymaZcrEFIeIeZc', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4aEnNH9PuU1HF3TsZTru54', - 'name': 'Caribou', - 'uri': 'spotify:artist:4aEnNH9PuU1HF3TsZTru54', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02959bd39a899174acc5788b32', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851959bd39a899174acc5788b32', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273959bd39a899174acc5788b32', - 'width': 640, - }), - ]), - 'name': 'Honey', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:4c7fP0tUymaZcrEFIeIeZc', - }), - dict({ - 'album_id': '5gpwMpxd66j2WAmGcyiWXQ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4IS4EyXNmiI2w5SRCjMtEF', - 'name': 'Kendji Girac', - 'uri': 'spotify:artist:4IS4EyXNmiI2w5SRCjMtEF', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024f89a971bf651f14622c96e6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514f89a971bf651f14622c96e6', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734f89a971bf651f14622c96e6', - 'width': 640, - }), - ]), - 'name': 'Vivre...', - 'release_date': '2024-10-03', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:5gpwMpxd66j2WAmGcyiWXQ', - }), - dict({ - 'album_id': '6yvKcQNyd09wYCCp8O8mNB', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0oK5D6uPhGu4Jk2dbZfodU', - 'name': 'Thee Sacred Souls', - 'uri': 'spotify:artist:0oK5D6uPhGu4Jk2dbZfodU', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b97ef79f12cc9a0d35975650', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b97ef79f12cc9a0d35975650', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b97ef79f12cc9a0d35975650', - 'width': 640, - }), - ]), - 'name': 'Got a Story to Tell', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:6yvKcQNyd09wYCCp8O8mNB', - }), - dict({ - 'album_id': '6eKdAMXNBlXNtPy7OdBL50', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1HY2Jd0NmPuamShAr6KMms', - 'name': 'Lady Gaga', - 'uri': 'spotify:artist:1HY2Jd0NmPuamShAr6KMms', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028c6bfaa9549f8438bcafb668', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518c6bfaa9549f8438bcafb668', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738c6bfaa9549f8438bcafb668', - 'width': 640, - }), - ]), - 'name': 'Harlequin', - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 13, - 'uri': 'spotify:album:6eKdAMXNBlXNtPy7OdBL50', - }), - dict({ - 'album_id': '2UZ05NpzJ76d06VBQrKWtv', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6OQggpm01CmAB717TKtDCr', - 'name': 'Dopebwoy', - 'uri': 'spotify:artist:6OQggpm01CmAB717TKtDCr', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e025c1f6dec99d4f4982963296f', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048515c1f6dec99d4f4982963296f', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2735c1f6dec99d4f4982963296f', - 'width': 640, - }), - ]), - 'name': 'Koude Kermis', - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 15, - 'uri': 'spotify:album:2UZ05NpzJ76d06VBQrKWtv', - }), - dict({ - 'album_id': '2Yfh7AQ5WbJFv6RwIAbJck', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6OG9fZ1LKXyL0hShRmmnq1', - 'name': 'Davina Michelle', - 'uri': 'spotify:artist:6OG9fZ1LKXyL0hShRmmnq1', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02aab04c8651437b6d474d9356', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851aab04c8651437b6d474d9356', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273aab04c8651437b6d474d9356', - 'width': 640, - }), - ]), - 'name': 'Higher', - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 13, - 'uri': 'spotify:album:2Yfh7AQ5WbJFv6RwIAbJck', - }), - dict({ - 'album_id': '0wMC6I2G3sKvhcsjn8N1Kd', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5m1cLmgZIfEYPLejhLFR10', - 'name': 'Fresku', - 'uri': 'spotify:artist:5m1cLmgZIfEYPLejhLFR10', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02bb80524c82fb9a2605494293', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851bb80524c82fb9a2605494293', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273bb80524c82fb9a2605494293', - 'width': 640, - }), - ]), - 'name': 'Leren Leven', - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 30, - 'uri': 'spotify:album:0wMC6I2G3sKvhcsjn8N1Kd', - }), - dict({ - 'album_id': '2ICkFYDtOYuiOC41VAy7qi', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1hqxH66i1ZwEBAkzORVRPW', - 'name': 'Berre', - 'uri': 'spotify:artist:1hqxH66i1ZwEBAkzORVRPW', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02c89f084086fef78ac2136f5d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851c89f084086fef78ac2136f5d', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273c89f084086fef78ac2136f5d', - 'width': 640, - }), - ]), - 'name': "I'll Call You When I'm Home", - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:2ICkFYDtOYuiOC41VAy7qi', - }), - dict({ - 'album_id': '1cVpXZnVWHTDUuY8kW6x8M', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0fTSzq9jAh4c36UVb4V7CB', - 'name': 'Alex Warren', - 'uri': 'spotify:artist:0fTSzq9jAh4c36UVb4V7CB', - }), - ]), - 'images': list([ - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026a794c49d6df89ec45d5b925', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516a794c49d6df89ec45d5b925', - 'width': 64, - }), - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736a794c49d6df89ec45d5b925', - 'width': 640, - }), - ]), - 'name': "You'll Be Alright, Kid (Chapter 1)", - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 10, - 'uri': 'spotify:album:1cVpXZnVWHTDUuY8kW6x8M', - }), - ]) -# --- -# name: test_get_playback_state[playback_1.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/collection/tracks', - }), - 'href': 'https://api.spotify.com/v1/me/tracks', - 'uri': 'spotify:user:1112264649:collection', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'DESKTOP-BKC5SIK', - 'supports_volume': True, - 'volume_percent': 69, - }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '1iasbpTobDPa5BmsK0Rz1f', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', - 'name': 'Machinae Supremacy', - 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722', - 'width': 64, - }), - ]), - 'name': 'WARRIORS, Pt. 1 (Final Stage)', - 'release_date': '2023-10-20', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1iasbpTobDPa5BmsK0Rz1f', - }), - 'artists': list([ - dict({ - 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', - 'name': 'Machinae Supremacy', - 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', - }), - ]), - 'disc_number': 1, - 'duration_ms': 268525, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv', - }), - 'href': 'https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv', - 'is_local': False, - 'name': 'WARRIORS, Pt. 1 (Final Stage)', - 'track_id': '1FyXbzOlq3dkxaB6iRsETv', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:1FyXbzOlq3dkxaB6iRsETv', - }), - 'progress_ms': 225564, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_2.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm', - }), - 'href': 'https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm', - 'uri': 'spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': 'a19f7a03a25aff3e43f457a328a8ba67a8c44789', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Master Bathroom Speaker', - 'supports_volume': True, - 'volume_percent': 25, - }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '3nUNxSh2szhmN7iifAKv5i', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', - 'name': 'Rush', - 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983', - 'width': 64, - }), - ]), - 'name': 'Permanent Waves', - 'release_date': '1980-01-01', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:3nUNxSh2szhmN7iifAKv5i', - }), - 'artists': list([ - dict({ - 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', - 'name': 'Rush', - 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', - }), - ]), - 'disc_number': 1, - 'duration_ms': 296466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p', - }), - 'href': 'https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p', - 'is_local': False, - 'name': 'The Spirit Of Radio', - 'track_id': '4e9hUiLsN4mx61ARosFi7p', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4e9hUiLsN4mx61ARosFi7p', - }), - 'progress_ms': 249367, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_3.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/collection/tracks', - }), - 'href': 'https://api.spotify.com/v1/me/tracks', - 'uri': 'spotify:user:1112264649:collection', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': None, - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': True, - 'name': 'Sonos Roam SL', - 'supports_volume': True, - 'volume_percent': 34, - }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '3qCsGHHWG6t9izvmsE47jr', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6s5ubAp65wXoTZefE01RNR', - 'name': 'Joost', - 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c', - 'width': 64, - }), - ]), - 'name': 'Ome Robert', - 'release_date': '2018-04-26', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3qCsGHHWG6t9izvmsE47jr', - }), - 'artists': list([ - dict({ - 'artist_id': '6s5ubAp65wXoTZefE01RNR', - 'name': 'Joost', - 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', - }), - ]), - 'disc_number': 1, - 'duration_ms': 152500, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z', - }), - 'href': 'https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z', - 'is_local': False, - 'name': 'Ome Robert', - 'track_id': '3TE49HXyoNczZk2IBhP87z', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:3TE49HXyoNczZk2IBhP87z', - }), - 'progress_ms': 7919, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_4.json] - dict({ - 'context': None, - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': 'aee274e4bbe6b44cf3b22ad3b68eca3a6954a701', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Joost’s MacBook Pro', - 'supports_volume': True, - 'volume_percent': 67, - }), - 'is_playing': True, - 'item': None, - 'progress_ms': 22215, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_audiobook_1.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'currently_playing_type': 'episode', - 'device': dict({ - 'device_id': '9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Nothing phone (1)', - 'supports_volume': False, - 'volume_percent': 100, - }), - 'is_playing': True, - 'item': dict({ - 'description': '', - 'duration_ms': 249652, - 'episode_id': '3NW4BmIOG0qzQZgtLgsydR', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'href': 'https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'name': 'Track 1', - 'release_date': '0000', - 'release_date_precision': , - 'show': dict({ - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink -

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

-

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

-

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

-

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

-

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'name': 'De nomade', - 'publisher': 'Anya Niewierra', - 'show_id': '58cFIY8IT7yGqR3kHnKqzV', - 'total_episodes': None, - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'type': , - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', - }), - 'progress_ms': 15611, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_episode_1.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', - }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', - }), - 'currently_playing_type': 'episode', - 'device': dict({ - 'device_id': None, - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': True, - 'name': 'Sonos Roam SL', - 'supports_volume': True, - 'volume_percent': 46, - }), - 'is_playing': True, - 'item': dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3690161, - 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', - }), - 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'My Squirrel Has Brain Damage - Safety Third 119', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'show': dict({ - 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', - }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Safety Third', - 'publisher': 'Safety Third ', - 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 120, - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', - }), - 'type': , - 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', - }), - 'progress_ms': 5410, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playlist[playlist_1.json] - dict({ - 'collaborative': False, - 'description': 'A playlist for testing pourposes', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3cEYpjA9oz9GiPac4AsH4n', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706c0000da848d0ce13d55f634e290f744ba', - 'width': None, - }), - ]), - 'name': 'Spotify Web API Testing playlist', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'JMPerez²', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'object_type': 'user', - 'owner_id': 'jmperezperez', - 'uri': 'spotify:user:jmperezperez', - }), - 'playlist_id': '3cEYpjA9oz9GiPac4AsH4n', - 'public': True, - 'tracks': dict({ - 'items': list([ - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2pANdqPvxInB0YvcDiw4ko', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', - 'width': 64, - }), - ]), - 'name': 'Progressive Psy Trance Picks Vol.8', - 'release_date': '2012-04-02', - 'release_date_precision': , - 'total_tracks': 20, - 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', - }), - 'artists': list([ - dict({ - 'artist_id': '6eSdhw46riw2OUHgMwR8B5', - 'name': 'Odiseo', - 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 376000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', - }), - 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', - 'is_local': False, - 'name': 'Api', - 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '6nlfkk5GoXRL1nktlATNsy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', - 'width': 64, - }), - ]), - 'name': 'Wellness & Dreaming Source', - 'release_date': '2015-01-09', - 'release_date_precision': , - 'total_tracks': 25, - 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', - }), - 'artists': list([ - dict({ - 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', - 'name': 'Vlasta Marek', - 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 730066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', - }), - 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', - 'is_local': False, - 'name': 'Is', - 'track_id': '5o3jMYOSbaVz3tkgwhELSV', - 'track_number': 21, - 'type': , - 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', - 'width': 64, - }), - ]), - 'name': 'This Is Happening', - 'release_date': '2010-05-17', - 'release_date_precision': , - 'total_tracks': 9, - 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', - }), - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 401440, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', - 'is_local': False, - 'name': 'All I Want', - 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2usKFntxa98WHMcyW6xJBz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', - 'width': 64, - }), - ]), - 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', - 'release_date': '2011-04-01', - 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', - }), - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'disc_number': 1, - 'duration_ms': 358760, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', - }), - 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', - 'is_local': False, - 'name': 'Endpoints', - 'track_id': '6hvFrZNocdt2FcKGCSY5NI', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '0ivM6kSawaug0j3tZVusG2', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', - 'width': 64, - }), - ]), - 'name': 'All The Best (Spanish Version)', - 'release_date': '2007-01-01', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', - }), - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'disc_number': 1, - 'duration_ms': 176093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', - }), - 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', - 'is_local': False, - 'name': 'You Are So Beautiful', - 'track_id': '2E2znCPaS8anQe21GLxcvJ', - 'track_number': 18, - 'type': , - 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', - }), - }), - ]), - }), - 'uri': 'spotify:playlist:3cEYpjA9oz9GiPac4AsH4n', - }) -# --- -# name: test_get_playlist[playlist_2.json] - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af', - 'width': None, - }), - ]), - 'name': 'Starred', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'chadandcaren', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/chadandcaren', - }), - 'href': 'https://api.spotify.com/v1/users/chadandcaren', - 'object_type': 'user', - 'owner_id': 'chadandcaren', - 'uri': 'spotify:user:chadandcaren', - }), - 'playlist_id': '3toMXYM91T55pKzuysH5Ph', - 'public': True, - 'tracks': dict({ - 'items': list([ - dict({ - 'added_at': datetime.datetime(2013, 1, 19, 22, 16, 8, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/chadandcaren', - }), - 'href': 'https://api.spotify.com/v1/users/chadandcaren', - 'uri': 'spotify:user:chadandcaren', - 'user_id': 'chadandcaren', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '3KVfMVtOmoVCgihLE4HoBr', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', - 'name': 'Ingrid Michaelson', - 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919', - 'width': 64, - }), - ]), - 'name': 'Be OK', - 'release_date': '2008-01-01', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:3KVfMVtOmoVCgihLE4HoBr', - }), - 'artists': list([ - dict({ - 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', - 'name': 'Ingrid Michaelson', - 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', - }), - ]), - 'disc_number': 1, - 'duration_ms': 148706, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP', - }), - 'href': 'https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP', - 'is_local': False, - 'name': 'You and I', - 'track_id': '4oeRfmp9XpKWym6YD1WvBP', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4oeRfmp9XpKWym6YD1WvBP', - }), - }), - ]), - }), - 'uri': 'spotify:playlist:3toMXYM91T55pKzuysH5Ph', - }) -# --- -# name: test_get_playlist[playlist_3.json] - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': None, - }), - ]), - 'name': 'Pain', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', - 'public': True, - 'tracks': dict({ - 'items': list([ - dict({ - 'added_at': datetime.datetime(2024, 5, 16, 20, 46, 24, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '5iuJo58XqIENkyviBJ4dil', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6DDZJCwSnNF361mUwPEm4G', - 'name': 'Saint Nomad', - 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8', - 'width': 64, - }), - ]), - 'name': 'Nothing To Lose', - 'release_date': '2020-05-01', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5iuJo58XqIENkyviBJ4dil', - }), - 'artists': list([ - dict({ - 'artist_id': '6DDZJCwSnNF361mUwPEm4G', - 'name': 'Saint Nomad', - 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', - }), - ]), - 'disc_number': 1, - 'duration_ms': 164453, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw', - }), - 'href': 'https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw', - 'is_local': False, - 'name': 'Nothing To Lose', - 'track_id': '4bEdcyI0l4zX2Ut5m5Xrhw', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 5, 16, 20, 53, 44, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4stVgm9xx3cSNYddv8oTcL', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', - 'name': 'Doko', - 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de', - 'width': 64, - }), - ]), - 'name': 'Borrowed Time', - 'release_date': '2019-06-28', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4stVgm9xx3cSNYddv8oTcL', - }), - 'artists': list([ - dict({ - 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', - 'name': 'Doko', - 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', - }), - ]), - 'disc_number': 1, - 'duration_ms': 198022, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8', - }), - 'href': 'https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8', - 'is_local': False, - 'name': 'Borrowed Time', - 'track_id': '2kmZop34md5KWP4gn7Zuj8', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2kmZop34md5KWP4gn7Zuj8', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 11, 28, 10, 18, 44, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'description': 'HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group!\xa0Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.', - 'duration_ms': 2071013, - 'episode_id': '5ytYkag3JZJ3GP2uuFAEBe', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe', - }), - 'href': 'https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', - 'width': 64, - }), - ]), - 'name': 'Toni Delivers Semen', - 'release_date': '2024-11-27', - 'release_date_precision': , - 'show': dict({ - 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', - }), - 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', - 'width': 64, - }), - ]), - 'name': 'Toni and Ryan', - 'publisher': 'Toni Lodge and Ryan Jon', - 'show_id': '5OzkclFjD6iAjtAuo7aIYt', - 'total_episodes': 780, - 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', - }), - 'type': , - 'uri': 'spotify:episode:5ytYkag3JZJ3GP2uuFAEBe', - }), - }), - ]), - }), - 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', - }) -# --- -# name: test_get_playlist_cover_image - list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba', - 'width': None, - }), - ]) -# --- -# name: test_get_playlist_tracks - list([ - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2pANdqPvxInB0YvcDiw4ko', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', - 'width': 64, - }), - ]), - 'name': 'Progressive Psy Trance Picks Vol.8', - 'release_date': '2012-04-02', - 'release_date_precision': , - 'total_tracks': 20, - 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', - }), - 'artists': list([ - dict({ - 'artist_id': '6eSdhw46riw2OUHgMwR8B5', - 'name': 'Odiseo', - 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 376000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', - }), - 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', - 'is_local': False, - 'name': 'Api', - 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '6nlfkk5GoXRL1nktlATNsy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', - 'width': 64, - }), - ]), - 'name': 'Wellness & Dreaming Source', - 'release_date': '2015-01-09', - 'release_date_precision': , - 'total_tracks': 25, - 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', - }), - 'artists': list([ - dict({ - 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', - 'name': 'Vlasta Marek', - 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 730066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', - }), - 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', - 'is_local': False, - 'name': 'Is', - 'track_id': '5o3jMYOSbaVz3tkgwhELSV', - 'track_number': 21, - 'type': , - 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', - 'width': 64, - }), - ]), - 'name': 'This Is Happening', - 'release_date': '2010-05-17', - 'release_date_precision': , - 'total_tracks': 9, - 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', - }), - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 401440, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', - 'is_local': False, - 'name': 'All I Want', - 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2usKFntxa98WHMcyW6xJBz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', - 'width': 64, - }), - ]), - 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', - 'release_date': '2011-04-01', - 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', - }), - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'disc_number': 1, - 'duration_ms': 358760, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', - }), - 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', - 'is_local': False, - 'name': 'Endpoints', - 'track_id': '6hvFrZNocdt2FcKGCSY5NI', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', - }), - }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '0ivM6kSawaug0j3tZVusG2', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', - 'width': 64, - }), - ]), - 'name': 'All The Best (Spanish Version)', - 'release_date': '2007-01-01', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', - }), - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'disc_number': 1, - 'duration_ms': 176093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', - }), - 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', - 'is_local': False, - 'name': 'You Are So Beautiful', - 'track_id': '2E2znCPaS8anQe21GLxcvJ', - 'track_number': 18, - 'type': , - 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', - }), - }), - ]) -# --- -# name: test_get_playlists_for_user - list([ - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1CBGDKGM8kekBPfAG5jPZt', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd', - 'width': 60, - }), - ]), - 'name': 'Starred', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '1CBGDKGM8kekBPfAG5jPZt', - 'public': True, - 'uri': 'spotify:playlist:1CBGDKGM8kekBPfAG5jPZt', - }), - dict({ - 'collaborative': False, - 'description': 'A mish mash of a bunch of songs that you can maybe dance to. Curated by Nick Toumpelis. Photography by Nick Toumpelis. ', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3tT3E3Q4u5Xd0v3ySPLR1O', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84f8496493a06aec2c3eda1a42', - 'width': None, - }), - ]), - 'name': 'dance fusion', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Nick Toumpelis', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1226836970', - }), - 'href': 'https://api.spotify.com/v1/users/1226836970', - 'object_type': 'user', - 'owner_id': '1226836970', - 'uri': 'spotify:user:1226836970', - }), - 'playlist_id': '3tT3E3Q4u5Xd0v3ySPLR1O', - 'public': True, - 'uri': 'spotify:playlist:3tT3E3Q4u5Xd0v3ySPLR1O', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/41R1UENL6yUDiRR2riptb7', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e', - 'width': 60, - }), - ]), - 'name': 'covers and under covers', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '41R1UENL6yUDiRR2riptb7', - 'public': True, - 'uri': 'spotify:playlist:41R1UENL6yUDiRR2riptb7', - }), - dict({ - 'collaborative': False, - 'description': 'Bombastic tunes -- in some way or another', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6dSh5StaaE1XbIF5s7Lxng', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319', - 'width': 60, - }), - ]), - 'name': 'Fläskiga låtar', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '6dSh5StaaE1XbIF5s7Lxng', - 'public': True, - 'uri': 'spotify:playlist:6dSh5StaaE1XbIF5s7Lxng', - }), - dict({ - 'collaborative': False, - 'description': 'Migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6hBpet9cW4cVgn96xBJ5Ay', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319', - 'width': 60, - }), - ]), - 'name': 'migo1', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '6hBpet9cW4cVgn96xBJ5Ay', - 'public': True, - 'uri': 'spotify:playlist:6hBpet9cW4cVgn96xBJ5Ay', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/47s8Pj6MjV5UWYEaHIe9ZH', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62', - 'width': 60, - }), - ]), - 'name': 'Dance I Said', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Michelle Kadir', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/michellekadir', - }), - 'href': 'https://api.spotify.com/v1/users/michellekadir', - 'object_type': 'user', - 'owner_id': 'michellekadir', - 'uri': 'spotify:user:michellekadir', - }), - 'playlist_id': '47s8Pj6MjV5UWYEaHIe9ZH', - 'public': True, - 'uri': 'spotify:playlist:47s8Pj6MjV5UWYEaHIe9ZH', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/13XT3kKAKOuhKV1IdgQxzf', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670', - 'width': 60, - }), - ]), - 'name': 'Instrumental', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '13XT3kKAKOuhKV1IdgQxzf', - 'public': True, - 'uri': 'spotify:playlist:13XT3kKAKOuhKV1IdgQxzf', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/70lIZA6kTENcryaoGNIPaA', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d3c8ce1e6e072e0e70dfdf17', - 'width': None, - }), - ]), - 'name': 'Steve Via - The Story of Light', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '70lIZA6kTENcryaoGNIPaA', - 'public': True, - 'uri': 'spotify:playlist:70lIZA6kTENcryaoGNIPaA', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6FTrJV6xPwAxEGNsIDG5Uj', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38', - 'width': 60, - }), - ]), - 'name': 'Pulp Fiction (approximate)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '6FTrJV6xPwAxEGNsIDG5Uj', - 'public': True, - 'uri': 'spotify:playlist:6FTrJV6xPwAxEGNsIDG5Uj', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2tiFrJw4jgaQEDTGkNY4Lt', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e021d7f86bc0a6c0cab4503aa17', - 'width': None, - }), - ]), - 'name': 'friday', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '2tiFrJw4jgaQEDTGkNY4Lt', - 'public': True, - 'uri': 'spotify:playlist:2tiFrJw4jgaQEDTGkNY4Lt', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0EDdjGp3CRtWBWesrDv45e', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84046a80315ca7366b7e337a0f', - 'width': None, - }), - ]), - 'name': '07:42', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'robin', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/robbanrapp', - }), - 'href': 'https://api.spotify.com/v1/users/robbanrapp', - 'object_type': 'user', - 'owner_id': 'robbanrapp', - 'uri': 'spotify:user:robbanrapp', - }), - 'playlist_id': '0EDdjGp3CRtWBWesrDv45e', - 'public': True, - 'uri': 'spotify:playlist:0EDdjGp3CRtWBWesrDv45e', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/29e81WfoAsVIwEzXpSv2KT', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a', - 'width': 60, - }), - ]), - 'name': 'Top 100 Tracks of 2011', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Pitchfork', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/pitchfork', - }), - 'href': 'https://api.spotify.com/v1/users/pitchfork', - 'object_type': 'user', - 'owner_id': 'pitchfork', - 'uri': 'spotify:user:pitchfork', - }), - 'playlist_id': '29e81WfoAsVIwEzXpSv2KT', - 'public': True, - 'uri': 'spotify:playlist:29e81WfoAsVIwEzXpSv2KT', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6sjcAKwplYdvNVmXuVWqYK', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84c421935777d6aa97ca36f613', - 'width': None, - }), - ]), - 'name': 'Kanye West - The Samples', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Starfish & Coffee', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/125214440', - }), - 'href': 'https://api.spotify.com/v1/users/125214440', - 'object_type': 'user', - 'owner_id': '125214440', - 'uri': 'spotify:user:125214440', - }), - 'playlist_id': '6sjcAKwplYdvNVmXuVWqYK', - 'public': True, - 'uri': 'spotify:playlist:6sjcAKwplYdvNVmXuVWqYK', - }), - dict({ - 'collaborative': False, - 'description': 'The official Billboard Hot 100 features this week\'s most popular songs across all genres, ranked by radio airplay monitored by Nielsen BDS, download sales tracked by Nielsen SoundScan and streaming activity data provided by leading online music services. For more information go to Billboard.com.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6UeSakyzhiEt4NB3UAd6NQ', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da843bd5501a335b265807df34db', - 'width': None, - }), - ]), - 'name': 'Billboard Hot 100', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Billboard', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/billboard.com', - }), - 'href': 'https://api.spotify.com/v1/users/billboard.com', - 'object_type': 'user', - 'owner_id': 'billboard.com', - 'uri': 'spotify:user:billboard.com', - }), - 'playlist_id': '6UeSakyzhiEt4NB3UAd6NQ', - 'public': True, - 'uri': 'spotify:playlist:6UeSakyzhiEt4NB3UAd6NQ', - }), - dict({ - 'collaborative': False, - 'description': 'Ta det lugnt & koppla av till vårmysiga & behagliga låtar. Kärlekssånger, sköna hits, svenska klassiker, akustiska låtar & vackra ballader.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4tIypOcGSBi4GPlXbbNBmf', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84bd5af3266f629da301350735', - 'width': None, - }), - ]), - 'name': 'LUGNA LÅTAR 2025 🌼 lugn & mysig musik', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Filtr Sweden', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/sonymusicentertainment', - }), - 'href': 'https://api.spotify.com/v1/users/sonymusicentertainment', - 'object_type': 'user', - 'owner_id': 'sonymusicentertainment', - 'uri': 'spotify:user:sonymusicentertainment', - }), - 'playlist_id': '4tIypOcGSBi4GPlXbbNBmf', - 'public': True, - 'uri': 'spotify:playlist:4tIypOcGSBi4GPlXbbNBmf', - }), - dict({ - 'collaborative': False, - 'description': 'Sveriges största och bästa svenska klassiker, sånger och hits genom tiderna. Sommarhits och klassiska favoriter – svensk musik sommaren 2025.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/26uqIdWqPakRB3c6Lw8I7C', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416ee66851f6fc81d954cc240', - 'width': None, - }), - ]), - 'name': 'Svenska låtar & klassiker alla kan! 🇸🇪', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Filtr Sweden', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/sonymusicentertainment', - }), - 'href': 'https://api.spotify.com/v1/users/sonymusicentertainment', - 'object_type': 'user', - 'owner_id': 'sonymusicentertainment', - 'uri': 'spotify:user:sonymusicentertainment', - }), - 'playlist_id': '26uqIdWqPakRB3c6Lw8I7C', - 'public': True, - 'uri': 'spotify:playlist:26uqIdWqPakRB3c6Lw8I7C', - }), - dict({ - 'collaborative': False, - 'description': 'Världens bästa och mest tidlösa rockmusik i en mix av klassiska & nya rockhits från Judas Priest, Ozzy Osbourne, AC/DC, Scorpions, Bruce Springsteen med flera.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1sNULKBP0MR5SCDhoTUGT1', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da844a3cbf9b6b1eeb03701cfae4', - 'width': None, - }), - ]), - 'name': 'Rock Hits ⚡️', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Filtr Legacy Sweden', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/legacysweden', - }), - 'href': 'https://api.spotify.com/v1/users/legacysweden', - 'object_type': 'user', - 'owner_id': 'legacysweden', - 'uri': 'spotify:user:legacysweden', - }), - 'playlist_id': '1sNULKBP0MR5SCDhoTUGT1', - 'public': True, - 'uri': 'spotify:playlist:1sNULKBP0MR5SCDhoTUGT1', - }), - dict({ - 'collaborative': False, - 'description': 'Summer chill beach vibes playlist all genres 2000s - 2024.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4u4WSPyfvZ4RrpWWnmjIYY', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c59e76846e27ba7f51db46ae5', - 'width': None, - }), - ]), - 'name': 'Beach Vibes 🌴 Summertime Hits 2025', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Beach Vibes', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jhsizemore', - }), - 'href': 'https://api.spotify.com/v1/users/jhsizemore', - 'object_type': 'user', - 'owner_id': 'jhsizemore', - 'uri': 'spotify:user:jhsizemore', - }), - 'playlist_id': '4u4WSPyfvZ4RrpWWnmjIYY', - 'public': True, - 'uri': 'spotify:playlist:4u4WSPyfvZ4RrpWWnmjIYY', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1jiWNIRgT9whCQZMGDzsZU', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644', - 'width': 60, - }), - ]), - 'name': 'RS Playlist', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Rolling Stone', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/rsedit', - }), - 'href': 'https://api.spotify.com/v1/users/rsedit', - 'object_type': 'user', - 'owner_id': 'rsedit', - 'uri': 'spotify:user:rsedit', - }), - 'playlist_id': '1jiWNIRgT9whCQZMGDzsZU', - 'public': True, - 'uri': 'spotify:playlist:1jiWNIRgT9whCQZMGDzsZU', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7JbyZrk837zNSgRRzMZITA', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333', - 'width': 60, - }), - ]), - 'name': 'Eighties', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', - }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', - }), - 'playlist_id': '7JbyZrk837zNSgRRzMZITA', - 'public': True, - 'uri': 'spotify:playlist:7JbyZrk837zNSgRRzMZITA', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6bUIofrj5PWNIeb67DbUqf', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32', - 'width': 60, - }), - ]), - 'name': 'While You Work (@whileyouwork)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Eli Feghali', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/efeghali', - }), - 'href': 'https://api.spotify.com/v1/users/efeghali', - 'object_type': 'user', - 'owner_id': 'efeghali', - 'uri': 'spotify:user:efeghali', - }), - 'playlist_id': '6bUIofrj5PWNIeb67DbUqf', - 'public': True, - 'uri': 'spotify:playlist:6bUIofrj5PWNIeb67DbUqf', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/12G6dXVYRBSvVktGXrKK43', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c', - 'width': 60, - }), - ]), - 'name': "60's, 70's & similar", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'hammond', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/hammond', - }), - 'href': 'https://api.spotify.com/v1/users/hammond', - 'object_type': 'user', - 'owner_id': 'hammond', - 'uri': 'spotify:user:hammond', - }), - 'playlist_id': '12G6dXVYRBSvVktGXrKK43', - 'public': True, - 'uri': 'spotify:playlist:12G6dXVYRBSvVktGXrKK43', - }), - dict({ - 'collaborative': False, - 'description': 'Old version of official site.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4KQDdglJ7HGcqNozbJTlM3', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84bfff770712a44bacaf1abdf2', - 'width': None, - }), - ]), - 'name': '1000 Recordings to Hear Before You Die (Tom Moon): Album Index', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': "Ulysses' Classical", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/ulyssestone', - }), - 'href': 'https://api.spotify.com/v1/users/ulyssestone', - 'object_type': 'user', - 'owner_id': 'ulyssestone', - 'uri': 'spotify:user:ulyssestone', - }), - 'playlist_id': '4KQDdglJ7HGcqNozbJTlM3', - 'public': True, - 'uri': 'spotify:playlist:4KQDdglJ7HGcqNozbJTlM3', - }), - dict({ - 'collaborative': False, - 'description': "This soulful soundtrack is packed with groovy soul & funk with artists like Sam Cooke, The O'Jays, Leon Bridges, The Delfonics, Raphael Saadiq", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3Rc7qAgZf9f0vskwzFBMHL', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da846325e8713786c11f229cd64e', - 'width': None, - }), - ]), - 'name': 'Hipster Soul', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Filtr Legacy Sweden', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/legacysweden', - }), - 'href': 'https://api.spotify.com/v1/users/legacysweden', - 'object_type': 'user', - 'owner_id': 'legacysweden', - 'uri': 'spotify:user:legacysweden', - }), - 'playlist_id': '3Rc7qAgZf9f0vskwzFBMHL', - 'public': True, - 'uri': 'spotify:playlist:3Rc7qAgZf9f0vskwzFBMHL', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/284on3DVWeAxWkgVuzZKGt', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea', - 'width': 60, - }), - ]), - 'name': 'Bra skit', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Johan Liesén', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/liesen', - }), - 'href': 'https://api.spotify.com/v1/users/liesen', - 'object_type': 'user', - 'owner_id': 'liesen', - 'uri': 'spotify:user:liesen', - }), - 'playlist_id': '284on3DVWeAxWkgVuzZKGt', - 'public': True, - 'uri': 'spotify:playlist:284on3DVWeAxWkgVuzZKGt', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2nXRzr40InzvYIpCUfPhUP', - }), - 'images': list([ - ]), - 'name': 'Le testing', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '2nXRzr40InzvYIpCUfPhUP', - 'public': True, - 'uri': 'spotify:playlist:2nXRzr40InzvYIpCUfPhUP', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1l1OW7GMacBhrSlW1nlO1K', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b55861c30a8eb7ece3f02aee', - 'width': None, - }), - ]), - 'name': 'Awesome stuff', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '1l1OW7GMacBhrSlW1nlO1K', - 'public': True, - 'uri': 'spotify:playlist:1l1OW7GMacBhrSlW1nlO1K', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3Av66ptxyIoUggHF7kCBYX', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600', - 'width': 60, - }), - ]), - 'name': 'Söndagsregn 2010-10-24', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Jon Åslund', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jon', - }), - 'href': 'https://api.spotify.com/v1/users/jon', - 'object_type': 'user', - 'owner_id': 'jon', - 'uri': 'spotify:user:jon', - }), - 'playlist_id': '3Av66ptxyIoUggHF7kCBYX', - 'public': True, - 'uri': 'spotify:playlist:3Av66ptxyIoUggHF7kCBYX', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1s1281yGD8FWEwr5EC1L3i', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d', - 'width': 60, - }), - ]), - 'name': 'lördag 2010-12-11', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '1s1281yGD8FWEwr5EC1L3i', - 'public': True, - 'uri': 'spotify:playlist:1s1281yGD8FWEwr5EC1L3i', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0Xo8zJCdKx2vDyqk4o6p5C', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e0238e6fb5d88c75c017093ead3', - 'width': None, - }), - ]), - 'name': 'aaaa', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '0Xo8zJCdKx2vDyqk4o6p5C', - 'public': True, - 'uri': 'spotify:playlist:0Xo8zJCdKx2vDyqk4o6p5C', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/52foD1Dr3GjooeyKuygmVB', - }), - 'images': list([ - ]), - 'name': 'sfasdf', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '52foD1Dr3GjooeyKuygmVB', - 'public': True, - 'uri': 'spotify:playlist:52foD1Dr3GjooeyKuygmVB', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5reoN3Jf8wMl3NtikgVwaC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d', - 'width': 60, - }), - ]), - 'name': 'xmas', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5reoN3Jf8wMl3NtikgVwaC', - 'public': True, - 'uri': 'spotify:playlist:5reoN3Jf8wMl3NtikgVwaC', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/46DwpEgx5I7m1Nw3DaWvmV', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e0222ebe325082a93efb47fbad9', - 'width': None, - }), - ]), - 'name': 'offline synk 96k test', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '46DwpEgx5I7m1Nw3DaWvmV', - 'public': True, - 'uri': 'spotify:playlist:46DwpEgx5I7m1Nw3DaWvmV', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4buZT5WKFuhpgLI14UTj83', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e022a81ff34f4346f9da93b32ff', - 'width': None, - }), - ]), - 'name': 'mos', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4buZT5WKFuhpgLI14UTj83', - 'public': True, - 'uri': 'spotify:playlist:4buZT5WKFuhpgLI14UTj83', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7hKns5sIoqFjQHSAw3J2FF', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e022a81ff34f4346f9da93b32ff', - 'width': None, - }), - ]), - 'name': 'Little Bird', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7hKns5sIoqFjQHSAw3J2FF', - 'public': True, - 'uri': 'spotify:playlist:7hKns5sIoqFjQHSAw3J2FF', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/30qKa2i4EbDYhvbrMhxAw0', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710', - 'width': 60, - }), - ]), - 'name': 'this is the real shi', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '30qKa2i4EbDYhvbrMhxAw0', - 'public': True, - 'uri': 'spotify:playlist:30qKa2i4EbDYhvbrMhxAw0', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1ycFHQsEQy1LDyrPyZnGsG', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b7f5f38651637f858e69f479', - 'width': None, - }), - ]), - 'name': 'Dance', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '1ycFHQsEQy1LDyrPyZnGsG', - 'public': True, - 'uri': 'spotify:playlist:1ycFHQsEQy1LDyrPyZnGsG', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4LuBtXVct4y7fKW7TxvxmC', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02e2b82066b6e43424650667bd', - 'width': None, - }), - ]), - 'name': 'Hot Chip – Made in the Dark', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4LuBtXVct4y7fKW7TxvxmC', - 'public': True, - 'uri': 'spotify:playlist:4LuBtXVct4y7fKW7TxvxmC', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7q4Qgg67nbQxURn8CK6SxJ', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152', - 'width': 60, - }), - ]), - 'name': 'wutangtastic', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7q4Qgg67nbQxURn8CK6SxJ', - 'public': True, - 'uri': 'spotify:playlist:7q4Qgg67nbQxURn8CK6SxJ', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2EYCsp3uvM2GYuhSpnTWCL', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b', - 'width': 60, - }), - ]), - 'name': 'Poison (Remastered)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '2EYCsp3uvM2GYuhSpnTWCL', - 'public': True, - 'uri': 'spotify:playlist:2EYCsp3uvM2GYuhSpnTWCL', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6NPlWibAzOTmBl4vVTk3ce', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d1d06d587afd9243ba7a4cd8', - 'width': None, - }), - ]), - 'name': 'The Stone Roses – The Stone Roses', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '6NPlWibAzOTmBl4vVTk3ce', - 'public': True, - 'uri': 'spotify:playlist:6NPlWibAzOTmBl4vVTk3ce', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/32x6m7Tkh7stmqBUFMSJAg', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02730ed5d84d1d98c4d16ed47e', - 'width': None, - }), - ]), - 'name': 'Clark', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '32x6m7Tkh7stmqBUFMSJAg', - 'public': True, - 'uri': 'spotify:playlist:32x6m7Tkh7stmqBUFMSJAg', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0HQPDWVwnZOgAPKYpb22Oa', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02e8ea46a9ca2a56ea60f79152', - 'width': None, - }), - ]), - 'name': 'Down In Mexico', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '0HQPDWVwnZOgAPKYpb22Oa', - 'public': True, - 'uri': 'spotify:playlist:0HQPDWVwnZOgAPKYpb22Oa', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5uLiqU8UnZZMexCQ7aX5Av', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02e55e182ab6209a335a5cfacb', - 'width': None, - }), - ]), - 'name': 'spotify:user:jamesds:playlist:3MVqxQY9orcSGiTxsiCR9l', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5uLiqU8UnZZMexCQ7aX5Av', - 'public': True, - 'uri': 'spotify:playlist:5uLiqU8UnZZMexCQ7aX5Av', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1ntWxtDOHfK4e529dwSW19', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e020947f8018fbb25c91d7c7525', - 'width': None, - }), - ]), - 'name': 'Can-Can From Orpheus In The Underworld', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '1ntWxtDOHfK4e529dwSW19', - 'public': True, - 'uri': 'spotify:playlist:1ntWxtDOHfK4e529dwSW19', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4sPehjI8DC6jffWbu7N2J3', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a511f69870fa68e7ba78c099', - 'width': None, - }), - ]), - 'name': 'I Know You Want Me - Radio Edit Cold', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4sPehjI8DC6jffWbu7N2J3', - 'public': True, - 'uri': 'spotify:playlist:4sPehjI8DC6jffWbu7N2J3', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/47u5ZfJ5EhJp9SKfPnSVXl', - }), - 'images': list([ - ]), - 'name': '-', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '47u5ZfJ5EhJp9SKfPnSVXl', - 'public': True, - 'uri': 'spotify:playlist:47u5ZfJ5EhJp9SKfPnSVXl', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7jY1F22qFIEYzPEncPHdci', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a7d400b4159f7cfc0c9ccae7', - 'width': None, - }), - ]), - 'name': 'pineapple', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7jY1F22qFIEYzPEncPHdci', - 'public': True, - 'uri': 'spotify:playlist:7jY1F22qFIEYzPEncPHdci', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7ulnJeIjwdYXl9ZwmQWx1X', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c', - 'width': 60, - }), - ]), - 'name': 'Mostafa', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7ulnJeIjwdYXl9ZwmQWx1X', - 'public': True, - 'uri': 'spotify:playlist:7ulnJeIjwdYXl9ZwmQWx1X', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5wnFYJsx0Kh4aIRdfpyYK5', - }), - 'images': list([ - ]), - 'name': 'Bäst!', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5wnFYJsx0Kh4aIRdfpyYK5', - 'public': True, - 'uri': 'spotify:playlist:5wnFYJsx0Kh4aIRdfpyYK5', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3f1xEfhUOtolv3leBeLFjt', - }), - 'images': list([ - ]), - 'name': 'Träning', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3f1xEfhUOtolv3leBeLFjt', - 'public': True, - 'uri': 'spotify:playlist:3f1xEfhUOtolv3leBeLFjt', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3OMEP4nmg7BhxHiIkWG6QE', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02fec1b815bb3c50a64a90fd10', - 'width': None, - }), - ]), - 'name': 'vadim vs jigga', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3OMEP4nmg7BhxHiIkWG6QE', - 'public': True, - 'uri': 'spotify:playlist:3OMEP4nmg7BhxHiIkWG6QE', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6zVS95BwB86w9dTG7ItO6E', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e021a26e142095e1c7ba5015218', - 'width': None, - }), - ]), - 'name': 'A Man From Argentina', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '6zVS95BwB86w9dTG7ItO6E', - 'public': True, - 'uri': 'spotify:playlist:6zVS95BwB86w9dTG7ItO6E', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5ziOTIewSR9pfiLgd96ZTf', - }), - 'images': list([ - ]), - 'name': 'asd', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5ziOTIewSR9pfiLgd96ZTf', - 'public': True, - 'uri': 'spotify:playlist:5ziOTIewSR9pfiLgd96ZTf', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4JUoTcdkgYS8KSCBb5GPCe', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10', - 'width': 60, - }), - ]), - 'name': 'saturday', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4JUoTcdkgYS8KSCBb5GPCe', - 'public': True, - 'uri': 'spotify:playlist:4JUoTcdkgYS8KSCBb5GPCe', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2HXTsgk72ydbN7XLZpIK4R', - }), - 'images': list([ - ]), - 'name': 'sad', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '2HXTsgk72ydbN7XLZpIK4R', - 'public': True, - 'uri': 'spotify:playlist:2HXTsgk72ydbN7XLZpIK4R', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3gRWqRUsL6iokkSVsls518', - }), - 'images': list([ - ]), - 'name': 'Tom spellista', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3gRWqRUsL6iokkSVsls518', - 'public': True, - 'uri': 'spotify:playlist:3gRWqRUsL6iokkSVsls518', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6LFapHF3M01mY4mfeSckru', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e027f69c9b102d628bcfbf68ef8', - 'width': None, - }), - ]), - 'name': 'The Twilight Zone', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '6LFapHF3M01mY4mfeSckru', - 'public': True, - 'uri': 'spotify:playlist:6LFapHF3M01mY4mfeSckru', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4rau8iRVYD6wdzcJm2nkkI', - }), - 'images': list([ - ]), - 'name': 'iPod management', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4rau8iRVYD6wdzcJm2nkkI', - 'public': True, - 'uri': 'spotify:playlist:4rau8iRVYD6wdzcJm2nkkI', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3Tvcf1N8s4KL7etqpFxcIb', - }), - 'images': list([ - ]), - 'name': 'Test list', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3Tvcf1N8s4KL7etqpFxcIb', - 'public': True, - 'uri': 'spotify:playlist:3Tvcf1N8s4KL7etqpFxcIb', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6mNzfuOGykfZWdVU7ujqsk', - }), - 'images': list([ - ]), - 'name': 'Golden Years [Soundtrack Version]', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '6mNzfuOGykfZWdVU7ujqsk', - 'public': True, - 'uri': 'spotify:playlist:6mNzfuOGykfZWdVU7ujqsk', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3yUqbmlNjdqYDAviSwv0Gg', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392', - 'width': 60, - }), - ]), - 'name': 'BÄSTA LÅTARNA.exe', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3yUqbmlNjdqYDAviSwv0Gg', - 'public': True, - 'uri': 'spotify:playlist:3yUqbmlNjdqYDAviSwv0Gg', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/347Nk3N6F8QgQuaIEtcYVI', - }), - 'images': list([ - ]), - 'name': 'bajs', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '347Nk3N6F8QgQuaIEtcYVI', - 'public': True, - 'uri': 'spotify:playlist:347Nk3N6F8QgQuaIEtcYVI', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7uhdePGKRSRKm2QPaU0uSP', - }), - 'images': list([ - ]), - 'name': 'fredagar', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7uhdePGKRSRKm2QPaU0uSP', - 'public': True, - 'uri': 'spotify:playlist:7uhdePGKRSRKm2QPaU0uSP', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2i5sGOD9e96p2PpmkXYhDd', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a', - 'width': 60, - }), - ]), - 'name': 'bara warner', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '2i5sGOD9e96p2PpmkXYhDd', - 'public': True, - 'uri': 'spotify:playlist:2i5sGOD9e96p2PpmkXYhDd', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4CHtsKuGmoVYC2JCkHAMBs', - }), - 'images': list([ - ]), - 'name': 'Spelmusik', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '4CHtsKuGmoVYC2JCkHAMBs', - 'public': True, - 'uri': 'spotify:playlist:4CHtsKuGmoVYC2JCkHAMBs', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/371DcQ6pwFUdQPKUK6b9Gy', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555', - 'width': 60, - }), - ]), - 'name': 'Lör', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '371DcQ6pwFUdQPKUK6b9Gy', - 'public': True, - 'uri': 'spotify:playlist:371DcQ6pwFUdQPKUK6b9Gy', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/28ZHPQdzIWH5Gjo9xrcnof', - }), - 'images': list([ - ]), - 'name': 'Matchpuls Fotboll 2010-05-25 18:00 - Del 3', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '28ZHPQdzIWH5Gjo9xrcnof', - 'public': True, - 'uri': 'spotify:playlist:28ZHPQdzIWH5Gjo9xrcnof', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5Q5etdH0vcI1f6rs4wlMnp', - }), - 'images': list([ - ]), - 'name': 'Luddes lokala filer', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5Q5etdH0vcI1f6rs4wlMnp', - 'public': True, - 'uri': 'spotify:playlist:5Q5etdH0vcI1f6rs4wlMnp', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5vlB64Tw6f6nSq02csVPRB', - }), - 'images': list([ - ]), - 'name': 'The Beatles', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5vlB64Tw6f6nSq02csVPRB', - 'public': True, - 'uri': 'spotify:playlist:5vlB64Tw6f6nSq02csVPRB', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5DMhpzQw07N9CxiWxsnZbC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6', - 'width': 60, - }), - ]), - 'name': 'Sparkling Thursday', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '5DMhpzQw07N9CxiWxsnZbC', - 'public': True, - 'uri': 'spotify:playlist:5DMhpzQw07N9CxiWxsnZbC', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/40owuDG2UXz44jNpxcOnHy', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5', - 'width': 60, - }), - ]), - 'name': 'New playlist 2', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '40owuDG2UXz44jNpxcOnHy', - 'public': True, - 'uri': 'spotify:playlist:40owuDG2UXz44jNpxcOnHy', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0FcxzfoIXA6fpbP8rkqK5V', - }), - 'images': list([ - ]), - 'name': 'regnbågstisdag', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '0FcxzfoIXA6fpbP8rkqK5V', - 'public': True, - 'uri': 'spotify:playlist:0FcxzfoIXA6fpbP8rkqK5V', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3fsBfb9u0zXOK6JMEkyzEQ', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e0232416982d2ea14bc8c2fe852', - 'width': None, - }), - ]), - 'name': 'Irina', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3fsBfb9u0zXOK6JMEkyzEQ', - 'public': True, - 'uri': 'spotify:playlist:3fsBfb9u0zXOK6JMEkyzEQ', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/02alN0gNaeIYe0k5D7rsrl', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e', - 'width': 60, - }), - ]), - 'name': '010101', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '02alN0gNaeIYe0k5D7rsrl', - 'public': True, - 'uri': 'spotify:playlist:02alN0gNaeIYe0k5D7rsrl', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2Q8gqoLDDA4duY4OUFr7Wk', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc', - 'width': 60, - }), - ]), - 'name': 'que', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'nikke', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/nikke', - }), - 'href': 'https://api.spotify.com/v1/users/nikke', - 'object_type': 'user', - 'owner_id': 'nikke', - 'uri': 'spotify:user:nikke', - }), - 'playlist_id': '2Q8gqoLDDA4duY4OUFr7Wk', - 'public': True, - 'uri': 'spotify:playlist:2Q8gqoLDDA4duY4OUFr7Wk', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3EkXOXsTGiDP5VKKisVWy0', - }), - 'images': list([ - ]), - 'name': 'Anderssons local files', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '3EkXOXsTGiDP5VKKisVWy0', - 'public': True, - 'uri': 'spotify:playlist:3EkXOXsTGiDP5VKKisVWy0', - }), - dict({ - 'collaborative': False, - 'description': "Hello America. Spotify here. It’s great to know that so many of our US friends are excited to use Spotify. Our staff have made you this playlist as a way of saying 'hey, good to see you!'", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0yj2GcyN8GkoJ1EZ9ugyl1', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b', - 'width': 60, - }), - ]), - 'name': 'Hello America. Spotify here.', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '0yj2GcyN8GkoJ1EZ9ugyl1', - 'public': True, - 'uri': 'spotify:playlist:0yj2GcyN8GkoJ1EZ9ugyl1', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7ryTdnz3hVBC87NwIlNaEh', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87', - 'width': 60, - }), - ]), - 'name': 'VOXPOP - by ylla', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Ylla Von Malmborg', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/ylla', - }), - 'href': 'https://api.spotify.com/v1/users/ylla', - 'object_type': 'user', - 'owner_id': 'ylla', - 'uri': 'spotify:user:ylla', - }), - 'playlist_id': '7ryTdnz3hVBC87NwIlNaEh', - 'public': True, - 'uri': 'spotify:playlist:7ryTdnz3hVBC87NwIlNaEh', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6dn72TSLbp6JoYSCHi7Sdm', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6', - 'width': 60, - }), - ]), - 'name': "smooth'", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '6dn72TSLbp6JoYSCHi7Sdm', - 'public': True, - 'uri': 'spotify:playlist:6dn72TSLbp6JoYSCHi7Sdm', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0dq7cNDG42xYx85RZPola8', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e029b19c107109de740bad72df5', - 'width': None, - }), - ]), - 'name': 'Dr. Dre – 2001', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '0dq7cNDG42xYx85RZPola8', - 'public': True, - 'uri': 'spotify:playlist:0dq7cNDG42xYx85RZPola8', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/11ui9npCCW5sOYqSN7Glnv', - }), - 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881', - 'width': 640, + 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', + }), + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '6nlfkk5GoXRL1nktlATNsy', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', + 'name': 'Various Artists', + 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', + 'width': 64, + }), + ]), + 'name': 'Wellness & Dreaming Source', + 'release_date': '2015-01-09', + 'release_date_precision': , + 'total_tracks': 25, + 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', + }), + 'artists': list([ + dict({ + 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', + 'name': 'Vlasta Marek', + 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 730066, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', + }), + 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', + 'is_local': False, + 'name': 'Is', + 'track_id': '5o3jMYOSbaVz3tkgwhELSV', + 'track_number': 21, + 'type': , + 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', + }), }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881', - 'width': 300, + 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', + }), + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '066X20Nz7iquqkkCW6Jxy6', + 'name': 'LCD Soundsystem', + 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', + 'width': 64, + }), + ]), + 'name': 'This Is Happening', + 'release_date': '2010-05-17', + 'release_date_precision': , + 'total_tracks': 9, + 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', + }), + 'artists': list([ + dict({ + 'artist_id': '066X20Nz7iquqkkCW6Jxy6', + 'name': 'LCD Soundsystem', + 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 401440, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', + }), + 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', + 'is_local': False, + 'name': 'All I Want', + 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', + }), }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881', - 'width': 60, - }), - ]), - 'name': 'ludde_test', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '11ui9npCCW5sOYqSN7Glnv', - 'public': True, - 'uri': 'spotify:playlist:11ui9npCCW5sOYqSN7Glnv', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0AqCsfE9B9pKCRtXR7Qcpr', - }), - 'images': list([ - ]), - 'name': 'Techno Chicken', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', + 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', + }), + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '2usKFntxa98WHMcyW6xJBz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '272ArH9SUAlslQqsSgPJA2', + 'name': 'Glenn Horiuchi Trio', + 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', + 'width': 64, + }), + ]), + 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', + 'release_date': '2011-04-01', + 'release_date_precision': , + 'total_tracks': 8, + 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', + }), + 'artists': list([ + dict({ + 'artist_id': '272ArH9SUAlslQqsSgPJA2', + 'name': 'Glenn Horiuchi Trio', + 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 358760, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', + }), + 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', + 'is_local': False, + 'name': 'Endpoints', + 'track_id': '6hvFrZNocdt2FcKGCSY5NI', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', + }), }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '0AqCsfE9B9pKCRtXR7Qcpr', - 'public': True, - 'uri': 'spotify:playlist:0AqCsfE9B9pKCRtXR7Qcpr', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7pnXgdhX1F4QUcwHSku2Vk', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e026400fab74f28e90759ac8815', - 'width': None, + 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', + }), + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '0ivM6kSawaug0j3tZVusG2', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2KftmGt9sk1yLjsAoloC3M', + 'name': 'Zucchero', + 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', + 'width': 64, + }), + ]), + 'name': 'All The Best (Spanish Version)', + 'release_date': '2007-01-01', + 'release_date_precision': , + 'total_tracks': 18, + 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', + }), + 'artists': list([ + dict({ + 'artist_id': '2KftmGt9sk1yLjsAoloC3M', + 'name': 'Zucchero', + 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', + }), + ]), + 'disc_number': 1, + 'duration_ms': 176093, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', + 'is_local': False, + 'name': 'You Are So Beautiful', + 'track_id': '2E2znCPaS8anQe21GLxcvJ', + 'track_number': 18, + 'type': , + 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', + }), }), ]), - 'name': 'Air – Talkie Walkie', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'smedjan', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/smedjan', - }), - 'href': 'https://api.spotify.com/v1/users/smedjan', - 'object_type': 'user', - 'owner_id': 'smedjan', - 'uri': 'spotify:user:smedjan', - }), - 'playlist_id': '7pnXgdhX1F4QUcwHSku2Vk', - 'public': True, - 'uri': 'spotify:playlist:7pnXgdhX1F4QUcwHSku2Vk', }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1PDwG4hvy5n2pBf93A8R3r', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698', - 'width': 60, - }), - ]), - 'name': 'Mattias recommends', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Mattias', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/mattias', - }), - 'href': 'https://api.spotify.com/v1/users/mattias', - 'object_type': 'user', - 'owner_id': 'mattias', - 'uri': 'spotify:user:mattias', - }), - 'playlist_id': '1PDwG4hvy5n2pBf93A8R3r', - 'public': True, - 'uri': 'spotify:playlist:1PDwG4hvy5n2pBf93A8R3r', + 'uri': 'spotify:playlist:3cEYpjA9oz9GiPac4AsH4n', + }) +# --- +# name: test_get_playlist[playlist_2.json] + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph', }), - dict({ - 'collaborative': False, - 'description': 'most likely stolen from your playlist', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2UuoB7p8ZdlgQT8upXwoMl', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da846cb1cb6370eb30357eee6760', - 'width': None, - }), - ]), - 'name': 'brokemogul radio', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Scott Vener', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/brokemogul', - }), - 'href': 'https://api.spotify.com/v1/users/brokemogul', - 'object_type': 'user', - 'owner_id': 'brokemogul', - 'uri': 'spotify:user:brokemogul', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af', + 'width': None, }), - 'playlist_id': '2UuoB7p8ZdlgQT8upXwoMl', - 'public': True, - 'uri': 'spotify:playlist:2UuoB7p8ZdlgQT8upXwoMl', - }), - dict({ - 'collaborative': False, - 'description': '', + ]), + 'name': 'Starred', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'chadandcaren', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0IMR2RPbwQQKrxCRYUY1o3', + 'spotify': 'https://open.spotify.com/user/chadandcaren', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/users/chadandcaren', + 'object_type': 'user', + 'owner_id': 'chadandcaren', + 'uri': 'spotify:user:chadandcaren', + }), + 'playlist_id': '3toMXYM91T55pKzuysH5Ph', + 'public': True, + 'tracks': dict({ + 'items': list([ dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c', - 'width': 60, + 'added_at': datetime.datetime(2013, 1, 19, 22, 16, 8, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/chadandcaren', + }), + 'href': 'https://api.spotify.com/v1/users/chadandcaren', + 'uri': 'spotify:user:chadandcaren', + 'user_id': 'chadandcaren', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '3KVfMVtOmoVCgihLE4HoBr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', + 'name': 'Ingrid Michaelson', + 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919', + 'width': 64, + }), + ]), + 'name': 'Be OK', + 'release_date': '2008-01-01', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:3KVfMVtOmoVCgihLE4HoBr', + }), + 'artists': list([ + dict({ + 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', + 'name': 'Ingrid Michaelson', + 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', + }), + ]), + 'disc_number': 1, + 'duration_ms': 148706, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP', + }), + 'href': 'https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP', + 'is_local': False, + 'name': 'You and I', + 'track_id': '4oeRfmp9XpKWym6YD1WvBP', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:4oeRfmp9XpKWym6YD1WvBP', + }), }), ]), - 'name': 'merdalamod', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Pierre Carrier', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/gcarrier', - }), - 'href': 'https://api.spotify.com/v1/users/gcarrier', - 'object_type': 'user', - 'owner_id': 'gcarrier', - 'uri': 'spotify:user:gcarrier', - }), - 'playlist_id': '0IMR2RPbwQQKrxCRYUY1o3', - 'public': True, - 'uri': 'spotify:playlist:0IMR2RPbwQQKrxCRYUY1o3', }), - dict({ - 'collaborative': False, - 'description': '', + 'uri': 'spotify:playlist:3toMXYM91T55pKzuysH5Ph', + }) +# --- +# name: test_get_playlist[playlist_3.json] + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': None, + }), + ]), + 'name': 'Pain', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3NYcibK14Rv9hJ3vFEYmWp', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'images': list([ + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', + 'public': True, + 'tracks': dict({ + 'items': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b', - 'width': 640, + 'added_at': datetime.datetime(2024, 5, 16, 20, 46, 24, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '5iuJo58XqIENkyviBJ4dil', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6DDZJCwSnNF361mUwPEm4G', + 'name': 'Saint Nomad', + 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8', + 'width': 64, + }), + ]), + 'name': 'Nothing To Lose', + 'release_date': '2020-05-01', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5iuJo58XqIENkyviBJ4dil', + }), + 'artists': list([ + dict({ + 'artist_id': '6DDZJCwSnNF361mUwPEm4G', + 'name': 'Saint Nomad', + 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', + }), + ]), + 'disc_number': 1, + 'duration_ms': 164453, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw', + }), + 'href': 'https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw', + 'is_local': False, + 'name': 'Nothing To Lose', + 'track_id': '4bEdcyI0l4zX2Ut5m5Xrhw', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw', + }), }), dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b', - 'width': 300, + 'added_at': datetime.datetime(2024, 5, 16, 20, 53, 44, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '4stVgm9xx3cSNYddv8oTcL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', + 'name': 'Doko', + 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de', + 'width': 64, + }), + ]), + 'name': 'Borrowed Time', + 'release_date': '2019-06-28', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:4stVgm9xx3cSNYddv8oTcL', + }), + 'artists': list([ + dict({ + 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', + 'name': 'Doko', + 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', + }), + ]), + 'disc_number': 1, + 'duration_ms': 198022, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8', + }), + 'href': 'https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8', + 'is_local': False, + 'name': 'Borrowed Time', + 'track_id': '2kmZop34md5KWP4gn7Zuj8', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2kmZop34md5KWP4gn7Zuj8', + }), }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b', - 'width': 60, + 'added_at': datetime.datetime(2024, 11, 28, 10, 18, 44, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'description': 'HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group!\xa0Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.', + 'duration_ms': 2071013, + 'episode_id': '5ytYkag3JZJ3GP2uuFAEBe', + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe', + }), + 'href': 'https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', + 'width': 64, + }), + ]), + 'name': 'Toni Delivers Semen', + 'release_date': '2024-11-27', + 'release_date_precision': , + 'show': dict({ + 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', + }), + 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', + 'width': 64, + }), + ]), + 'name': 'Toni and Ryan', + 'publisher': 'Toni Lodge and Ryan Jon', + 'show_id': '5OzkclFjD6iAjtAuo7aIYt', + 'total_episodes': 780, + 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', + }), + 'type': , + 'uri': 'spotify:episode:5ytYkag3JZJ3GP2uuFAEBe', + }), }), ]), - 'name': 'guitarsongs', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Daniel Ek', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/daniel', - }), - 'href': 'https://api.spotify.com/v1/users/daniel', - 'object_type': 'user', - 'owner_id': 'daniel', - 'uri': 'spotify:user:daniel', - }), - 'playlist_id': '3NYcibK14Rv9hJ3vFEYmWp', - 'public': True, - 'uri': 'spotify:playlist:3NYcibK14Rv9hJ3vFEYmWp', }), + 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', + }) +# --- +# name: test_get_playlist_cover_image + list([ dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2t5rxiBSC1JGfiZfQW6MmC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb', - 'width': 60, - }), - ]), - 'name': 'Sweet Swedish', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Daniel Ek', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/daniel', - }), - 'href': 'https://api.spotify.com/v1/users/daniel', - 'object_type': 'user', - 'owner_id': 'daniel', - 'uri': 'spotify:user:daniel', - }), - 'playlist_id': '2t5rxiBSC1JGfiZfQW6MmC', - 'public': True, - 'uri': 'spotify:playlist:2t5rxiBSC1JGfiZfQW6MmC', + 'height': None, + 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba', + 'width': None, }), + ]) +# --- +# name: test_get_playlist_tracks + list([ dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/780WrURGBymglb9YcJwmkz', - }), - 'images': list([ - ]), - 'name': 'Sommar i P1 - Sveriges Radio – Sommar med Daniel Adams-Ray 9 augusti 2011', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Daniel Ek', + 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), + 'added_by': dict({ 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/daniel', + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - 'href': 'https://api.spotify.com/v1/users/daniel', - 'object_type': 'user', - 'owner_id': 'daniel', - 'uri': 'spotify:user:daniel', - }), - 'playlist_id': '780WrURGBymglb9YcJwmkz', - 'public': True, - 'uri': 'spotify:playlist:780WrURGBymglb9YcJwmkz', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/59WSqPcX9mTVrUFdpDrhph', + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898', - 'width': 60, + 'track': dict({ + 'album': dict({ + 'album_id': '2pANdqPvxInB0YvcDiw4ko', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', + 'name': 'Various Artists', + 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', + 'width': 64, + }), + ]), + 'name': 'Progressive Psy Trance Picks Vol.8', + 'release_date': '2012-04-02', + 'release_date_precision': , + 'total_tracks': 20, + 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', }), - ]), - 'name': 'Adjö', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Daniel Ek', + 'artists': list([ + dict({ + 'artist_id': '6eSdhw46riw2OUHgMwR8B5', + 'name': 'Odiseo', + 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', + }), + ]), + 'disc_number': 1, + 'duration_ms': 376000, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/daniel', + 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', }), - 'href': 'https://api.spotify.com/v1/users/daniel', - 'object_type': 'user', - 'owner_id': 'daniel', - 'uri': 'spotify:user:daniel', + 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', + 'is_local': False, + 'name': 'Api', + 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', }), - 'playlist_id': '59WSqPcX9mTVrUFdpDrhph', - 'public': True, - 'uri': 'spotify:playlist:59WSqPcX9mTVrUFdpDrhph', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2PDLDvW0yaOSd1JF6z7JrC', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097', - 'width': 300, + 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097', - 'width': 60, + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '6nlfkk5GoXRL1nktlATNsy', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', + 'name': 'Various Artists', + 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', + 'width': 64, + }), + ]), + 'name': 'Wellness & Dreaming Source', + 'release_date': '2015-01-09', + 'release_date_precision': , + 'total_tracks': 25, + 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', }), - ]), - 'name': "This isn't mainstream hiphop", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Aron Levin', + 'artists': list([ + dict({ + 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', + 'name': 'Vlasta Marek', + 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 730066, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/allacentrum', + 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', }), - 'href': 'https://api.spotify.com/v1/users/allacentrum', - 'object_type': 'user', - 'owner_id': 'allacentrum', - 'uri': 'spotify:user:allacentrum', + 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', + 'is_local': False, + 'name': 'Is', + 'track_id': '5o3jMYOSbaVz3tkgwhELSV', + 'track_number': 21, + 'type': , + 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', }), - 'playlist_id': '2PDLDvW0yaOSd1JF6z7JrC', - 'public': True, - 'uri': 'spotify:playlist:2PDLDvW0yaOSd1JF6z7JrC', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1x2qISkYZCzO7nqCihJphT', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687', - 'width': 300, + 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687', - 'width': 60, + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '066X20Nz7iquqkkCW6Jxy6', + 'name': 'LCD Soundsystem', + 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', + 'width': 64, + }), + ]), + 'name': 'This Is Happening', + 'release_date': '2010-05-17', + 'release_date_precision': , + 'total_tracks': 9, + 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', }), - ]), - 'name': 'SpotON: Evidence', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Aron Levin', + 'artists': list([ + dict({ + 'artist_id': '066X20Nz7iquqkkCW6Jxy6', + 'name': 'LCD Soundsystem', + 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 401440, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/allacentrum', + 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', }), - 'href': 'https://api.spotify.com/v1/users/allacentrum', - 'object_type': 'user', - 'owner_id': 'allacentrum', - 'uri': 'spotify:user:allacentrum', + 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', + 'is_local': False, + 'name': 'All I Want', + 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', }), - 'playlist_id': '1x2qISkYZCzO7nqCihJphT', - 'public': True, - 'uri': 'spotify:playlist:1x2qISkYZCzO7nqCihJphT', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2yICyZyxaCjorY6wxhKCqx', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0', - 'width': 300, + 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0', - 'width': 60, + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '2usKFntxa98WHMcyW6xJBz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '272ArH9SUAlslQqsSgPJA2', + 'name': 'Glenn Horiuchi Trio', + 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', + 'width': 64, + }), + ]), + 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', + 'release_date': '2011-04-01', + 'release_date_precision': , + 'total_tracks': 8, + 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', }), - ]), - 'name': 'Songs from "Super 8"', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'migo', + 'artists': list([ + dict({ + 'artist_id': '272ArH9SUAlslQqsSgPJA2', + 'name': 'Glenn Horiuchi Trio', + 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 358760, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/migo', + 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', }), - 'href': 'https://api.spotify.com/v1/users/migo', - 'object_type': 'user', - 'owner_id': 'migo', - 'uri': 'spotify:user:migo', + 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', + 'is_local': False, + 'name': 'Endpoints', + 'track_id': '6hvFrZNocdt2FcKGCSY5NI', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', }), - 'playlist_id': '2yICyZyxaCjorY6wxhKCqx', - 'public': True, - 'uri': 'spotify:playlist:2yICyZyxaCjorY6wxhKCqx', }), dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3vxotOnOGDlZXyzJPLFnm2', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336', - 'width': 60, - }), - ]), - 'name': 'Hipster International', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Sean Parker', + 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), + 'added_by': dict({ 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/napstersean', + 'spotify': 'https://open.spotify.com/user/jmperezperez', }), - 'href': 'https://api.spotify.com/v1/users/napstersean', - 'object_type': 'user', - 'owner_id': 'napstersean', - 'uri': 'spotify:user:napstersean', - }), - 'playlist_id': '3vxotOnOGDlZXyzJPLFnm2', - 'public': True, - 'uri': 'spotify:playlist:3vxotOnOGDlZXyzJPLFnm2', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7hHiS4TfO4isJ2cfhIxXkb', + 'href': 'https://api.spotify.com/v1/users/jmperezperez', + 'uri': 'spotify:user:jmperezperez', + 'user_id': 'jmperezperez', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e', - 'width': 60, + 'track': dict({ + 'album': dict({ + 'album_id': '0ivM6kSawaug0j3tZVusG2', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2KftmGt9sk1yLjsAoloC3M', + 'name': 'Zucchero', + 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', + 'width': 64, + }), + ]), + 'name': 'All The Best (Spanish Version)', + 'release_date': '2007-01-01', + 'release_date_precision': , + 'total_tracks': 18, + 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', }), - ]), - 'name': 'Dopest Rap Tracks of All Time', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Alex Norström', + 'artists': list([ + dict({ + 'artist_id': '2KftmGt9sk1yLjsAoloC3M', + 'name': 'Zucchero', + 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', + }), + ]), + 'disc_number': 1, + 'duration_ms': 176093, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/alegaa', + 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', }), - 'href': 'https://api.spotify.com/v1/users/alegaa', - 'object_type': 'user', - 'owner_id': 'alegaa', - 'uri': 'spotify:user:alegaa', + 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', + 'is_local': False, + 'name': 'You Are So Beautiful', + 'track_id': '2E2znCPaS8anQe21GLxcvJ', + 'track_number': 18, + 'type': , + 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', }), - 'playlist_id': '7hHiS4TfO4isJ2cfhIxXkb', - 'public': True, - 'uri': 'spotify:playlist:7hHiS4TfO4isJ2cfhIxXkb', }), ]) # --- @@ -25215,175 +16668,6 @@ }), ]) # --- -# name: test_get_several_artists - list([ - dict({ - 'artist_id': '2CIMQHirSU0MQqyYHq0eOx', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb89ffabe57a25cedeca3309e7', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab6761610000517489ffabe57a25cedeca3309e7', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f17889ffabe57a25cedeca3309e7', - 'width': 160, - }), - ]), - 'name': 'deadmau5', - 'uri': 'spotify:artist:2CIMQHirSU0MQqyYHq0eOx', - }), - dict({ - 'artist_id': '57dN52uHvrHOxijzpIgu3E', - 'images': list([ - dict({ - 'height': 693, - 'url': 'https://i.scdn.co/image/2f0c6c465a83cd196e651e3d4e7625ba799a6f60', - 'width': 1000, - }), - dict({ - 'height': 444, - 'url': 'https://i.scdn.co/image/4e3e13c8b993bde9898e49509fb9ae121636e05f', - 'width': 640, - }), - dict({ - 'height': 139, - 'url': 'https://i.scdn.co/image/dc68dd24b45b74ecce9d4ed486423673d683ced3', - 'width': 200, - }), - dict({ - 'height': 44, - 'url': 'https://i.scdn.co/image/4e55ca05d4f336a2fa0e3062a7ec9778a201e8bc', - 'width': 63, - }), - ]), - 'name': 'Ratatat', - 'uri': 'spotify:artist:57dN52uHvrHOxijzpIgu3E', - }), - dict({ - 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113', - 'width': 160, - }), - ]), - 'name': 'Avicii', - 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', - }), - ]) -# --- -# name: test_get_several_chapters - list([ - dict({ - 'audiobook': dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ - dict({ - 'name': 'Nienke Brinkhuis', - }), - dict({ - 'name': 'Cees van Ede', - }), - dict({ - 'name': 'Mattijn Hartemink', - }), - ]), - 'publisher': 'Anya Niewierra', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Track 1', - 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', - }), - ]) -# --- # name: test_get_show dict({ 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', @@ -29239,16 +20523,6 @@ }), ]) # --- -# name: test_get_user - dict({ - 'display_name': 'smedjan', - 'images': list([ - ]), - 'object_type': 'user', - 'uri': 'spotify:user:smedjan', - 'user_id': 'smedjan', - }) -# --- # name: test_search dict({ 'albums': list([ diff --git a/tests/fixtures/albums.json b/tests/fixtures/albums.json deleted file mode 100644 index 8cfac91..0000000 --- a/tests/fixtures/albums.json +++ /dev/null @@ -1,7372 +0,0 @@ -{ - "albums": [ - { - "album_type": "album", - "total_tracks": 15, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/382ObEPsp2rxGrnsizN5TX" - }, - "href": "https://api.spotify.com/v1/albums/382ObEPsp2rxGrnsizN5TX?locale=en-US%2Cen%3Bq%3D0.5", - "id": "382ObEPsp2rxGrnsizN5TX", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27326597c053b38c9cf93f8f3a9", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0226597c053b38c9cf93f8f3a9", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485126597c053b38c9cf93f8f3a9", - "height": 64, - "width": 64 - } - ], - "name": "TRON: Legacy Reconfigured", - "release_date": "2011-01-01", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:382ObEPsp2rxGrnsizN5TX", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/382ObEPsp2rxGrnsizN5TX/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 15, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3a9qv6NLHnsVxJUtKOMHvD" - }, - "href": "https://api.spotify.com/v1/artists/3a9qv6NLHnsVxJUtKOMHvD", - "id": "3a9qv6NLHnsVxJUtKOMHvD", - "name": "The Glitch Mob", - "type": "artist", - "uri": "spotify:artist:3a9qv6NLHnsVxJUtKOMHvD" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 262240, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lteJuSjb9Jt9W1W7PIU2U" - }, - "href": "https://api.spotify.com/v1/tracks/4lteJuSjb9Jt9W1W7PIU2U", - "id": "4lteJuSjb9Jt9W1W7PIU2U", - "name": "Derezzed - Remixed by The Glitch Mob", - "preview_url": "https://p.scdn.co/mp3-preview/529f09c6af4e23ee90f7a42ee984c93ec49f7320?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lteJuSjb9Jt9W1W7PIU2U", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4CecgT3PfTiMzdO3pFCDNP" - }, - "href": "https://api.spotify.com/v1/artists/4CecgT3PfTiMzdO3pFCDNP", - "id": "4CecgT3PfTiMzdO3pFCDNP", - "name": "M83 VS Big Black Delta", - "type": "artist", - "uri": "spotify:artist:4CecgT3PfTiMzdO3pFCDNP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/63MQldklfxkjYDoUE4Tppz" - }, - "href": "https://api.spotify.com/v1/artists/63MQldklfxkjYDoUE4Tppz", - "id": "63MQldklfxkjYDoUE4Tppz", - "name": "M83", - "type": "artist", - "uri": "spotify:artist:63MQldklfxkjYDoUE4Tppz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2TXpVEw5FbzDh93tLoDm0i" - }, - "href": "https://api.spotify.com/v1/artists/2TXpVEw5FbzDh93tLoDm0i", - "id": "2TXpVEw5FbzDh93tLoDm0i", - "name": "Big Black Delta", - "type": "artist", - "uri": "spotify:artist:2TXpVEw5FbzDh93tLoDm0i" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 234986, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/66uVqkmHAc0MBUzoPhIypN" - }, - "href": "https://api.spotify.com/v1/tracks/66uVqkmHAc0MBUzoPhIypN", - "id": "66uVqkmHAc0MBUzoPhIypN", - "name": "Fall - Remixed by M83 VS Big Black Delta", - "preview_url": "https://p.scdn.co/mp3-preview/cfd848c24ba2d30f75c55322b844327464d4c9a1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:66uVqkmHAc0MBUzoPhIypN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5eKLa1xyHLq8ERWmT1CRHj" - }, - "href": "https://api.spotify.com/v1/artists/5eKLa1xyHLq8ERWmT1CRHj", - "id": "5eKLa1xyHLq8ERWmT1CRHj", - "name": "The Crystal Method", - "type": "artist", - "uri": "spotify:artist:5eKLa1xyHLq8ERWmT1CRHj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267786, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4OEnpg5ubhg6OQ4M2ZjtsL" - }, - "href": "https://api.spotify.com/v1/tracks/4OEnpg5ubhg6OQ4M2ZjtsL", - "id": "4OEnpg5ubhg6OQ4M2ZjtsL", - "name": "The Grid - Remixed by The Crystal Method", - "preview_url": "https://p.scdn.co/mp3-preview/1df018c5eb972b58b0eff592bd621ef187c9a567?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:4OEnpg5ubhg6OQ4M2ZjtsL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3gqv1kgivAc92KnUm4elKv" - }, - "href": "https://api.spotify.com/v1/artists/3gqv1kgivAc92KnUm4elKv", - "id": "3gqv1kgivAc92KnUm4elKv", - "name": "Teddybears", - "type": "artist", - "uri": "spotify:artist:3gqv1kgivAc92KnUm4elKv" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 334346, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2EyK6JBWqftJlxAuqd0Dsq" - }, - "href": "https://api.spotify.com/v1/tracks/2EyK6JBWqftJlxAuqd0Dsq", - "id": "2EyK6JBWqftJlxAuqd0Dsq", - "name": "Adagio for TRON - Remixed by Teddybears", - "preview_url": "https://p.scdn.co/mp3-preview/53b2f31c4c7cbf028b780125fbac172628b3995f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:2EyK6JBWqftJlxAuqd0Dsq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1mB4aweE1XGdjbFVFC8i5m" - }, - "href": "https://api.spotify.com/v1/artists/1mB4aweE1XGdjbFVFC8i5m", - "id": "1mB4aweE1XGdjbFVFC8i5m", - "name": "Ki:Theory", - "type": "artist", - "uri": "spotify:artist:1mB4aweE1XGdjbFVFC8i5m" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 291506, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1TT6gRprLQ5vSWgoWpyKfR" - }, - "href": "https://api.spotify.com/v1/tracks/1TT6gRprLQ5vSWgoWpyKfR", - "id": "1TT6gRprLQ5vSWgoWpyKfR", - "name": "The Son of Flynn - Remixed by Ki:Theory", - "preview_url": "https://p.scdn.co/mp3-preview/096dc1d604ec2fa226415dc4bd3b259e7d568434?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:1TT6gRprLQ5vSWgoWpyKfR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5MO2kbaGGA2a8kL4c9qqHq" - }, - "href": "https://api.spotify.com/v1/artists/5MO2kbaGGA2a8kL4c9qqHq", - "id": "5MO2kbaGGA2a8kL4c9qqHq", - "name": "Paul Oakenfold", - "type": "artist", - "uri": "spotify:artist:5MO2kbaGGA2a8kL4c9qqHq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 275266, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6hEvTmmvby9ZTkSdfmPW3m" - }, - "href": "https://api.spotify.com/v1/tracks/6hEvTmmvby9ZTkSdfmPW3m", - "id": "6hEvTmmvby9ZTkSdfmPW3m", - "name": "C.L.U. - Remixed by Paul Oakenfold", - "preview_url": "https://p.scdn.co/mp3-preview/effa3c4efe9947ff395f1a0fe59ce2f05e83de52?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:6hEvTmmvby9ZTkSdfmPW3m", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3OsRAKCvk37zwYcnzRf5XF" - }, - "href": "https://api.spotify.com/v1/artists/3OsRAKCvk37zwYcnzRf5XF", - "id": "3OsRAKCvk37zwYcnzRf5XF", - "name": "Moby", - "type": "artist", - "uri": "spotify:artist:3OsRAKCvk37zwYcnzRf5XF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 392293, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/03uOJUuuTgaFFI1Efal1no" - }, - "href": "https://api.spotify.com/v1/tracks/03uOJUuuTgaFFI1Efal1no", - "id": "03uOJUuuTgaFFI1Efal1no", - "name": "The Son of Flynn - Remixed by Moby", - "preview_url": "https://p.scdn.co/mp3-preview/dc1d709acf558f8ae819bdb7f5913f18403aae8d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:03uOJUuuTgaFFI1Efal1no", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/62k5LKMhymqlDNo2DWOvvv" - }, - "href": "https://api.spotify.com/v1/artists/62k5LKMhymqlDNo2DWOvvv", - "id": "62k5LKMhymqlDNo2DWOvvv", - "name": "Boys Noize", - "type": "artist", - "uri": "spotify:artist:62k5LKMhymqlDNo2DWOvvv" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 340186, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3YYnfKM02WkygOwg6ozfrL" - }, - "href": "https://api.spotify.com/v1/tracks/3YYnfKM02WkygOwg6ozfrL", - "id": "3YYnfKM02WkygOwg6ozfrL", - "name": "End of Line - Remixed by Boys Noize", - "preview_url": "https://p.scdn.co/mp3-preview/f4d7c051a9e36fde28d16fb4a84078a6c7ca1d34?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:3YYnfKM02WkygOwg6ozfrL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6TQj5BFPooTa08A7pk8AQ1" - }, - "href": "https://api.spotify.com/v1/artists/6TQj5BFPooTa08A7pk8AQ1", - "id": "6TQj5BFPooTa08A7pk8AQ1", - "name": "Kaskade", - "type": "artist", - "uri": "spotify:artist:6TQj5BFPooTa08A7pk8AQ1" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 412440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2jFLd9OdNcLsblpv4fDTRn" - }, - "href": "https://api.spotify.com/v1/tracks/2jFLd9OdNcLsblpv4fDTRn", - "id": "2jFLd9OdNcLsblpv4fDTRn", - "name": "Rinzler - Remixed by Kaskade", - "preview_url": "https://p.scdn.co/mp3-preview/70e573ebd2f8f2557c579ba5b8d5fd3b433ad0b1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:2jFLd9OdNcLsblpv4fDTRn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2wouN3QXejYa5tKetYdcVX" - }, - "href": "https://api.spotify.com/v1/artists/2wouN3QXejYa5tKetYdcVX", - "id": "2wouN3QXejYa5tKetYdcVX", - "name": "Com Truise", - "type": "artist", - "uri": "spotify:artist:2wouN3QXejYa5tKetYdcVX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 292093, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3SL3UavpjRKNMM9UVlE9Bx" - }, - "href": "https://api.spotify.com/v1/tracks/3SL3UavpjRKNMM9UVlE9Bx", - "id": "3SL3UavpjRKNMM9UVlE9Bx", - "name": "Encom Part 2 - Remixed by Com Truise", - "preview_url": "https://p.scdn.co/mp3-preview/46f4b0dd4ba9b666791c97f9f7dceadab37aa4f9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:3SL3UavpjRKNMM9UVlE9Bx", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hXDMlrPegHRO0zUvBsRSI" - }, - "href": "https://api.spotify.com/v1/artists/3hXDMlrPegHRO0zUvBsRSI", - "id": "3hXDMlrPegHRO0zUvBsRSI", - "name": "Photek", - "type": "artist", - "uri": "spotify:artist:3hXDMlrPegHRO0zUvBsRSI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 318720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2UBYw2qf9PkvoKQ610ocft" - }, - "href": "https://api.spotify.com/v1/tracks/2UBYw2qf9PkvoKQ610ocft", - "id": "2UBYw2qf9PkvoKQ610ocft", - "name": "End of Line - Remixed by Photek", - "preview_url": "https://p.scdn.co/mp3-preview/b9f7b2815e68bc087cc03923ef67891c852fd8fb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:2UBYw2qf9PkvoKQ610ocft", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5F8v5xSIGtfukNxq0Jqgwh" - }, - "href": "https://api.spotify.com/v1/artists/5F8v5xSIGtfukNxq0Jqgwh", - "id": "5F8v5xSIGtfukNxq0Jqgwh", - "name": "The Japanese Popstars", - "type": "artist", - "uri": "spotify:artist:5F8v5xSIGtfukNxq0Jqgwh" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 367720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7irNlzUSPNgCDtEyQuS3lm" - }, - "href": "https://api.spotify.com/v1/tracks/7irNlzUSPNgCDtEyQuS3lm", - "id": "7irNlzUSPNgCDtEyQuS3lm", - "name": "Arena - Remixed by The Japanese Popstars", - "preview_url": "https://p.scdn.co/mp3-preview/348f0ab902ecaa097b4bd7e4ad139efdcdf205bd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:7irNlzUSPNgCDtEyQuS3lm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 303946, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1rn6JIHBuBZiwvA57jeoOB" - }, - "href": "https://api.spotify.com/v1/tracks/1rn6JIHBuBZiwvA57jeoOB", - "id": "1rn6JIHBuBZiwvA57jeoOB", - "name": "Derezzed - Remixed by Avicii", - "preview_url": "https://p.scdn.co/mp3-preview/1712ba0d3694379568db10cbf38eab40b4749f1b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:1rn6JIHBuBZiwvA57jeoOB", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iVhFmG8YCCEHANGeUUS9q" - }, - "href": "https://api.spotify.com/v1/artists/4iVhFmG8YCCEHANGeUUS9q", - "id": "4iVhFmG8YCCEHANGeUUS9q", - "name": "Pretty Lights", - "type": "artist", - "uri": "spotify:artist:4iVhFmG8YCCEHANGeUUS9q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 272853, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4OgB6TRmIGBRT4NoFxxIQd" - }, - "href": "https://api.spotify.com/v1/tracks/4OgB6TRmIGBRT4NoFxxIQd", - "id": "4OgB6TRmIGBRT4NoFxxIQd", - "name": "Solar Sailer - Remixed by Pretty Lights", - "preview_url": "https://p.scdn.co/mp3-preview/f1bff4a14c2b009603f60fc371078a8e5cd880be?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:4OgB6TRmIGBRT4NoFxxIQd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3CfH3WZPzbk5mNDWXpGIy6" - }, - "href": "https://api.spotify.com/v1/artists/3CfH3WZPzbk5mNDWXpGIy6", - "id": "3CfH3WZPzbk5mNDWXpGIy6", - "name": "Sander Kleinenberg", - "type": "artist", - "uri": "spotify:artist:3CfH3WZPzbk5mNDWXpGIy6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 304466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1Nv1h7ANN9E4rAjLP4OfgA" - }, - "href": "https://api.spotify.com/v1/tracks/1Nv1h7ANN9E4rAjLP4OfgA", - "id": "1Nv1h7ANN9E4rAjLP4OfgA", - "name": "TRON Legacy (End Titles) - Remixed by Sander Kleinenberg", - "preview_url": "https://p.scdn.co/mp3-preview/10804f401eaf2bfd127fe210dd825ffc20341fe4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:1Nv1h7ANN9E4rAjLP4OfgA", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "© 2011 Disney", - "type": "C" - }, - { - "text": "℗ 2011 Walt Disney Records", - "type": "P" - } - ], - "external_ids": { - "upc": "00050087239633" - }, - "genres": [], - "label": "Walt Disney Records", - "popularity": 49 - }, - { - "album_type": "album", - "total_tracks": 10, - "available_markets": [ - "CA", - "US" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1A2GTWGtFfWp7KSQTwWOyo" - }, - "href": "https://api.spotify.com/v1/albums/1A2GTWGtFfWp7KSQTwWOyo?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1A2GTWGtFfWp7KSQTwWOyo", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d8601e15fa1b4351fe1fc6ae", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d8601e15fa1b4351fe1fc6ae", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d8601e15fa1b4351fe1fc6ae", - "height": 64, - "width": 64 - } - ], - "name": "Human After All", - "release_date": "2005-03-14", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1A2GTWGtFfWp7KSQTwWOyo", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1A2GTWGtFfWp7KSQTwWOyo/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 319879, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3aByRUC2BVL6Fs1zI723sd" - }, - "href": "https://api.spotify.com/v1/tracks/3aCKAkMx3yfaj3AO5Gz47e", - "id": "3aCKAkMx3yfaj3AO5Gz47e", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3aByRUC2BVL6Fs1zI723sd" - }, - "href": "https://api.spotify.com/v1/tracks/3aByRUC2BVL6Fs1zI723sd", - "id": "3aByRUC2BVL6Fs1zI723sd", - "type": "track", - "uri": "spotify:track:3aByRUC2BVL6Fs1zI723sd" - }, - "name": "Human After All", - "preview_url": "https://p.scdn.co/mp3-preview/c4640d45ffd9f45875df3ddfc360f5d6cfc33430?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3aCKAkMx3yfaj3AO5Gz47e", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 263240, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ABpuao3ZbTjP2cSiX9KZc" - }, - "href": "https://api.spotify.com/v1/tracks/0UZRFYMoz9xmeE2AQUhTDl", - "id": "0UZRFYMoz9xmeE2AQUhTDl", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2ABpuao3ZbTjP2cSiX9KZc" - }, - "href": "https://api.spotify.com/v1/tracks/2ABpuao3ZbTjP2cSiX9KZc", - "id": "2ABpuao3ZbTjP2cSiX9KZc", - "type": "track", - "uri": "spotify:track:2ABpuao3ZbTjP2cSiX9KZc" - }, - "name": "The Prime Time of Your Life", - "preview_url": "https://p.scdn.co/mp3-preview/c7cf4974addc9d3300034b7ead88eb24086ff538?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:0UZRFYMoz9xmeE2AQUhTDl", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 287720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4zu9wo2FXoBSsKjO6tRB3R" - }, - "href": "https://api.spotify.com/v1/tracks/7LL40F6YdZgeiQ6en1c7Lk", - "id": "7LL40F6YdZgeiQ6en1c7Lk", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4zu9wo2FXoBSsKjO6tRB3R" - }, - "href": "https://api.spotify.com/v1/tracks/4zu9wo2FXoBSsKjO6tRB3R", - "id": "4zu9wo2FXoBSsKjO6tRB3R", - "type": "track", - "uri": "spotify:track:4zu9wo2FXoBSsKjO6tRB3R" - }, - "name": "Robot Rock", - "preview_url": "https://p.scdn.co/mp3-preview/b2c4b594e86720ca71c59d6f2681a43c38b3fd06?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:7LL40F6YdZgeiQ6en1c7Lk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 321186, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/07KtTNn0wZndtN5NOYdBWR" - }, - "href": "https://api.spotify.com/v1/tracks/60HSQkYSlJVtdRdHgzRsXz", - "id": "60HSQkYSlJVtdRdHgzRsXz", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/07KtTNn0wZndtN5NOYdBWR" - }, - "href": "https://api.spotify.com/v1/tracks/07KtTNn0wZndtN5NOYdBWR", - "id": "07KtTNn0wZndtN5NOYdBWR", - "type": "track", - "uri": "spotify:track:07KtTNn0wZndtN5NOYdBWR" - }, - "name": "Steam Machine", - "preview_url": "https://p.scdn.co/mp3-preview/c34498d7e21992f7da5aefb0c5d32776ccbcefea?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:60HSQkYSlJVtdRdHgzRsXz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 289680, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1WnXCfO6oIxG0TbJj29MqR" - }, - "href": "https://api.spotify.com/v1/tracks/4ABWPP59ItFKykdaDF09K5", - "id": "4ABWPP59ItFKykdaDF09K5", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1WnXCfO6oIxG0TbJj29MqR" - }, - "href": "https://api.spotify.com/v1/tracks/1WnXCfO6oIxG0TbJj29MqR", - "id": "1WnXCfO6oIxG0TbJj29MqR", - "type": "track", - "uri": "spotify:track:1WnXCfO6oIxG0TbJj29MqR" - }, - "name": "Make Love", - "preview_url": "https://p.scdn.co/mp3-preview/c23e57fe786c75e53f76f3e62855cbabe7879594?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:4ABWPP59ItFKykdaDF09K5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 248400, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/61qwHnU8dyMqPemGzopDcp" - }, - "href": "https://api.spotify.com/v1/tracks/73MAeHX5sqLYfuYclsrvHc", - "id": "73MAeHX5sqLYfuYclsrvHc", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/61qwHnU8dyMqPemGzopDcp" - }, - "href": "https://api.spotify.com/v1/tracks/61qwHnU8dyMqPemGzopDcp", - "id": "61qwHnU8dyMqPemGzopDcp", - "type": "track", - "uri": "spotify:track:61qwHnU8dyMqPemGzopDcp" - }, - "name": "The Brainwasher", - "preview_url": "https://p.scdn.co/mp3-preview/a419922329501fa9ec75475d179d8886288bd9a2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:73MAeHX5sqLYfuYclsrvHc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 19200, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0cV1dl2k19YoGbxTKDb0rH" - }, - "href": "https://api.spotify.com/v1/tracks/3dWxT7lAv6lmXEW2AEZyPQ", - "id": "3dWxT7lAv6lmXEW2AEZyPQ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0cV1dl2k19YoGbxTKDb0rH" - }, - "href": "https://api.spotify.com/v1/tracks/0cV1dl2k19YoGbxTKDb0rH", - "id": "0cV1dl2k19YoGbxTKDb0rH", - "type": "track", - "uri": "spotify:track:0cV1dl2k19YoGbxTKDb0rH" - }, - "name": "On / Off", - "preview_url": "https://p.scdn.co/mp3-preview/0d0c02b96d20b5a297007d4afa156213a7bb546c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:3dWxT7lAv6lmXEW2AEZyPQ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 287840, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/73mTIDCNKGfUF4MiFfR3b5" - }, - "href": "https://api.spotify.com/v1/tracks/37M8nuFfSrlKfTR0AAp7gK", - "id": "37M8nuFfSrlKfTR0AAp7gK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/73mTIDCNKGfUF4MiFfR3b5" - }, - "href": "https://api.spotify.com/v1/tracks/73mTIDCNKGfUF4MiFfR3b5", - "id": "73mTIDCNKGfUF4MiFfR3b5", - "type": "track", - "uri": "spotify:track:73mTIDCNKGfUF4MiFfR3b5" - }, - "name": "Television Rules the Nation", - "preview_url": "https://p.scdn.co/mp3-preview/14656ff6f43fe87d31a293024f1bb25922e67596?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:37M8nuFfSrlKfTR0AAp7gK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 284280, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0LSLM0zuWRkEYemF7JcfEE" - }, - "href": "https://api.spotify.com/v1/tracks/1iNeZGJsoC0D7ZyJTdIbDS", - "id": "1iNeZGJsoC0D7ZyJTdIbDS", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0LSLM0zuWRkEYemF7JcfEE" - }, - "href": "https://api.spotify.com/v1/tracks/0LSLM0zuWRkEYemF7JcfEE", - "id": "0LSLM0zuWRkEYemF7JcfEE", - "type": "track", - "uri": "spotify:track:0LSLM0zuWRkEYemF7JcfEE" - }, - "name": "Technologic", - "preview_url": "https://p.scdn.co/mp3-preview/4e68f73933a203aec3e11fb5df3898d70f98d68a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:1iNeZGJsoC0D7ZyJTdIbDS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "CA", - "US" - ], - "disc_number": 1, - "duration_ms": 417320, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3PsJ6zisndTa3F9eOjBfCc" - }, - "href": "https://api.spotify.com/v1/tracks/0Dezmoeb373GNcYBjLVAMH", - "id": "0Dezmoeb373GNcYBjLVAMH", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3PsJ6zisndTa3F9eOjBfCc" - }, - "href": "https://api.spotify.com/v1/tracks/3PsJ6zisndTa3F9eOjBfCc", - "id": "3PsJ6zisndTa3F9eOjBfCc", - "type": "track", - "uri": "spotify:track:3PsJ6zisndTa3F9eOjBfCc" - }, - "name": "Emotion", - "preview_url": "https://p.scdn.co/mp3-preview/ac672d14bde8e6d159a66d1ff2b7b05936b46dd4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:0Dezmoeb373GNcYBjLVAMH", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "Distributed exclusively by Warner Music France / ADA France, © 2005 Daft Life Ltd.", - "type": "C" - }, - { - "text": "Distributed exclusively by Warner Music France / ADA France, ℗ 2005 Daft Life Ltd.", - "type": "P" - } - ], - "external_ids": { - "upc": "0724386091956" - }, - "genres": [], - "label": "Daft Life Ltd./ADA France", - "popularity": 52 - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2noRn2Aes5aoNVsU6iWThc" - }, - "href": "https://api.spotify.com/v1/albums/2noRn2Aes5aoNVsU6iWThc?locale=en-US%2Cen%3Bq%3D0.5", - "id": "2noRn2Aes5aoNVsU6iWThc", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736610c21366e613bfd9f5d197", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026610c21366e613bfd9f5d197", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516610c21366e613bfd9f5d197", - "height": 64, - "width": 64 - } - ], - "name": "Discovery", - "release_date": "2001-03-12", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2noRn2Aes5aoNVsU6iWThc", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/2noRn2Aes5aoNVsU6iWThc/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 14, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 320357, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV" - }, - "href": "https://api.spotify.com/v1/tracks/0DiWol3AO6WpXZgp0goxAV", - "id": "0DiWol3AO6WpXZgp0goxAV", - "name": "One More Time", - "preview_url": "https://p.scdn.co/mp3-preview/5c1632eec410b201518c6b0598a68dc26289ad8e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0DiWol3AO6WpXZgp0goxAV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212546, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3H3cOQ6LBLSvmcaV7QkZEu" - }, - "href": "https://api.spotify.com/v1/tracks/3H3cOQ6LBLSvmcaV7QkZEu", - "id": "3H3cOQ6LBLSvmcaV7QkZEu", - "name": "Aerodynamic", - "preview_url": "https://p.scdn.co/mp3-preview/15caae138e33c728b606d371e172491145b6e18e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:3H3cOQ6LBLSvmcaV7QkZEu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 301373, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2VEZx7NWsZ1D0eJ4uv5Fym" - }, - "href": "https://api.spotify.com/v1/tracks/2VEZx7NWsZ1D0eJ4uv5Fym", - "id": "2VEZx7NWsZ1D0eJ4uv5Fym", - "name": "Digital Love", - "preview_url": "https://p.scdn.co/mp3-preview/6e4fdea49ddc5cd7e1270901bdaa214881b57ce3?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:2VEZx7NWsZ1D0eJ4uv5Fym", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226413, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5W3cjX2J3tjhG8zb6u0qHn" - }, - "href": "https://api.spotify.com/v1/tracks/5W3cjX2J3tjhG8zb6u0qHn", - "id": "5W3cjX2J3tjhG8zb6u0qHn", - "name": "Harder, Better, Faster, Stronger", - "preview_url": "https://p.scdn.co/mp3-preview/0f9fdfb61717b99d9cbef7365ad444e1aaea1b5c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:5W3cjX2J3tjhG8zb6u0qHn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211640, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6vuPZX9fWESg5js2JFTQRJ" - }, - "href": "https://api.spotify.com/v1/tracks/6vuPZX9fWESg5js2JFTQRJ", - "id": "6vuPZX9fWESg5js2JFTQRJ", - "name": "Crescendolls", - "preview_url": "https://p.scdn.co/mp3-preview/7d68a9f03d43ea58637f299a08306e85968c7fec?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:6vuPZX9fWESg5js2JFTQRJ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 104466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/63JXZZRbmzooashakb0zbu" - }, - "href": "https://api.spotify.com/v1/tracks/63JXZZRbmzooashakb0zbu", - "id": "63JXZZRbmzooashakb0zbu", - "name": "Nightvision", - "preview_url": "https://p.scdn.co/mp3-preview/0010c76598d1d3ac5eb08a17629bba26bf077d83?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:63JXZZRbmzooashakb0zbu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 237800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/186hvCTyrni4KT9nwIQ7zS" - }, - "href": "https://api.spotify.com/v1/tracks/186hvCTyrni4KT9nwIQ7zS", - "id": "186hvCTyrni4KT9nwIQ7zS", - "name": "Superheroes", - "preview_url": "https://p.scdn.co/mp3-preview/d84ec227efa9c9d3360cdcb69461a2492de5dbbf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:186hvCTyrni4KT9nwIQ7zS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/098ttCNmncrO4YvqWUNMvn" - }, - "href": "https://api.spotify.com/v1/tracks/098ttCNmncrO4YvqWUNMvn", - "id": "098ttCNmncrO4YvqWUNMvn", - "name": "High Life", - "preview_url": "https://p.scdn.co/mp3-preview/25acc4d7a8a36c92a5ea590166f720bd0b23da98?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:098ttCNmncrO4YvqWUNMvn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 232666, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1NeLwFETswx8Fzxl2AFl91" - }, - "href": "https://api.spotify.com/v1/tracks/1NeLwFETswx8Fzxl2AFl91", - "id": "1NeLwFETswx8Fzxl2AFl91", - "name": "Something About Us", - "preview_url": "https://p.scdn.co/mp3-preview/a445b4236153d48572222b87b1d77a57a6832555?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:1NeLwFETswx8Fzxl2AFl91", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227866, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7cMFjxhbXBpOlais7KMF3j" - }, - "href": "https://api.spotify.com/v1/tracks/7cMFjxhbXBpOlais7KMF3j", - "id": "7cMFjxhbXBpOlais7KMF3j", - "name": "Voyager", - "preview_url": "https://p.scdn.co/mp3-preview/d92d1718cd8473d335fbf46a5ff5a474641e54b7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:7cMFjxhbXBpOlais7KMF3j", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 345186, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2LD2gT7gwAurzdQDQtILds" - }, - "href": "https://api.spotify.com/v1/tracks/2LD2gT7gwAurzdQDQtILds", - "id": "2LD2gT7gwAurzdQDQtILds", - "name": "Veridis Quo", - "preview_url": "https://p.scdn.co/mp3-preview/f15ea4005418de70e9ab8b31c5117bce11e00826?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:2LD2gT7gwAurzdQDQtILds", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206866, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4npMbTuxrUA3Wd7edACZ2L" - }, - "href": "https://api.spotify.com/v1/tracks/4npMbTuxrUA3Wd7edACZ2L", - "id": "4npMbTuxrUA3Wd7edACZ2L", - "name": "Short Circuit", - "preview_url": "https://p.scdn.co/mp3-preview/e7d6b314e038b8e885f2f6b4bb58b9c514fec682?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:4npMbTuxrUA3Wd7edACZ2L", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 240173, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7v9Q0dAb9t7h8gJOkcJHay" - }, - "href": "https://api.spotify.com/v1/tracks/7v9Q0dAb9t7h8gJOkcJHay", - "id": "7v9Q0dAb9t7h8gJOkcJHay", - "name": "Face to Face", - "preview_url": "https://p.scdn.co/mp3-preview/0daa220b7adeb95fcc81eee79c17e397680c6701?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:7v9Q0dAb9t7h8gJOkcJHay", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi" - }, - "href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi", - "id": "4tZwfgrHOc3mvqYlEYSvVi", - "name": "Daft Punk", - "type": "artist", - "uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 600293, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3zMvotMEQK3xvH01vA9wAP" - }, - "href": "https://api.spotify.com/v1/tracks/3zMvotMEQK3xvH01vA9wAP", - "id": "3zMvotMEQK3xvH01vA9wAP", - "name": "Too Long", - "preview_url": "https://p.scdn.co/mp3-preview/a28f9e11e092dcbfd441dffcb6766c70454e0ffb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:3zMvotMEQK3xvH01vA9wAP", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "2001 Distributed exclusively by Warner Music France / ADA France, 2001 Daft Life Ltd.", - "type": "C" - }, - { - "text": "2001 Distributed exclusively by Warner Music France / ADA France, 2001 Daft Life Ltd.", - "type": "P" - } - ], - "external_ids": { - "upc": "0724384960650" - }, - "genres": [], - "label": "Daft Life Ltd./ADA France", - "popularity": 77 - } - ] -} diff --git a/tests/fixtures/artist_top_tracks.json b/tests/fixtures/artist_top_tracks.json deleted file mode 100644 index 06f63a0..0000000 --- a/tests/fixtures/artist_top_tracks.json +++ /dev/null @@ -1,4524 +0,0 @@ -{ - "tracks": [ - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" - }, - "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", - "id": "4rG0MhkU6UojACJxkMHIXB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Planet Pit (Deluxe Version)", - "release_date": "2011-06-17", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" - }, - "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", - "id": "21E3waRsmPlU7jZsS13rcj", - "name": "Ne-Yo", - "type": "artist", - "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1ruutHJcECI7cos2n5TqpO" - }, - "href": "https://api.spotify.com/v1/artists/1ruutHJcECI7cos2n5TqpO", - "id": "1ruutHJcECI7cos2n5TqpO", - "name": "Nayer", - "type": "artist", - "uri": "spotify:artist:1ruutHJcECI7cos2n5TqpO" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 252306, - "explicit": false, - "external_ids": { - "isrc": "USJAY1100032" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4QNpBfC0zvjKqPJcyqBy9W" - }, - "href": "https://api.spotify.com/v1/tracks/4QNpBfC0zvjKqPJcyqBy9W", - "id": "4QNpBfC0zvjKqPJcyqBy9W", - "is_local": false, - "is_playable": true, - "name": "Give Me Everything (feat. Nayer)", - "popularity": 84, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:4QNpBfC0zvjKqPJcyqBy9W" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" - }, - "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", - "id": "2F7tejLHzTqFq2XLol9ZGy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Global Warming: Meltdown (Deluxe Version)", - "release_date": "2012", - "release_date_precision": "year", - "total_tracks": 17, - "type": "album", - "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6LqNN22kT3074XbTVUrhzX" - }, - "href": "https://api.spotify.com/v1/artists/6LqNN22kT3074XbTVUrhzX", - "id": "6LqNN22kT3074XbTVUrhzX", - "name": "Kesha", - "type": "artist", - "uri": "spotify:artist:6LqNN22kT3074XbTVUrhzX" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204160, - "explicit": false, - "external_ids": { - "isrc": "USRC11301695" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3cHyrEgdyYRjgJKSOiOtcS" - }, - "href": "https://api.spotify.com/v1/tracks/3cHyrEgdyYRjgJKSOiOtcS", - "id": "3cHyrEgdyYRjgJKSOiOtcS", - "is_local": false, - "is_playable": true, - "name": "Timber", - "popularity": 82, - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:3cHyrEgdyYRjgJKSOiOtcS" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" - }, - "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", - "id": "23zg3TcAtWQy7J6upgbUnj", - "name": "USHER", - "type": "artist", - "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6A1F3Fkq5dYeYYNkXflcTX" - }, - "href": "https://api.spotify.com/v1/albums/6A1F3Fkq5dYeYYNkXflcTX", - "id": "6A1F3Fkq5dYeYYNkXflcTX", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27386b0c9728ad3ed338eaeea79", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0286b0c9728ad3ed338eaeea79", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485186b0c9728ad3ed338eaeea79", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Raymond v Raymond (Expanded Edition)", - "release_date": "2010-03-30", - "release_date_precision": "day", - "total_tracks": 22, - "type": "album", - "uri": "spotify:album:6A1F3Fkq5dYeYYNkXflcTX" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" - }, - "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", - "id": "23zg3TcAtWQy7J6upgbUnj", - "name": "USHER", - "type": "artist", - "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220800, - "explicit": false, - "external_ids": { - "isrc": "USLF21000041" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4356Typ82hUiFAynbLYbPn" - }, - "href": "https://api.spotify.com/v1/tracks/4356Typ82hUiFAynbLYbPn", - "id": "4356Typ82hUiFAynbLYbPn", - "is_local": false, - "is_playable": true, - "name": "DJ Got Us Fallin' In Love (feat. Pitbull)", - "popularity": 81, - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:4356Typ82hUiFAynbLYbPn" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" - }, - "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", - "id": "4EUf4YyNjuXypWY6W5wEDm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Globalization", - "release_date": "2014-11-21", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" - }, - "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", - "id": "21E3waRsmPlU7jZsS13rcj", - "name": "Ne-Yo", - "type": "artist", - "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229360, - "explicit": true, - "external_ids": { - "isrc": "USRC11402647" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2bJvI42r8EF3wxjOuDav4r" - }, - "href": "https://api.spotify.com/v1/tracks/2bJvI42r8EF3wxjOuDav4r", - "id": "2bJvI42r8EF3wxjOuDav4r", - "is_local": false, - "is_playable": true, - "name": "Time of Our Lives", - "popularity": 80, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2bJvI42r8EF3wxjOuDav4r" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" - }, - "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", - "id": "4rG0MhkU6UojACJxkMHIXB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Planet Pit (Deluxe Version)", - "release_date": "2011-06-17", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" - }, - "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", - "id": "7bXgB6jMjp9ATFy66eO08Z", - "name": "Chris Brown", - "type": "artist", - "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227280, - "explicit": false, - "external_ids": { - "isrc": "USJAY1100015" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/62zFEHfAYl5kdHYOivj4BC" - }, - "href": "https://api.spotify.com/v1/tracks/62zFEHfAYl5kdHYOivj4BC", - "id": "62zFEHfAYl5kdHYOivj4BC", - "is_local": false, - "is_playable": true, - "name": "International Love (feat. Chris Brown)", - "popularity": 78, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:62zFEHfAYl5kdHYOivj4BC" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" - }, - "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", - "id": "2F7tejLHzTqFq2XLol9ZGy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Global Warming: Meltdown (Deluxe Version)", - "release_date": "2012", - "release_date_precision": "year", - "total_tracks": 17, - "type": "album", - "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS" - }, - "href": "https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS", - "id": "1l7ZsJRRS8wlW3WfJfPfNS", - "name": "Christina Aguilera", - "type": "artist", - "uri": "spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229506, - "explicit": false, - "external_ids": { - "isrc": "USRC11201328" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Hf4aIJpsN4Os2f0y0VqWl" - }, - "href": "https://api.spotify.com/v1/tracks/0Hf4aIJpsN4Os2f0y0VqWl", - "id": "0Hf4aIJpsN4Os2f0y0VqWl", - "is_local": false, - "is_playable": true, - "name": "Feel This Moment (feat. Christina Aguilera)", - "popularity": 76, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0Hf4aIJpsN4Os2f0y0VqWl" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "LI", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4RaAjieYFIZRF8uh6GY43r" - }, - "href": "https://api.spotify.com/v1/albums/4RaAjieYFIZRF8uh6GY43r", - "id": "4RaAjieYFIZRF8uh6GY43r", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a511f69870fa68e7ba78c099", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a511f69870fa68e7ba78c099", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a511f69870fa68e7ba78c099", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Pitbull Starring In Rebelution", - "release_date": "2009-08-27", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:4RaAjieYFIZRF8uh6GY43r" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "LI", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 237600, - "explicit": false, - "external_ids": { - "isrc": "USJAY0900063" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0OPyDgTRuIdCJ9B4bYSths" - }, - "href": "https://api.spotify.com/v1/tracks/0OPyDgTRuIdCJ9B4bYSths", - "id": "0OPyDgTRuIdCJ9B4bYSths", - "is_local": false, - "is_playable": true, - "name": "Hotel Room Service", - "popularity": 72, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:0OPyDgTRuIdCJ9B4bYSths" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" - }, - "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", - "id": "4EUf4YyNjuXypWY6W5wEDm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Globalization", - "release_date": "2014-11-21", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3s73tswJycj6HTBNNN393z" - }, - "href": "https://api.spotify.com/v1/artists/3s73tswJycj6HTBNNN393z", - "id": "3s73tswJycj6HTBNNN393z", - "name": "John Ryan", - "type": "artist", - "uri": "spotify:artist:3s73tswJycj6HTBNNN393z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 236200, - "explicit": false, - "external_ids": { - "isrc": "USRC11401783" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Y7XAxTANhu3lmnLAzhWJW" - }, - "href": "https://api.spotify.com/v1/tracks/4Y7XAxTANhu3lmnLAzhWJW", - "id": "4Y7XAxTANhu3lmnLAzhWJW", - "is_local": false, - "is_playable": true, - "name": "Fireball (feat. John Ryan)", - "popularity": 76, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4Y7XAxTANhu3lmnLAzhWJW" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" - }, - "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", - "id": "4rG0MhkU6UojACJxkMHIXB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "Planet Pit (Deluxe Version)", - "release_date": "2011-06-17", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3aQeKQSyrW4qWr35idm0cy" - }, - "href": "https://api.spotify.com/v1/artists/3aQeKQSyrW4qWr35idm0cy", - "id": "3aQeKQSyrW4qWr35idm0cy", - "name": "T-Pain", - "type": "artist", - "uri": "spotify:artist:3aQeKQSyrW4qWr35idm0cy" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 234453, - "explicit": false, - "external_ids": { - "isrc": "USJAY1000153" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3rfhI32Il2hVRKDkuGeeen" - }, - "href": "https://api.spotify.com/v1/tracks/3rfhI32Il2hVRKDkuGeeen", - "id": "3rfhI32Il2hVRKDkuGeeen", - "is_local": false, - "is_playable": true, - "name": "Hey Baby (Drop It to the Floor) (feat. T-Pain)", - "popularity": 74, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:3rfhI32Il2hVRKDkuGeeen" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52iwsT98xCoGgiGntTiR7K" - }, - "href": "https://api.spotify.com/v1/artists/52iwsT98xCoGgiGntTiR7K", - "id": "52iwsT98xCoGgiGntTiR7K", - "name": "Quevedo", - "type": "artist", - "uri": "spotify:artist:52iwsT98xCoGgiGntTiR7K" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3V2ApPxUSquOkjLQU3wmjh" - }, - "href": "https://api.spotify.com/v1/albums/3V2ApPxUSquOkjLQU3wmjh", - "id": "3V2ApPxUSquOkjLQU3wmjh", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734b690afba75a356fcdad526e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024b690afba75a356fcdad526e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514b690afba75a356fcdad526e", - "height": 64, - "width": 64 - } - ], - "is_playable": true, - "name": "BUENAS NOCHES", - "release_date": "2024-11-22", - "release_date_precision": "day", - "total_tracks": 18, - "type": "album", - "uri": "spotify:album:3V2ApPxUSquOkjLQU3wmjh" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52iwsT98xCoGgiGntTiR7K" - }, - "href": "https://api.spotify.com/v1/artists/52iwsT98xCoGgiGntTiR7K", - "id": "52iwsT98xCoGgiGntTiR7K", - "name": "Quevedo", - "type": "artist", - "uri": "spotify:artist:52iwsT98xCoGgiGntTiR7K" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 165762, - "explicit": false, - "external_ids": { - "isrc": "ES03H2400011" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/67LKV40NfSSGIJnm0xz6fi" - }, - "href": "https://api.spotify.com/v1/tracks/67LKV40NfSSGIJnm0xz6fi", - "id": "67LKV40NfSSGIJnm0xz6fi", - "is_local": false, - "is_playable": true, - "name": "MR. MOONDIAL", - "popularity": 74, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:67LKV40NfSSGIJnm0xz6fi" - } - ] -} diff --git a/tests/fixtures/artists.json b/tests/fixtures/artists.json deleted file mode 100644 index aabb9d1..0000000 --- a/tests/fixtures/artists.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2CIMQHirSU0MQqyYHq0eOx" - }, - "followers": { - "href": null, - "total": 2835004 - }, - "genres": [ - "edm", - "progressive house", - "dubstep" - ], - "href": "https://api.spotify.com/v1/artists/2CIMQHirSU0MQqyYHq0eOx?locale=en-US%2Cen%3Bq%3D0.5", - "id": "2CIMQHirSU0MQqyYHq0eOx", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb89ffabe57a25cedeca3309e7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517489ffabe57a25cedeca3309e7", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17889ffabe57a25cedeca3309e7", - "height": 160, - "width": 160 - } - ], - "name": "deadmau5", - "popularity": 66, - "type": "artist", - "uri": "spotify:artist:2CIMQHirSU0MQqyYHq0eOx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/57dN52uHvrHOxijzpIgu3E" - }, - "followers": { - "href": null, - "total": 601117 - }, - "genres": [ - "indietronica", - "electronic rock" - ], - "href": "https://api.spotify.com/v1/artists/57dN52uHvrHOxijzpIgu3E?locale=en-US%2Cen%3Bq%3D0.5", - "id": "57dN52uHvrHOxijzpIgu3E", - "images": [ - { - "url": "https://i.scdn.co/image/2f0c6c465a83cd196e651e3d4e7625ba799a6f60", - "height": 693, - "width": 1000 - }, - { - "url": "https://i.scdn.co/image/4e3e13c8b993bde9898e49509fb9ae121636e05f", - "height": 444, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/dc68dd24b45b74ecce9d4ed486423673d683ced3", - "height": 139, - "width": 200 - }, - { - "url": "https://i.scdn.co/image/4e55ca05d4f336a2fa0e3062a7ec9778a201e8bc", - "height": 44, - "width": 63 - } - ], - "name": "Ratatat", - "popularity": 64, - "type": "artist", - "uri": "spotify:artist:57dN52uHvrHOxijzpIgu3E" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "followers": { - "href": null, - "total": 23344428 - }, - "genres": [ - "edm" - ], - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113", - "height": 160, - "width": 160 - } - ], - "name": "Avicii", - "popularity": 83, - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - } - ] -} diff --git a/tests/fixtures/audiobooks.json b/tests/fixtures/audiobooks.json deleted file mode 100644 index f10eff0..0000000 --- a/tests/fixtures/audiobooks.json +++ /dev/null @@ -1,11713 +0,0 @@ -{ - "audiobooks": [ - null, - null, - { - "authors": [ - { - "name": "Frank Herbert" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "chapters": { - "href": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe/chapters?offset=0&limit=50&locale=en-GB,en;q%3D0.9,eu;q%3D0.8", - "items": [ - { - "id": "73ThiUvDp7VbVX6tWTNjE4", - "description": "", - "chapter_number": 0, - "duration_ms": 60056, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Opening Credits", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:73ThiUvDp7VbVX6tWTNjE4", - "external_urls": { - "spotify": "https://open.spotify.com/episode/73ThiUvDp7VbVX6tWTNjE4" - }, - "href": "https://api.spotify.com/v1/chapters/73ThiUvDp7VbVX6tWTNjE4" - }, - { - "id": "7zdR7zJCuEzLEJkSWYlEWj", - "description": "", - "chapter_number": 1, - "duration_ms": 1737274, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 1", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7zdR7zJCuEzLEJkSWYlEWj", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7zdR7zJCuEzLEJkSWYlEWj" - }, - "href": "https://api.spotify.com/v1/chapters/7zdR7zJCuEzLEJkSWYlEWj" - }, - { - "id": "6wbkoWAKtlVHC0pk46ORyd", - "description": "", - "chapter_number": 2, - "duration_ms": 1257875, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 2", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6wbkoWAKtlVHC0pk46ORyd", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6wbkoWAKtlVHC0pk46ORyd" - }, - "href": "https://api.spotify.com/v1/chapters/6wbkoWAKtlVHC0pk46ORyd" - }, - { - "id": "6JVmsEPc2uOX551TCWVHUQ", - "description": "", - "chapter_number": 3, - "duration_ms": 998244, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 3", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6JVmsEPc2uOX551TCWVHUQ", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6JVmsEPc2uOX551TCWVHUQ" - }, - "href": "https://api.spotify.com/v1/chapters/6JVmsEPc2uOX551TCWVHUQ" - }, - { - "id": "3Tfs2OyT4dBurDFBmxpA3Z", - "description": "", - "chapter_number": 4, - "duration_ms": 1387808, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 4", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3Tfs2OyT4dBurDFBmxpA3Z", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3Tfs2OyT4dBurDFBmxpA3Z" - }, - "href": "https://api.spotify.com/v1/chapters/3Tfs2OyT4dBurDFBmxpA3Z" - }, - { - "id": "0oduVqcMbgrXrhlhmtRaUl", - "description": "", - "chapter_number": 5, - "duration_ms": 606459, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 5", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0oduVqcMbgrXrhlhmtRaUl", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0oduVqcMbgrXrhlhmtRaUl" - }, - "href": "https://api.spotify.com/v1/chapters/0oduVqcMbgrXrhlhmtRaUl" - }, - { - "id": "2SUk86PXGjOptTcmuwQuzA", - "description": "", - "chapter_number": 6, - "duration_ms": 940696, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 6", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2SUk86PXGjOptTcmuwQuzA", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2SUk86PXGjOptTcmuwQuzA" - }, - "href": "https://api.spotify.com/v1/chapters/2SUk86PXGjOptTcmuwQuzA" - }, - { - "id": "0aV28m0uV3KTKxxjtbfics", - "description": "", - "chapter_number": 7, - "duration_ms": 1620245, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 7", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0aV28m0uV3KTKxxjtbfics", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0aV28m0uV3KTKxxjtbfics" - }, - "href": "https://api.spotify.com/v1/chapters/0aV28m0uV3KTKxxjtbfics" - }, - { - "id": "32ajSFsIg0j1x7nfcIbORW", - "description": "", - "chapter_number": 8, - "duration_ms": 1309388, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 8", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:32ajSFsIg0j1x7nfcIbORW", - "external_urls": { - "spotify": "https://open.spotify.com/episode/32ajSFsIg0j1x7nfcIbORW" - }, - "href": "https://api.spotify.com/v1/chapters/32ajSFsIg0j1x7nfcIbORW" - }, - { - "id": "5rfIxa6UYIkSFlP2mL2ovu", - "description": "", - "chapter_number": 9, - "duration_ms": 581983, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 9", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5rfIxa6UYIkSFlP2mL2ovu", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5rfIxa6UYIkSFlP2mL2ovu" - }, - "href": "https://api.spotify.com/v1/chapters/5rfIxa6UYIkSFlP2mL2ovu" - }, - { - "id": "477FnG3smKF8cZTn4T3rnN", - "description": "", - "chapter_number": 10, - "duration_ms": 1236742, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 10", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:477FnG3smKF8cZTn4T3rnN", - "external_urls": { - "spotify": "https://open.spotify.com/episode/477FnG3smKF8cZTn4T3rnN" - }, - "href": "https://api.spotify.com/v1/chapters/477FnG3smKF8cZTn4T3rnN" - }, - { - "id": "5TRMZm6VkIiXR384u5ZQr3", - "description": "", - "chapter_number": 11, - "duration_ms": 768392, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 11", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5TRMZm6VkIiXR384u5ZQr3", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5TRMZm6VkIiXR384u5ZQr3" - }, - "href": "https://api.spotify.com/v1/chapters/5TRMZm6VkIiXR384u5ZQr3" - }, - { - "id": "1F1x57cJyvLxnbzGOqdeur", - "description": "", - "chapter_number": 12, - "duration_ms": 2322965, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 12", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1F1x57cJyvLxnbzGOqdeur", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1F1x57cJyvLxnbzGOqdeur" - }, - "href": "https://api.spotify.com/v1/chapters/1F1x57cJyvLxnbzGOqdeur" - }, - { - "id": "4ETF6jtwY0Xpf8JilpLsRa", - "description": "", - "chapter_number": 13, - "duration_ms": 744516, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 13", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4ETF6jtwY0Xpf8JilpLsRa", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4ETF6jtwY0Xpf8JilpLsRa" - }, - "href": "https://api.spotify.com/v1/chapters/4ETF6jtwY0Xpf8JilpLsRa" - }, - { - "id": "3Dfui4lmf6bi6YAen3EABM", - "description": "", - "chapter_number": 14, - "duration_ms": 498182, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 14", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3Dfui4lmf6bi6YAen3EABM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3Dfui4lmf6bi6YAen3EABM" - }, - "href": "https://api.spotify.com/v1/chapters/3Dfui4lmf6bi6YAen3EABM" - }, - { - "id": "6IPghpa2z4FeNwcVlqbcWC", - "description": "", - "chapter_number": 15, - "duration_ms": 3164396, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 15", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6IPghpa2z4FeNwcVlqbcWC", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6IPghpa2z4FeNwcVlqbcWC" - }, - "href": "https://api.spotify.com/v1/chapters/6IPghpa2z4FeNwcVlqbcWC" - }, - { - "id": "33fos0bqN1TLYreVtVd32r", - "description": "", - "chapter_number": 16, - "duration_ms": 3244879, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 16", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:33fos0bqN1TLYreVtVd32r", - "external_urls": { - "spotify": "https://open.spotify.com/episode/33fos0bqN1TLYreVtVd32r" - }, - "href": "https://api.spotify.com/v1/chapters/33fos0bqN1TLYreVtVd32r" - }, - { - "id": "29fjoyMwqwmKJtc6yNZuEJ", - "description": "", - "chapter_number": 17, - "duration_ms": 1851560, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 17", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:29fjoyMwqwmKJtc6yNZuEJ", - "external_urls": { - "spotify": "https://open.spotify.com/episode/29fjoyMwqwmKJtc6yNZuEJ" - }, - "href": "https://api.spotify.com/v1/chapters/29fjoyMwqwmKJtc6yNZuEJ" - }, - { - "id": "4Mj1tl85Ue9MK0pgfgHarR", - "description": "", - "chapter_number": 18, - "duration_ms": 759981, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 18", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4Mj1tl85Ue9MK0pgfgHarR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4Mj1tl85Ue9MK0pgfgHarR" - }, - "href": "https://api.spotify.com/v1/chapters/4Mj1tl85Ue9MK0pgfgHarR" - }, - { - "id": "3yADXAbeustrCocpeHxUCp", - "description": "", - "chapter_number": 19, - "duration_ms": 1547442, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 19", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3yADXAbeustrCocpeHxUCp", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3yADXAbeustrCocpeHxUCp" - }, - "href": "https://api.spotify.com/v1/chapters/3yADXAbeustrCocpeHxUCp" - }, - { - "id": "2DngPhNwMz9LejeFNFk571", - "description": "", - "chapter_number": 20, - "duration_ms": 398864, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 20", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2DngPhNwMz9LejeFNFk571", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2DngPhNwMz9LejeFNFk571" - }, - "href": "https://api.spotify.com/v1/chapters/2DngPhNwMz9LejeFNFk571" - }, - { - "id": "24sEDN4P9plH5XC0cGhu3z", - "description": "", - "chapter_number": 21, - "duration_ms": 2013885, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 21", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:24sEDN4P9plH5XC0cGhu3z", - "external_urls": { - "spotify": "https://open.spotify.com/episode/24sEDN4P9plH5XC0cGhu3z" - }, - "href": "https://api.spotify.com/v1/chapters/24sEDN4P9plH5XC0cGhu3z" - }, - { - "id": "2lctt39yGO8PVWOlm6MJZN", - "description": "", - "chapter_number": 22, - "duration_ms": 2204605, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 22", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2lctt39yGO8PVWOlm6MJZN", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2lctt39yGO8PVWOlm6MJZN" - }, - "href": "https://api.spotify.com/v1/chapters/2lctt39yGO8PVWOlm6MJZN" - }, - { - "id": "7MKcghyeGn4ZdvopzubNN3", - "description": "", - "chapter_number": 23, - "duration_ms": 715756, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 1", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7MKcghyeGn4ZdvopzubNN3", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7MKcghyeGn4ZdvopzubNN3" - }, - "href": "https://api.spotify.com/v1/chapters/7MKcghyeGn4ZdvopzubNN3" - }, - { - "id": "4zTOq40lKE3rBzwW4YSZij", - "description": "", - "chapter_number": 24, - "duration_ms": 1677010, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 2", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4zTOq40lKE3rBzwW4YSZij", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4zTOq40lKE3rBzwW4YSZij" - }, - "href": "https://api.spotify.com/v1/chapters/4zTOq40lKE3rBzwW4YSZij" - }, - { - "id": "08MYfv81KfnankqZqLTb3T", - "description": "", - "chapter_number": 25, - "duration_ms": 1892154, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 3", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:08MYfv81KfnankqZqLTb3T", - "external_urls": { - "spotify": "https://open.spotify.com/episode/08MYfv81KfnankqZqLTb3T" - }, - "href": "https://api.spotify.com/v1/chapters/08MYfv81KfnankqZqLTb3T" - }, - { - "id": "6NNR9oWRgY9pxEaB37mJ11", - "description": "", - "chapter_number": 26, - "duration_ms": 1503191, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 4", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6NNR9oWRgY9pxEaB37mJ11", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6NNR9oWRgY9pxEaB37mJ11" - }, - "href": "https://api.spotify.com/v1/chapters/6NNR9oWRgY9pxEaB37mJ11" - }, - { - "id": "26kNqrRZOpLtYqDkD3zXIG", - "description": "", - "chapter_number": 27, - "duration_ms": 2232059, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 5", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:26kNqrRZOpLtYqDkD3zXIG", - "external_urls": { - "spotify": "https://open.spotify.com/episode/26kNqrRZOpLtYqDkD3zXIG" - }, - "href": "https://api.spotify.com/v1/chapters/26kNqrRZOpLtYqDkD3zXIG" - }, - { - "id": "5A5TCBfKyALXV9n7gMAlSk", - "description": "", - "chapter_number": 28, - "duration_ms": 918936, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 6", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5A5TCBfKyALXV9n7gMAlSk", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5A5TCBfKyALXV9n7gMAlSk" - }, - "href": "https://api.spotify.com/v1/chapters/5A5TCBfKyALXV9n7gMAlSk" - }, - { - "id": "7CAUsYnK6WH25ECbB2RoIk", - "description": "", - "chapter_number": 29, - "duration_ms": 1460899, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 7", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7CAUsYnK6WH25ECbB2RoIk", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7CAUsYnK6WH25ECbB2RoIk" - }, - "href": "https://api.spotify.com/v1/chapters/7CAUsYnK6WH25ECbB2RoIk" - }, - { - "id": "1k93wGYEEjYYVcAGLy0K7I", - "description": "", - "chapter_number": 30, - "duration_ms": 1212918, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 8", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1k93wGYEEjYYVcAGLy0K7I", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1k93wGYEEjYYVcAGLy0K7I" - }, - "href": "https://api.spotify.com/v1/chapters/1k93wGYEEjYYVcAGLy0K7I" - }, - { - "id": "7M885ouJ7cr0frNA5Pb0Y3", - "description": "", - "chapter_number": 31, - "duration_ms": 1736438, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 9", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7M885ouJ7cr0frNA5Pb0Y3", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7M885ouJ7cr0frNA5Pb0Y3" - }, - "href": "https://api.spotify.com/v1/chapters/7M885ouJ7cr0frNA5Pb0Y3" - }, - { - "id": "01bThkNFrxa8IHkLjMrUkW", - "description": "", - "chapter_number": 32, - "duration_ms": 1343165, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 10", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:01bThkNFrxa8IHkLjMrUkW", - "external_urls": { - "spotify": "https://open.spotify.com/episode/01bThkNFrxa8IHkLjMrUkW" - }, - "href": "https://api.spotify.com/v1/chapters/01bThkNFrxa8IHkLjMrUkW" - }, - { - "id": "3xZAVq4uRNe8UQLaL18dmB", - "description": "", - "chapter_number": 33, - "duration_ms": 2047426, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 11", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3xZAVq4uRNe8UQLaL18dmB", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3xZAVq4uRNe8UQLaL18dmB" - }, - "href": "https://api.spotify.com/v1/chapters/3xZAVq4uRNe8UQLaL18dmB" - }, - { - "id": "402Y8O19dElX8xuAY5VnJZ", - "description": "", - "chapter_number": 34, - "duration_ms": 1986273, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 12", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:402Y8O19dElX8xuAY5VnJZ", - "external_urls": { - "spotify": "https://open.spotify.com/episode/402Y8O19dElX8xuAY5VnJZ" - }, - "href": "https://api.spotify.com/v1/chapters/402Y8O19dElX8xuAY5VnJZ" - }, - { - "id": "5zFiYihxmwnkQxeXl3Z3Vf", - "description": "", - "chapter_number": 35, - "duration_ms": 2839119, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 13", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5zFiYihxmwnkQxeXl3Z3Vf", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5zFiYihxmwnkQxeXl3Z3Vf" - }, - "href": "https://api.spotify.com/v1/chapters/5zFiYihxmwnkQxeXl3Z3Vf" - }, - { - "id": "13r6Hp8WFXyzWHMn6huHpx", - "description": "", - "chapter_number": 36, - "duration_ms": 1397264, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 14", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:13r6Hp8WFXyzWHMn6huHpx", - "external_urls": { - "spotify": "https://open.spotify.com/episode/13r6Hp8WFXyzWHMn6huHpx" - }, - "href": "https://api.spotify.com/v1/chapters/13r6Hp8WFXyzWHMn6huHpx" - }, - { - "id": "6qtqoAXjtnh2PLQ5t8KFFo", - "description": "", - "chapter_number": 37, - "duration_ms": 2321163, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 15", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6qtqoAXjtnh2PLQ5t8KFFo", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6qtqoAXjtnh2PLQ5t8KFFo" - }, - "href": "https://api.spotify.com/v1/chapters/6qtqoAXjtnh2PLQ5t8KFFo" - }, - { - "id": "6aIH2AMngxR4j9Z8meDwQW", - "description": "", - "chapter_number": 38, - "duration_ms": 1232510, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 1", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6aIH2AMngxR4j9Z8meDwQW", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6aIH2AMngxR4j9Z8meDwQW" - }, - "href": "https://api.spotify.com/v1/chapters/6aIH2AMngxR4j9Z8meDwQW" - }, - { - "id": "6ILiWXyPyQzRqI2HGWNZbY", - "description": "", - "chapter_number": 39, - "duration_ms": 1055112, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 2", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6ILiWXyPyQzRqI2HGWNZbY", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6ILiWXyPyQzRqI2HGWNZbY" - }, - "href": "https://api.spotify.com/v1/chapters/6ILiWXyPyQzRqI2HGWNZbY" - }, - { - "id": "19oUIVtDPSHDzC7OELsw6a", - "description": "", - "chapter_number": 40, - "duration_ms": 1898789, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 3", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:19oUIVtDPSHDzC7OELsw6a", - "external_urls": { - "spotify": "https://open.spotify.com/episode/19oUIVtDPSHDzC7OELsw6a" - }, - "href": "https://api.spotify.com/v1/chapters/19oUIVtDPSHDzC7OELsw6a" - }, - { - "id": "3UPOWZj22wwik20wzxfz3M", - "description": "", - "chapter_number": 41, - "duration_ms": 1531690, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 4", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3UPOWZj22wwik20wzxfz3M", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3UPOWZj22wwik20wzxfz3M" - }, - "href": "https://api.spotify.com/v1/chapters/3UPOWZj22wwik20wzxfz3M" - }, - { - "id": "00PlgkfJtH1D2p5kKcsqRm", - "description": "", - "chapter_number": 42, - "duration_ms": 1074600, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 5", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:00PlgkfJtH1D2p5kKcsqRm", - "external_urls": { - "spotify": "https://open.spotify.com/episode/00PlgkfJtH1D2p5kKcsqRm" - }, - "href": "https://api.spotify.com/v1/chapters/00PlgkfJtH1D2p5kKcsqRm" - }, - { - "id": "7JM6CGIDx4huFNhWG91TtH", - "description": "", - "chapter_number": 43, - "duration_ms": 2439759, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 6", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7JM6CGIDx4huFNhWG91TtH", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7JM6CGIDx4huFNhWG91TtH" - }, - "href": "https://api.spotify.com/v1/chapters/7JM6CGIDx4huFNhWG91TtH" - }, - { - "id": "66zZV7mG5q1sJkaJY75Xwk", - "description": "", - "chapter_number": 44, - "duration_ms": 2018926, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 7", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:66zZV7mG5q1sJkaJY75Xwk", - "external_urls": { - "spotify": "https://open.spotify.com/episode/66zZV7mG5q1sJkaJY75Xwk" - }, - "href": "https://api.spotify.com/v1/chapters/66zZV7mG5q1sJkaJY75Xwk" - }, - { - "id": "6KhPKC5MHl88WNm6ZkntUi", - "description": "", - "chapter_number": 45, - "duration_ms": 1608882, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 8", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6KhPKC5MHl88WNm6ZkntUi", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6KhPKC5MHl88WNm6ZkntUi" - }, - "href": "https://api.spotify.com/v1/chapters/6KhPKC5MHl88WNm6ZkntUi" - }, - { - "id": "2nKo6lLWxinuQFUQ9cyqzv", - "description": "", - "chapter_number": 46, - "duration_ms": 1282587, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 9", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2nKo6lLWxinuQFUQ9cyqzv", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2nKo6lLWxinuQFUQ9cyqzv" - }, - "href": "https://api.spotify.com/v1/chapters/2nKo6lLWxinuQFUQ9cyqzv" - }, - { - "id": "1NveSJGfS8ncJnsDYxHPDS", - "description": "", - "chapter_number": 47, - "duration_ms": 1581297, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 10", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1NveSJGfS8ncJnsDYxHPDS", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1NveSJGfS8ncJnsDYxHPDS" - }, - "href": "https://api.spotify.com/v1/chapters/1NveSJGfS8ncJnsDYxHPDS" - }, - { - "id": "6bmPSreTIOCbWhsRVdD8Gz", - "description": "", - "chapter_number": 48, - "duration_ms": 3556572, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Chapter 11", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6bmPSreTIOCbWhsRVdD8Gz", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6bmPSreTIOCbWhsRVdD8Gz" - }, - "href": "https://api.spotify.com/v1/chapters/6bmPSreTIOCbWhsRVdD8Gz" - }, - { - "id": "0PMQAsGZ8f9tSTd9moghJs", - "description": "", - "chapter_number": 49, - "duration_ms": 53473, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314" - } - ], - "languages": [ - "" - ], - "name": "Ending Credits", - "audio_preview_url": null, - "release_date": "2007-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0PMQAsGZ8f9tSTd9moghJs", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0PMQAsGZ8f9tSTd9moghJs" - }, - "href": "https://api.spotify.com/v1/chapters/0PMQAsGZ8f9tSTd9moghJs" - } - ], - "limit": 50, - "next": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe/chapters?offset=50&limit=50&locale=en-GB,en;q%3D0.9,eu;q%3D0.8", - "offset": 0, - "previous": null, - "total": 51 - }, - "copyrights": [], - "description": "Author(s): Frank Herbert\nNarrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance\n

NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling

Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.

A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever.

", - "edition": "Unabridged", - "external_urls": { - "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" - }, - "explicit": false, - "href": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe?locale=en-GB%2Cen%3Bq%3D0.9%2Ceu%3Bq%3D0.8", - "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
<p><b>NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling<br></b><br>Set on the desert planet Arrakis, <i>Dune</i> is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.<br><br>A stunning blend of adventure and mysticism, environmentalism and politics, <i>Dune</i> won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever.</p>", - "id": "7iHfbu1YPACw6oZPAFJtqe", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", - "height": 64, - "width": 64 - } - ], - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Dune: Book One in the Dune Chronicles", - "narrators": [ - { - "name": "Scott Brick" - }, - { - "name": "Orlagh Cassidy" - }, - { - "name": "Euan Morton" - }, - { - "name": "Ilyana Kadushin" - }, - { - "name": "Simon Vance" - } - ], - "publisher": "Frank Herbert", - "total_chapters": 51, - "type": "audiobook", - "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe" - } - ] -} diff --git a/tests/fixtures/categories.json b/tests/fixtures/categories.json deleted file mode 100644 index 4dc20ca..0000000 --- a/tests/fixtures/categories.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "categories": { - "href": "https://api.spotify.com/v1/browse/categories?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAt0tbjZptfcdMSKl3", - "id": "0JQ5DAt0tbjZptfcdMSKl3", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg", - "width": 274 - } - ], - "name": "Made For You" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFz6FAsUtgAab", - "id": "0JQ5DAqbMKFz6FAsUtgAab", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg", - "width": 274 - } - ], - "name": "New Releases" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFEC4WFtoNRpw", - "id": "0JQ5DAqbMKFEC4WFtoNRpw", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/pop-274x274_447148649685019f5e2a03a39e78ba52_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "Pop" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFQ00XGBls6ym", - "id": "0JQ5DAqbMKFQ00XGBls6ym", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg", - "width": 274 - } - ], - "name": "Hip-Hop" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFHOzuVTgTizF", - "id": "0JQ5DAqbMKFHOzuVTgTizF", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/edm-274x274_0ef612604200a9c14995432994455a6d_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "Dance/Electronic" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFCLroFGPFVr5", - "id": "0JQ5DAqbMKFCLroFGPFVr5", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/970c289306e64c8782ecc84de5dea795.jpeg", - "width": 274 - } - ], - "name": "Dutch music" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAudkNjCgYMM0TZXDw", - "id": "0JQ5DAudkNjCgYMM0TZXDw", - "icons": [ - { - "height": 274, - "url": "https://charts-images.scdn.co/spotify-charts-logos/music_charts_search_arrow_274x274.jpeg", - "width": 274 - } - ], - "name": "Charts" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFzHmL4tf05da", - "id": "0JQ5DAqbMKFzHmL4tf05da", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/original/mood-274x274_976986a31ac8c49794cbdc7246fd5ad7_274x274.jpg", - "width": 274 - } - ], - "name": "Mood" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFCWjUTdzaG0e", - "id": "0JQ5DAqbMKFCWjUTdzaG0e", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/fe06caf056474bc58862591cd60b57fc.jpeg", - "width": 274 - } - ], - "name": "Indie" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFIRybaNTYXXy", - "id": "0JQ5DAqbMKFIRybaNTYXXy", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg", - "width": 274 - } - ], - "name": "In the car" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFEZPnFQSFB1T", - "id": "0JQ5DAqbMKFEZPnFQSFB1T", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/r-b-274x274_fd56efa72f4f63764b011b68121581d8_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "R&B" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAtOnAEpjOgUKwXyxj", - "id": "0JQ5DAtOnAEpjOgUKwXyxj", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/728ed47fc1674feb95f7ac20236eb6d7.jpeg", - "width": 274 - } - ], - "name": "Discover" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFA6SOHvT3gck", - "id": "0JQ5DAqbMKFA6SOHvT3gck", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/7ee6530d5b3c4acc9a0957046bf11d63", - "width": 274 - } - ], - "name": "Party" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFAXlCG6QvYQ4", - "id": "0JQ5DAqbMKFAXlCG6QvYQ4", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/links/workout-274x274.png", - "width": 274 - } - ], - "name": "Workout" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFGnsSfvg90Wo", - "id": "0JQ5DAqbMKFGnsSfvg90Wo", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/c5495b9f0f694ffcb39c9217d4ed4375", - "width": 274 - } - ], - "name": "GLOW" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFNQ0fGp4byGU", - "id": "0JQ5DAqbMKFNQ0fGp4byGU", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/b505b01bbe0e490cbe43b07f16212892.jpeg", - "width": 274 - } - ], - "name": "Afro" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFGvOw3O4nLAf", - "id": "0JQ5DAqbMKFGvOw3O4nLAf", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/images/2078afd91e4d431eb19efc5bee5ab131.jpeg", - "width": 274 - } - ], - "name": "K-pop" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFIpEuaCnimBj", - "id": "0JQ5DAqbMKFIpEuaCnimBj", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/soul-274x274_266bc900b35dda8956380cffc73a4d8c_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "Soul" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFFzDl7qN9Apr", - "id": "0JQ5DAqbMKFFzDl7qN9Apr", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/chill-274x274_4c46374f007813dd10b37e8d8fd35b4b_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "Chill" - }, - { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFDXXwE9BDJAr", - "id": "0JQ5DAqbMKFDXXwE9BDJAr", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/derived/rock_9ce79e0a4ef901bbd10494f5b855d3cc_0_0_274_274.jpg", - "width": 274 - } - ], - "name": "Rock" - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/browse/categories?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 56 - } -} diff --git a/tests/fixtures/category.json b/tests/fixtures/category.json deleted file mode 100644 index d60605c..0000000 --- a/tests/fixtures/category.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFRY5ok2pxXJ0", - "id": "0JQ5DAqbMKFRY5ok2pxXJ0", - "icons": [ - { - "height": 274, - "url": "https://t.scdn.co/media/original/dinner_1b6506abba0ba52c54e6d695c8571078_274x274.jpg", - "width": 274 - } - ], - "name": "Cooking & Dining" -} diff --git a/tests/fixtures/category_playlists.json b/tests/fixtures/category_playlists.json deleted file mode 100644 index 9c0d5b4..0000000 --- a/tests/fixtures/category_playlists.json +++ /dev/null @@ -1,732 +0,0 @@ -{ - "playlists": { - "href": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFRY5ok2pxXJ0/playlists?country=NL&offset=0&limit=20", - "items": [ - { - "collaborative": false, - "description": "Lekker eten en lang natafelen? Daar hoort muziek bij.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX7yhuKT9G4qk" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX7yhuKT9G4qk", - "id": "37i9dQZF1DX7yhuKT9G4qk", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000343319faa9428405f3312b588", - "width": null - } - ], - "name": "eten met vrienden", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTY5Njk3NywwMDAwMDAwMDkyY2JjZDA1MjA2YTBmNzMxMmFlNGI0YzRhMjg0ZWZl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX7yhuKT9G4qk/tracks", - "total": 313 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX7yhuKT9G4qk" - }, - { - "collaborative": false, - "description": "From new retro to classic country blues, honky tonk, rockabilly, and more.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXbvE0SE0Cczh" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbvE0SE0Cczh", - "id": "37i9dQZF1DXbvE0SE0Cczh", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003b93c270883619dde61725fc8", - "width": null - } - ], - "name": "Jukebox Joint", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY4NjkxODgwMiwwMDAwMDAwMGUwNWRkNjY5N2UzM2Q4NzI4NzRiZmNhMGVmMzAyZTA5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbvE0SE0Cczh/tracks", - "total": 60 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXbvE0SE0Cczh" - }, - { - "collaborative": false, - "description": "Classic and new soul music for the perfect dinner.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZheHO7xislj" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZheHO7xislj", - "id": "37i9dQZF1DWZheHO7xislj", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034b69d5ba7d5a9940475c3ef2", - "width": null - } - ], - "name": "Soulful Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTY5NTYzMSwwMDAwMDAwMDQxMzBhMjM4NDZmYTY0MDI1Njk0MjJiNzQzYzg5NTM4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZheHO7xislj/tracks", - "total": 200 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZheHO7xislj" - }, - { - "collaborative": false, - "description": "Cold beer. Hot wings. Great rock. ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXauOWFg72pbl" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXauOWFg72pbl", - "id": "37i9dQZF1DXauOWFg72pbl", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034b04e77913de1fc2a4b819df", - "width": null - } - ], - "name": "Beer & Wings", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY5NjM1NjkyNSwwMDAwMDAwMGE0ZDEzMDkyNjViZTZmNWQ5OWRmZTg1MzVjMWJiZjY0", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXauOWFg72pbl/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXauOWFg72pbl" - }, - { - "collaborative": false, - "description": "An uplifting yet tasteful dinner playlist with a guaranteed feel good vibe.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXbm6HfkbMtFZ" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbm6HfkbMtFZ", - "id": "37i9dQZF1DXbm6HfkbMtFZ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000032ba865eb4204be02ce3e8e09", - "width": null - } - ], - "name": "Feel Good Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjMwNzM4OCwwMDAwMDAwMDhhZjNmZjdiYWRkZDM1NjMxOWM0YTc5M2I3ZmQxMjIw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbm6HfkbMtFZ/tracks", - "total": 115 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXbm6HfkbMtFZ" - }, - { - "collaborative": false, - "description": "Instrumental Jazz to set the mood for a relaxed evening.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTALrdBtcXjw" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTALrdBtcXjw", - "id": "37i9dQZF1DWTALrdBtcXjw", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034311976b3775ca3ab337366c", - "width": null - } - ], - "name": "Jazzy Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU0NTMzMSwwMDAwMDAwMGEzOTk3N2FmNzViZDlmNzM2ZGM4ZDQwMmJhZGFiN2Zk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTALrdBtcXjw/tracks", - "total": 150 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWTALrdBtcXjw" - }, - { - "collaborative": false, - "description": "Sultry house and mellow beats to accompany your cocktail drinks.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX6syac0fWYdV" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6syac0fWYdV", - "id": "37i9dQZF1DX6syac0fWYdV", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003a9daf47636eec9303a28bcfb", - "width": null - } - ], - "name": "Cocktail Lounge", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTQ1Mjc5MywwMDAwMDAwMDkwZTdkYTYzMjllMjUzMDA5M2Q2NzYwMWYyMjFiYWVk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6syac0fWYdV/tracks", - "total": 186 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX6syac0fWYdV" - }, - { - "collaborative": false, - "description": "Take yourself to Havana with some Cuban Salsa and Café favourites.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZLN2cXno63R" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZLN2cXno63R", - "id": "37i9dQZF1DWZLN2cXno63R", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d142d7feb73b11db237b11e8", - "width": null - } - ], - "name": "Café Cubano", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY4NjgzNTk3MywwMDAwMDAwMDRhYzdiNzI5NWE2NzgyNWZiMzkwYmMzY2U2NThhNzVk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZLN2cXno63R/tracks", - "total": 62 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZLN2cXno63R" - }, - { - "collaborative": false, - "description": "La playlist à la cool pour accompagner votre dîner !", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX915ogFalrko" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX915ogFalrko", - "id": "37i9dQZF1DX915ogFalrko", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000036ec804b14464d59cd9ddcd17", - "width": null - } - ], - "name": "Dîner entre amis", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMDgwNzkxMywwMDAwMDAwMDBiN2U1NTRkYzgzYjAwOTBlN2RkNWU3MGFmN2ZkMDg2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX915ogFalrko/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX915ogFalrko" - }, - { - "collaborative": false, - "description": "The perfect soundtrack to those long nights over dinner", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4xuWVBs4FgJ" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4xuWVBs4FgJ", - "id": "37i9dQZF1DX4xuWVBs4FgJ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000036e515187c071e45918e9f0de", - "width": null - } - ], - "name": "Dinner with Friends", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMDUwMDUwOSwwMDAwMDAwMGVkYmNjMDNiMDA5NTYxZGM2ZTIyZjFmODhiM2I2ZmE4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4xuWVBs4FgJ/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4xuWVBs4FgJ" - }, - { - "collaborative": false, - "description": "Lekker eten en lang natafelen? Daar hoort muziek bij.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX7yhuKT9G4qk" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX7yhuKT9G4qk", - "id": "37i9dQZF1DX7yhuKT9G4qk", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000343319faa9428405f3312b588", - "width": null - } - ], - "name": "eten met vrienden", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTY5Njk3NywwMDAwMDAwMDkyY2JjZDA1MjA2YTBmNzMxMmFlNGI0YzRhMjg0ZWZl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX7yhuKT9G4qk/tracks", - "total": 313 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX7yhuKT9G4qk" - }, - { - "collaborative": false, - "description": "Gettin' figgy with it, bana-na-na-nanana", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX2FsCLsHeMrM" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX2FsCLsHeMrM", - "id": "37i9dQZF1DX2FsCLsHeMrM", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000038dc9fe0c14e5f34ad165e3c2", - "width": null - } - ], - "name": "Kitchen Swagger", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY5Nzc3NDQwMCwwMDAwMDAwMDE1NDNlZWNkZjAxZTNjYzhlZTM3YTNjY2Q5NDMzZjJm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX2FsCLsHeMrM/tracks", - "total": 150 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX2FsCLsHeMrM" - }, - { - "collaborative": false, - "description": "An uplifting yet tasteful dinner playlist with a guaranteed feel good vibe.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXbm6HfkbMtFZ" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbm6HfkbMtFZ", - "id": "37i9dQZF1DXbm6HfkbMtFZ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000032ba865eb4204be02ce3e8e09", - "width": null - } - ], - "name": "Feel Good Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjMwNzM4OCwwMDAwMDAwMDhhZjNmZjdiYWRkZDM1NjMxOWM0YTc5M2I3ZmQxMjIw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXbm6HfkbMtFZ/tracks", - "total": 115 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXbm6HfkbMtFZ" - }, - { - "collaborative": false, - "description": "Classic and new soul music for the perfect dinner.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZheHO7xislj" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZheHO7xislj", - "id": "37i9dQZF1DWZheHO7xislj", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034b69d5ba7d5a9940475c3ef2", - "width": null - } - ], - "name": "Soulful Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTY5NTYzMSwwMDAwMDAwMDQxMzBhMjM4NDZmYTY0MDI1Njk0MjJiNzQzYzg5NTM4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZheHO7xislj/tracks", - "total": 200 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZheHO7xislj" - }, - { - "collaborative": false, - "description": "Buon Appetito!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWT1R6bXL4dyW" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWT1R6bXL4dyW", - "id": "37i9dQZF1DWT1R6bXL4dyW", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003c294a27b8c4fc98462b8b6a9", - "width": null - } - ], - "name": "The Perfect Italian Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY4NjkxODExNywwMDAwMDAwMGFhYmFmMzk1ZjE4YzMyY2NkYmQwZDRhODMzMjVhYTlk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWT1R6bXL4dyW/tracks", - "total": 54 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWT1R6bXL4dyW" - }, - { - "collaborative": false, - "description": "As you prepare and settle into your romantic dinner, let us provide the soundtrack with these RnB/Soul love songs.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTJNOeepZTGy" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTJNOeepZTGy", - "id": "37i9dQZF1DWTJNOeepZTGy", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003196ba4b8d065a628edeac3b0", - "width": null - } - ], - "name": "Wine & Dine", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY4NjgzNjY0MiwwMDAwMDAwMGRmZjU1ZWI0NjE2OGJjOGExNmQ4YzQyMGQyZjAwMWJl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTJNOeepZTGy/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWTJNOeepZTGy" - }, - { - "collaborative": false, - "description": "Instrumental Jazz to set the mood for a relaxed evening.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTALrdBtcXjw" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTALrdBtcXjw", - "id": "37i9dQZF1DWTALrdBtcXjw", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034311976b3775ca3ab337366c", - "width": null - } - ], - "name": "Jazzy Dinner", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU0NTMzMSwwMDAwMDAwMGEzOTk3N2FmNzViZDlmNzM2ZGM4ZDQwMmJhZGFiN2Zk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTALrdBtcXjw/tracks", - "total": 150 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWTALrdBtcXjw" - }, - { - "collaborative": false, - "description": "Chill & Bumpy", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWVUxkQFrGCkK" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWVUxkQFrGCkK", - "id": "37i9dQZF1DWVUxkQFrGCkK", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000030795c45ffc1c5b0b48689b79", - "width": null - } - ], - "name": "Umami", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU5NDgwMCwwMDAwMDAwMGE1NTVkZmViNWNiYmQzNzRiYTQ2NjNiNzJlYmJjNzRl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWVUxkQFrGCkK/tracks", - "total": 223 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWVUxkQFrGCkK" - }, - { - "collaborative": false, - "description": "Take yourself to Havana with some Cuban Salsa and Café favourites.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZLN2cXno63R" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZLN2cXno63R", - "id": "37i9dQZF1DWZLN2cXno63R", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d142d7feb73b11db237b11e8", - "width": null - } - ], - "name": "Café Cubano", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY4NjgzNTk3MywwMDAwMDAwMDRhYzdiNzI5NWE2NzgyNWZiMzkwYmMzY2U2NThhNzVk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZLN2cXno63R/tracks", - "total": 62 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZLN2cXno63R" - }, - { - "collaborative": false, - "description": "Great food, good company and some soft music. ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXatMjChPKgBk" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXatMjChPKgBk", - "id": "37i9dQZF1DXatMjChPKgBk", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003df69720bbead04d106b7182e", - "width": null - } - ], - "name": "Dinner Music", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTY5Nzc3NDQwMCwwMDAwMDAwMDg2NzJkMGZlOGIyNjczM2E2MGUxMWM3NTkxZDZkYzYx", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXatMjChPKgBk/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXatMjChPKgBk" - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/browse/categories/0JQ5DAqbMKFRY5ok2pxXJ0/playlists?country=NL&offset=20&limit=20", - "offset": 0, - "previous": null, - "total": 46 - } -} diff --git a/tests/fixtures/chapters.json b/tests/fixtures/chapters.json deleted file mode 100644 index 2e20537..0000000 --- a/tests/fixtures/chapters.json +++ /dev/null @@ -1,475 +0,0 @@ -{ - "chapters": [ - { - "id": "3NW4BmIOG0qzQZgtLgsydR", - "description": "", - "chapter_number": 0, - "duration_ms": 249652, - "explicit": false, - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "languages": [ - "nl" - ], - "name": "Track 1", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 156000 - }, - "is_playable": true, - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "audiobook": { - "authors": [ - { - "name": "Anya Niewierra" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra\nNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

\n
\n

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
\nHeleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
\nRob Cobben, cultuurverslaggever Dagblad De Limburger

", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De nomade", - "narrators": [ - { - "name": "Nienke Brinkhuis" - }, - { - "name": "Cees van Ede" - }, - { - "name": "Mattijn Hartemink" - } - ], - "publisher": "Anya Niewierra", - "total_chapters": 49, - "type": "audiobook", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" - }, - "type": "chapter", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/chapters/3NW4BmIOG0qzQZgtLgsydR" - } - ] -} diff --git a/tests/fixtures/episodes.json b/tests/fixtures/episodes.json deleted file mode 100644 index 1667051..0000000 --- a/tests/fixtures/episodes.json +++ /dev/null @@ -1,274 +0,0 @@ -{ - "episodes": [ - null, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 90000 - }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "total_episodes": 122, - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" - }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" - } - ] -} diff --git a/tests/fixtures/featured_playlists.json b/tests/fixtures/featured_playlists.json deleted file mode 100644 index 84f3019..0000000 --- a/tests/fixtures/featured_playlists.json +++ /dev/null @@ -1,733 +0,0 @@ -{ - "message": "Popular Playlists", - "playlists": { - "href": "https://api.spotify.com/v1/browse/featured-playlists?country=NL×tamp=2023-12-18T18%3A35%3A35&offset=0&limit=20", - "items": [ - { - "collaborative": false, - "description": "De ideale playlist voor het fijne kerstgevoel bij de boom!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4dopZ9vOp1t" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4dopZ9vOp1t", - "id": "37i9dQZF1DX4dopZ9vOp1t", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000037d14c267b8ee5fea2246a8fe", - "width": null - } - ], - "name": "Kerst Hits 2023", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU2ODI4MSwwMDAwMDAwMDE1ZGRiNzI3OGY4OGU2MzA1MWNkZGMyNTdmNDUwMTc1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4dopZ9vOp1t/tracks", - "total": 298 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4dopZ9vOp1t" - }, - { - "collaborative": false, - "description": "De 50 populairste hits van Nederland. Cover: Jack Harlow", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWSBi5svWQ9Nk" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWSBi5svWQ9Nk", - "id": "37i9dQZF1DWSBi5svWQ9Nk", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003f7b99051789611a49101c1cf", - "width": null - } - ], - "name": "Top Hits NL", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU5NDgwMCwwMDAwMDAwMDU4NWY2MTE4NmU4NmIwMDdlMGE4ZGRkOTZkN2U2MzAx", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWSBi5svWQ9Nk/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWSBi5svWQ9Nk" - }, - { - "collaborative": false, - "description": "The biggest Christmas songs of all time.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX0Yxoavh5qJV" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX0Yxoavh5qJV", - "id": "37i9dQZF1DX0Yxoavh5qJV", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003ef53563c4fa1187c7537f13f", - "width": null - } - ], - "name": "Christmas Hits", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjg3OTA0NSwwMDAwMDAwMDRmOTM2YTk5ODgwNmYyZjEyYjlhMDRhOWM4M2Q4ZGZi", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX0Yxoavh5qJV/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX0Yxoavh5qJV" - }, - { - "collaborative": false, - "description": "Luister de Radio 2 Top 2000 - 2023 - Editie 25!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTmvXBN4DgpA" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTmvXBN4DgpA", - "id": "37i9dQZF1DWTmvXBN4DgpA", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034a3550dfb857569735d6c5ab", - "width": null - } - ], - "name": "Top 2000", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjY1NzMwMiwwMDAwMDAwMGQzZjA0ODY5YTQ5N2E0OWNkOTUwMzJhOGI5OTdhODlm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTmvXBN4DgpA/tracks", - "total": 1996 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWTmvXBN4DgpA" - }, - { - "collaborative": false, - "description": "Lekker rustig aan doen op zondag met deze zachte pop liedjes.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZpGSuzrdTXg" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZpGSuzrdTXg", - "id": "37i9dQZF1DWZpGSuzrdTXg", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000034203ab0c15f6a3243fea16d8", - "width": null - } - ], - "name": "Easy On Sunday", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjYzOTE4OCwwMDAwMDAwMDNkMTdjMGZmOWI0Y2EyZjhjMWQyNGYyMzMzMmZmNzAy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZpGSuzrdTXg/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZpGSuzrdTXg" - }, - { - "collaborative": false, - "description": "Timeless heart-warming classics from 1940- 1980 for the holiday season.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX6R7QUWePReA" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6R7QUWePReA", - "id": "37i9dQZF1DX6R7QUWePReA", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003b70e0f51ac4cf9d62cee4977", - "width": null - } - ], - "name": "Christmas Classics", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTk3MzE4OCwwMDAwMDAwMDYwMzE0MjZjOTdjMWE1NTU0MzRjYTA5M2Y4ZWFmNzgz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6R7QUWePReA/tracks", - "total": 75 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX6R7QUWePReA" - }, - { - "collaborative": false, - "description": "De beste Nederlandse hits van vroeger en nu. Cover: Tino Martin & Mart Hoogkamer", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXdKMCnEhDnDL" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXdKMCnEhDnDL", - "id": "37i9dQZF1DXdKMCnEhDnDL", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d93ec9896683ab78fa949391", - "width": null - } - ], - "name": "Beste van NL", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjg5NDI1OSwwMDAwMDAwMDQ3YzU2NjYwMTNlMTRjMDAzZDc2YzM5Mjc0NzU5NTQ1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXdKMCnEhDnDL/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXdKMCnEhDnDL" - }, - { - "collaborative": false, - "description": "Reanny & King Ocho op de cover van Woordenschat!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX19xRtMyA5LM" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX19xRtMyA5LM", - "id": "37i9dQZF1DX19xRtMyA5LM", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003f90ad1550abb0e50440cc032", - "width": null - } - ], - "name": "Woordenschat", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU5NDgwMCwwMDAwMDAwMDc0NDA3YzkyM2IyZDcxYjUzZjNhZjQyOTU2MWRhZTQ1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX19xRtMyA5LM/tracks", - "total": 60 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX19xRtMyA5LM" - }, - { - "collaborative": false, - "description": "Koffie met gemoedelijke muziek op de achtergrond.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWYPwGkJoztcR" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYPwGkJoztcR", - "id": "37i9dQZF1DWYPwGkJoztcR", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000358e9793722274f9d7b7e85e6", - "width": null - } - ], - "name": "'t Koffiehuis", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU5NDgwMCwwMDAwMDAwMDVlMGY0N2JiZmI5ODQ3MWYwMGYyMTkwZDJhYzQwMjIx", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYPwGkJoztcR/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWYPwGkJoztcR" - }, - { - "collaborative": false, - "description": "De grootste hits uit de kroeg in één playlist.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWUppGmuwT9c7" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWUppGmuwT9c7", - "id": "37i9dQZF1DWUppGmuwT9c7", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d307684e485446632dce60ab", - "width": null - } - ], - "name": "Kroegenhits", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjg5NDQwNywwMDAwMDAwMDE5YWY2MDAzNjc2NDU3MWYxZjM1NGViOTQ4MTEyYTI1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWUppGmuwT9c7/tracks", - "total": 80 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWUppGmuwT9c7" - }, - { - "collaborative": false, - "description": "Niks aan te doen, Winter 2023 is coming! ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXcx1szy2g67M" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXcx1szy2g67M", - "id": "37i9dQZF1DXcx1szy2g67M", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003f2338153122480fcf814c326", - "width": null - } - ], - "name": "Winter '23", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU4MDE3MywwMDAwMDAwMGEyOWQ1NDNkYTAzMjBmODdkZjQ3YTAwOGYwYmFlZDVi", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXcx1szy2g67M/tracks", - "total": 99 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXcx1szy2g67M" - }, - { - "collaborative": false, - "description": "Kick back to the best new and recent chill hits.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4WYpdgoIcn6" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4WYpdgoIcn6", - "id": "37i9dQZF1DX4WYpdgoIcn6", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000385a267af7eab188ae99105ad", - "width": null - } - ], - "name": "Chill Hits", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjA2MDYxNCwwMDAwMDAwMGNlYmUyZDIxM2M2Zjg2NzU3OTc2YjgxMTNjNTViMGY3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4WYpdgoIcn6/tracks", - "total": 130 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4WYpdgoIcn6" - }, - { - "collaborative": false, - "description": "Mitski is on top of the Hottest 50!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", - "id": "37i9dQZF1DXcBWIGoYBM5M", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000037ac0d0713aa7b5a4fb38e273", - "width": null - } - ], - "name": "Today’s Top Hits", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjYxNjQwMCwwMDAwMDAwMDlkOTJiMzliYjhlNTQ0OWJiZWIwNjAyNjc1N2FlNWUw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M" - }, - { - "collaborative": false, - "description": "Warm instrumental versions of your favorite Christmas songs.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWU0r6G8OGirN" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWU0r6G8OGirN", - "id": "37i9dQZF1DWU0r6G8OGirN", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003c3196f5150c18abb9ce7db75", - "width": null - } - ], - "name": "Cozy Christmas Jazz", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjM4NTY1OCwwMDAwMDAwMDRkMzUzYzA0Y2U2YzNjZDg0MjI1MGI5NmNkZjU2M2I4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWU0r6G8OGirN/tracks", - "total": 83 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWU0r6G8OGirN" - }, - { - "collaborative": false, - "description": "De meest gestreamde tracks van 2023 in Nederland. Cover: Maan", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWZ58KqXkQf1S" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZ58KqXkQf1S", - "id": "37i9dQZF1DWZ58KqXkQf1S", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003f1590ccbee8af2a83ef32d73", - "width": null - } - ], - "name": "Top Tracks 2023 NL", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTI2MDE2MCwwMDAwMDAwMGZiNDY1ZWQzMzU2ODE1ZDYwM2ZhZjhmNTUyNTFlNTRm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWZ58KqXkQf1S/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWZ58KqXkQf1S" - }, - { - "collaborative": false, - "description": "De beste en nieuwste dance hits. Cover: David Guetta & Kim Petras", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWTwCImwcYjDL" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTwCImwcYjDL", - "id": "37i9dQZF1DWTwCImwcYjDL", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003c0aa04aa9a5a82b6471e3d01", - "width": null - } - ], - "name": "360 Dance", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjU3NzQ4MCwwMDAwMDAwMDAwNmMyM2FiMzlhYTA0N2FiNDBhOTAyZTcyNjZlYmUx", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWTwCImwcYjDL/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWTwCImwcYjDL" - }, - { - "collaborative": false, - "description": "De nieuwste releases elke vrijdag op Spotify! Cover: SERA, YouNotUs", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DXb5BKLTO7ULa" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXb5BKLTO7ULa", - "id": "37i9dQZF1DXb5BKLTO7ULa", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000038cd883983a21f8d91b6324c0", - "width": null - } - ], - "name": "New Music Friday NL", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjYzNDE0OCwwMDAwMDAwMDNiOWUwZmFmYzUwZjk5YTA4MzgwNjNhYWJkZDc0MTE3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DXb5BKLTO7ULa/tracks", - "total": 63 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DXb5BKLTO7ULa" - }, - { - "collaborative": false, - "description": "Motion, fissa & good vibes! Cover: J Balvin", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWXHyhanaNMoy" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWXHyhanaNMoy", - "id": "37i9dQZF1DWXHyhanaNMoy", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d469349e5325224b9f84c79c", - "width": null - } - ], - "name": "La Vida Loca", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjg5NTQ4OSwwMDAwMDAwMDEwZjVjZTQ2ZGUxZGIxOWEyZGIwMjQyODUzMTkzNWZm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWXHyhanaNMoy/tracks", - "total": 60 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWXHyhanaNMoy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWWMOmoXKqHTD" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWWMOmoXKqHTD", - "id": "37i9dQZF1DWWMOmoXKqHTD", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003ffa215be1a4c64e3cbf59d1e", - "width": null - } - ], - "name": "Songs to Sing in the Car", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMTQ1Mzg3MSwwMDAwMDAwMGY3NTUyMTczOTI4MDk2MGYxNTYyMzhjOTMzMWY3ODli", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWWMOmoXKqHTD/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWWMOmoXKqHTD" - }, - { - "collaborative": false, - "description": "Peaceful piano to help you slow down, breathe, and relax. ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4sWSpwq3LiO" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4sWSpwq3LiO", - "id": "37i9dQZF1DX4sWSpwq3LiO", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000003d073e656e546e43bc387ad79", - "width": null - } - ], - "name": "Peaceful Piano", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": null, - "snapshot_id": "MTcwMjg5NzM3MSwwMDAwMDAwMGU0OTEwYTRkZmExYmM1MGJjMDQ5ZjBlZTkyNGY1MjBi", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4sWSpwq3LiO/tracks", - "total": 227 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4sWSpwq3LiO" - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/browse/featured-playlists?country=NL×tamp=2023-12-18T18%3A35%3A35&offset=20&limit=20", - "offset": 0, - "previous": null, - "total": 24 - } -} diff --git a/tests/fixtures/new_releases.json b/tests/fixtures/new_releases.json deleted file mode 100644 index 6de8796..0000000 --- a/tests/fixtures/new_releases.json +++ /dev/null @@ -1,4262 +0,0 @@ -{ - "albums": { - "href": "https://api.spotify.com/v1/browse/new-releases?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU" - }, - "href": "https://api.spotify.com/v1/artists/4gzpq5DPGxSnKTe4SA8HAU", - "id": "4gzpq5DPGxSnKTe4SA8HAU", - "name": "Coldplay", - "type": "artist", - "uri": "spotify:artist:4gzpq5DPGxSnKTe4SA8HAU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5SGtrmYbIo0Dsg4kJ4qjM6" - }, - "href": "https://api.spotify.com/v1/albums/5SGtrmYbIo0Dsg4kJ4qjM6", - "id": "5SGtrmYbIo0Dsg4kJ4qjM6", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0209ba52a5116e0c3e8461f58b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485109ba52a5116e0c3e8461f58b", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27309ba52a5116e0c3e8461f58b", - "width": 640 - } - ], - "name": "Moon Music", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5SGtrmYbIo0Dsg4kJ4qjM6" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4U9nsRTH2mr9L4UXEWqG5e" - }, - "href": "https://api.spotify.com/v1/artists/4U9nsRTH2mr9L4UXEWqG5e", - "id": "4U9nsRTH2mr9L4UXEWqG5e", - "name": "Bente", - "type": "artist", - "uri": "spotify:artist:4U9nsRTH2mr9L4UXEWqG5e" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/713lZ7AF55fEFSQgcttj9y" - }, - "href": "https://api.spotify.com/v1/albums/713lZ7AF55fEFSQgcttj9y", - "id": "713lZ7AF55fEFSQgcttj9y", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ab9953b1d18f8233f6b26027", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ab9953b1d18f8233f6b26027", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ab9953b1d18f8233f6b26027", - "width": 640 - } - ], - "name": "drift", - "release_date": "2024-10-03", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:713lZ7AF55fEFSQgcttj9y" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7J41Q5hdwuBgyVo7zGhPhO" - }, - "href": "https://api.spotify.com/v1/artists/7J41Q5hdwuBgyVo7zGhPhO", - "id": "7J41Q5hdwuBgyVo7zGhPhO", - "name": "MEROL", - "type": "artist", - "uri": "spotify:artist:7J41Q5hdwuBgyVo7zGhPhO" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/49kVZFZguyqvfxt0HklIhg" - }, - "href": "https://api.spotify.com/v1/albums/49kVZFZguyqvfxt0HklIhg", - "id": "49kVZFZguyqvfxt0HklIhg", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ef565801d3a62e7da27d8d0a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ef565801d3a62e7da27d8d0a", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ef565801d3a62e7da27d8d0a", - "width": 640 - } - ], - "name": "Naar De Haaien & Weer Terug", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 15, - "type": "album", - "uri": "spotify:album:49kVZFZguyqvfxt0HklIhg" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/30mNTnmvPn3HwXA5dW1Iza" - }, - "href": "https://api.spotify.com/v1/artists/30mNTnmvPn3HwXA5dW1Iza", - "id": "30mNTnmvPn3HwXA5dW1Iza", - "name": "Racoon", - "type": "artist", - "uri": "spotify:artist:30mNTnmvPn3HwXA5dW1Iza" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5M84TQMlBTgqPZej6KCvVd" - }, - "href": "https://api.spotify.com/v1/albums/5M84TQMlBTgqPZej6KCvVd", - "id": "5M84TQMlBTgqPZej6KCvVd", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02527a4f51021439a52c266259", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851527a4f51021439a52c266259", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273527a4f51021439a52c266259", - "width": 640 - } - ], - "name": "It Is What It Is", - "release_date": "2024-10-03", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:5M84TQMlBTgqPZej6KCvVd" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3qnGvpP8Yth1AqSBMqON5x" - }, - "href": "https://api.spotify.com/v1/artists/3qnGvpP8Yth1AqSBMqON5x", - "id": "3qnGvpP8Yth1AqSBMqON5x", - "name": "Leon Bridges", - "type": "artist", - "uri": "spotify:artist:3qnGvpP8Yth1AqSBMqON5x" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6mHNMtHrXIdUWWuZD9njsG" - }, - "href": "https://api.spotify.com/v1/albums/6mHNMtHrXIdUWWuZD9njsG", - "id": "6mHNMtHrXIdUWWuZD9njsG", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b7ac31cd8650b673ed24ea71", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b7ac31cd8650b673ed24ea71", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b7ac31cd8650b673ed24ea71", - "width": 640 - } - ], - "name": "Leon", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:6mHNMtHrXIdUWWuZD9njsG" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6styCzc1Ej4NxISL0LiigM" - }, - "href": "https://api.spotify.com/v1/artists/6styCzc1Ej4NxISL0LiigM", - "id": "6styCzc1Ej4NxISL0LiigM", - "name": "The Smile", - "type": "artist", - "uri": "spotify:artist:6styCzc1Ej4NxISL0LiigM" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1wOiuWSlK5pQdpQP8VgH6F" - }, - "href": "https://api.spotify.com/v1/albums/1wOiuWSlK5pQdpQP8VgH6F", - "id": "1wOiuWSlK5pQdpQP8VgH6F", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026613d3127feee7ee948412f9", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516613d3127feee7ee948412f9", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736613d3127feee7ee948412f9", - "width": 640 - } - ], - "name": "Cutouts", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:1wOiuWSlK5pQdpQP8VgH6F" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EzkuveR9pLvDVFNx6foYD" - }, - "href": "https://api.spotify.com/v1/artists/4EzkuveR9pLvDVFNx6foYD", - "id": "4EzkuveR9pLvDVFNx6foYD", - "name": "James Bay", - "type": "artist", - "uri": "spotify:artist:4EzkuveR9pLvDVFNx6foYD" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1Dds4p0qcMEnSE7jlMEt8n" - }, - "href": "https://api.spotify.com/v1/albums/1Dds4p0qcMEnSE7jlMEt8n", - "id": "1Dds4p0qcMEnSE7jlMEt8n", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e029ee701eef621f69f3c2967ed", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048519ee701eef621f69f3c2967ed", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2739ee701eef621f69f3c2967ed", - "width": 640 - } - ], - "name": "Changes All The Time", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:1Dds4p0qcMEnSE7jlMEt8n" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2qXV33vUIb0D4YygTg7FCT" - }, - "href": "https://api.spotify.com/v1/artists/2qXV33vUIb0D4YygTg7FCT", - "id": "2qXV33vUIb0D4YygTg7FCT", - "name": "Genna", - "type": "artist", - "uri": "spotify:artist:2qXV33vUIb0D4YygTg7FCT" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7LJBpaTfUgMflZOz3JmMBv" - }, - "href": "https://api.spotify.com/v1/albums/7LJBpaTfUgMflZOz3JmMBv", - "id": "7LJBpaTfUgMflZOz3JmMBv", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b5d14d3f2fd36368daaf2da5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b5d14d3f2fd36368daaf2da5", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b5d14d3f2fd36368daaf2da5", - "width": 640 - } - ], - "name": "7 Stappen", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 7, - "type": "album", - "uri": "spotify:album:7LJBpaTfUgMflZOz3JmMBv" - }, - { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7nfwBKWMnPY7FJZQwh1wq8" - }, - "href": "https://api.spotify.com/v1/artists/7nfwBKWMnPY7FJZQwh1wq8", - "id": "7nfwBKWMnPY7FJZQwh1wq8", - "name": "Stenfert", - "type": "artist", - "uri": "spotify:artist:7nfwBKWMnPY7FJZQwh1wq8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4Kws98pwkccx24c0zLewXG" - }, - "href": "https://api.spotify.com/v1/albums/4Kws98pwkccx24c0zLewXG", - "id": "4Kws98pwkccx24c0zLewXG", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ddb058c1f361f94e8a89945d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ddb058c1f361f94e8a89945d", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ddb058c1f361f94e8a89945d", - "width": 640 - } - ], - "name": "Zeezout", - "release_date": "2024-10-03", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:4Kws98pwkccx24c0zLewXG" - }, - { - "album_type": "ep", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5mwcMzXAn2fReGFjXeGGsJ" - }, - "href": "https://api.spotify.com/v1/artists/5mwcMzXAn2fReGFjXeGGsJ", - "id": "5mwcMzXAn2fReGFjXeGGsJ", - "name": "Plume", - "type": "artist", - "uri": "spotify:artist:5mwcMzXAn2fReGFjXeGGsJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ixQBPjQSxlp1ITpzyzTHj" - }, - "href": "https://api.spotify.com/v1/albums/6ixQBPjQSxlp1ITpzyzTHj", - "id": "6ixQBPjQSxlp1ITpzyzTHj", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b612c27f3630e523d3ae5222", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b612c27f3630e523d3ae5222", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b612c27f3630e523d3ae5222", - "width": 640 - } - ], - "name": "The Rules", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:6ixQBPjQSxlp1ITpzyzTHj" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/37M5pPGs6V1fchFJSgCguX" - }, - "href": "https://api.spotify.com/v1/artists/37M5pPGs6V1fchFJSgCguX", - "id": "37M5pPGs6V1fchFJSgCguX", - "name": "FINNEAS", - "type": "artist", - "uri": "spotify:artist:37M5pPGs6V1fchFJSgCguX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7swV2ssDdlKc89h1DxUNh7" - }, - "href": "https://api.spotify.com/v1/albums/7swV2ssDdlKc89h1DxUNh7", - "id": "7swV2ssDdlKc89h1DxUNh7", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024db4ce3fe9ed73fb7bc79b4a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514db4ce3fe9ed73fb7bc79b4a", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734db4ce3fe9ed73fb7bc79b4a", - "width": 640 - } - ], - "name": "For Cryin' Out Loud!", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:7swV2ssDdlKc89h1DxUNh7" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4aEnNH9PuU1HF3TsZTru54" - }, - "href": "https://api.spotify.com/v1/artists/4aEnNH9PuU1HF3TsZTru54", - "id": "4aEnNH9PuU1HF3TsZTru54", - "name": "Caribou", - "type": "artist", - "uri": "spotify:artist:4aEnNH9PuU1HF3TsZTru54" - } - ], - "available_markets": [ - "AG", - "AR", - "BB", - "BO", - "BR", - "BS", - "BZ", - "CA", - "CL", - "CO", - "CR", - "CW", - "DM", - "DO", - "EC", - "GD", - "GT", - "GY", - "HN", - "HT", - "JM", - "KN", - "LC", - "MX", - "NI", - "PA", - "PE", - "PR", - "PY", - "SR", - "SV", - "TT", - "US", - "UY", - "VC", - "VE" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4c7fP0tUymaZcrEFIeIeZc" - }, - "href": "https://api.spotify.com/v1/albums/4c7fP0tUymaZcrEFIeIeZc", - "id": "4c7fP0tUymaZcrEFIeIeZc", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02959bd39a899174acc5788b32", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851959bd39a899174acc5788b32", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273959bd39a899174acc5788b32", - "width": 640 - } - ], - "name": "Honey", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:4c7fP0tUymaZcrEFIeIeZc" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4IS4EyXNmiI2w5SRCjMtEF" - }, - "href": "https://api.spotify.com/v1/artists/4IS4EyXNmiI2w5SRCjMtEF", - "id": "4IS4EyXNmiI2w5SRCjMtEF", - "name": "Kendji Girac", - "type": "artist", - "uri": "spotify:artist:4IS4EyXNmiI2w5SRCjMtEF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5gpwMpxd66j2WAmGcyiWXQ" - }, - "href": "https://api.spotify.com/v1/albums/5gpwMpxd66j2WAmGcyiWXQ", - "id": "5gpwMpxd66j2WAmGcyiWXQ", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024f89a971bf651f14622c96e6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514f89a971bf651f14622c96e6", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734f89a971bf651f14622c96e6", - "width": 640 - } - ], - "name": "Vivre...", - "release_date": "2024-10-03", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:5gpwMpxd66j2WAmGcyiWXQ" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0oK5D6uPhGu4Jk2dbZfodU" - }, - "href": "https://api.spotify.com/v1/artists/0oK5D6uPhGu4Jk2dbZfodU", - "id": "0oK5D6uPhGu4Jk2dbZfodU", - "name": "Thee Sacred Souls", - "type": "artist", - "uri": "spotify:artist:0oK5D6uPhGu4Jk2dbZfodU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6yvKcQNyd09wYCCp8O8mNB" - }, - "href": "https://api.spotify.com/v1/albums/6yvKcQNyd09wYCCp8O8mNB", - "id": "6yvKcQNyd09wYCCp8O8mNB", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b97ef79f12cc9a0d35975650", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b97ef79f12cc9a0d35975650", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b97ef79f12cc9a0d35975650", - "width": 640 - } - ], - "name": "Got a Story to Tell", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:6yvKcQNyd09wYCCp8O8mNB" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1HY2Jd0NmPuamShAr6KMms" - }, - "href": "https://api.spotify.com/v1/artists/1HY2Jd0NmPuamShAr6KMms", - "id": "1HY2Jd0NmPuamShAr6KMms", - "name": "Lady Gaga", - "type": "artist", - "uri": "spotify:artist:1HY2Jd0NmPuamShAr6KMms" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6eKdAMXNBlXNtPy7OdBL50" - }, - "href": "https://api.spotify.com/v1/albums/6eKdAMXNBlXNtPy7OdBL50", - "id": "6eKdAMXNBlXNtPy7OdBL50", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028c6bfaa9549f8438bcafb668", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518c6bfaa9549f8438bcafb668", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738c6bfaa9549f8438bcafb668", - "width": 640 - } - ], - "name": "Harlequin", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:6eKdAMXNBlXNtPy7OdBL50" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6OQggpm01CmAB717TKtDCr" - }, - "href": "https://api.spotify.com/v1/artists/6OQggpm01CmAB717TKtDCr", - "id": "6OQggpm01CmAB717TKtDCr", - "name": "Dopebwoy", - "type": "artist", - "uri": "spotify:artist:6OQggpm01CmAB717TKtDCr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2UZ05NpzJ76d06VBQrKWtv" - }, - "href": "https://api.spotify.com/v1/albums/2UZ05NpzJ76d06VBQrKWtv", - "id": "2UZ05NpzJ76d06VBQrKWtv", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025c1f6dec99d4f4982963296f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515c1f6dec99d4f4982963296f", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735c1f6dec99d4f4982963296f", - "width": 640 - } - ], - "name": "Koude Kermis", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 15, - "type": "album", - "uri": "spotify:album:2UZ05NpzJ76d06VBQrKWtv" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6OG9fZ1LKXyL0hShRmmnq1" - }, - "href": "https://api.spotify.com/v1/artists/6OG9fZ1LKXyL0hShRmmnq1", - "id": "6OG9fZ1LKXyL0hShRmmnq1", - "name": "Davina Michelle", - "type": "artist", - "uri": "spotify:artist:6OG9fZ1LKXyL0hShRmmnq1" - } - ], - "available_markets": [ - "CW", - "NL" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2Yfh7AQ5WbJFv6RwIAbJck" - }, - "href": "https://api.spotify.com/v1/albums/2Yfh7AQ5WbJFv6RwIAbJck", - "id": "2Yfh7AQ5WbJFv6RwIAbJck", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02aab04c8651437b6d474d9356", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851aab04c8651437b6d474d9356", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273aab04c8651437b6d474d9356", - "width": 640 - } - ], - "name": "Higher", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:2Yfh7AQ5WbJFv6RwIAbJck" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5m1cLmgZIfEYPLejhLFR10" - }, - "href": "https://api.spotify.com/v1/artists/5m1cLmgZIfEYPLejhLFR10", - "id": "5m1cLmgZIfEYPLejhLFR10", - "name": "Fresku", - "type": "artist", - "uri": "spotify:artist:5m1cLmgZIfEYPLejhLFR10" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0wMC6I2G3sKvhcsjn8N1Kd" - }, - "href": "https://api.spotify.com/v1/albums/0wMC6I2G3sKvhcsjn8N1Kd", - "id": "0wMC6I2G3sKvhcsjn8N1Kd", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02bb80524c82fb9a2605494293", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851bb80524c82fb9a2605494293", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273bb80524c82fb9a2605494293", - "width": 640 - } - ], - "name": "Leren Leven", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 30, - "type": "album", - "uri": "spotify:album:0wMC6I2G3sKvhcsjn8N1Kd" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1hqxH66i1ZwEBAkzORVRPW" - }, - "href": "https://api.spotify.com/v1/artists/1hqxH66i1ZwEBAkzORVRPW", - "id": "1hqxH66i1ZwEBAkzORVRPW", - "name": "Berre", - "type": "artist", - "uri": "spotify:artist:1hqxH66i1ZwEBAkzORVRPW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2ICkFYDtOYuiOC41VAy7qi" - }, - "href": "https://api.spotify.com/v1/albums/2ICkFYDtOYuiOC41VAy7qi", - "id": "2ICkFYDtOYuiOC41VAy7qi", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c89f084086fef78ac2136f5d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c89f084086fef78ac2136f5d", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c89f084086fef78ac2136f5d", - "width": 640 - } - ], - "name": "I'll Call You When I'm Home", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:2ICkFYDtOYuiOC41VAy7qi" - }, - { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fTSzq9jAh4c36UVb4V7CB" - }, - "href": "https://api.spotify.com/v1/artists/0fTSzq9jAh4c36UVb4V7CB", - "id": "0fTSzq9jAh4c36UVb4V7CB", - "name": "Alex Warren", - "type": "artist", - "uri": "spotify:artist:0fTSzq9jAh4c36UVb4V7CB" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1cVpXZnVWHTDUuY8kW6x8M" - }, - "href": "https://api.spotify.com/v1/albums/1cVpXZnVWHTDUuY8kW6x8M", - "id": "1cVpXZnVWHTDUuY8kW6x8M", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026a794c49d6df89ec45d5b925", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516a794c49d6df89ec45d5b925", - "width": 64 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736a794c49d6df89ec45d5b925", - "width": 640 - } - ], - "name": "You'll Be Alright, Kid (Chapter 1)", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:1cVpXZnVWHTDUuY8kW6x8M" - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/browse/new-releases?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 100 - } -} diff --git a/tests/fixtures/user.json b/tests/fixtures/user.json deleted file mode 100644 index 8beaf72..0000000 --- a/tests/fixtures/user.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "images": [], - "type": "user", - "uri": "spotify:user:smedjan", - "followers": { - "href": null, - "total": 84 - } -} diff --git a/tests/fixtures/user_playlist.json b/tests/fixtures/user_playlist.json deleted file mode 100644 index 28e8322..0000000 --- a/tests/fixtures/user_playlist.json +++ /dev/null @@ -1,3760 +0,0 @@ -{ - "href": "https://api.spotify.com/v1/users/smedjan/playlists?offset=0&limit=100&locale=en-US,en;q%3D0.5", - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 98, - "items": [ - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1CBGDKGM8kekBPfAG5jPZt" - }, - "href": "https://api.spotify.com/v1/playlists/1CBGDKGM8kekBPfAG5jPZt", - "id": "1CBGDKGM8kekBPfAG5jPZt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022910c6fc625b0d5ae2eed26aab67616d00001e023dc315e27e5cae6e5519823aab67616d00001e02d272c37389bd3d9c20564166ab67616d00001e02d5bb99cd52da195675b2f2cd", - "width": 60 - } - ], - "name": "Starred", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABEP1mXdhPfoWmcM1L+GcTwxB8crh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1CBGDKGM8kekBPfAG5jPZt/tracks", - "total": 118 - }, - "type": "playlist", - "uri": "spotify:playlist:1CBGDKGM8kekBPfAG5jPZt" - }, - { - "collaborative": false, - "description": "A mish mash of a bunch of songs that you can maybe dance to. Curated by Nick Toumpelis. Photography by Nick Toumpelis. ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3tT3E3Q4u5Xd0v3ySPLR1O" - }, - "href": "https://api.spotify.com/v1/playlists/3tT3E3Q4u5Xd0v3ySPLR1O", - "id": "3tT3E3Q4u5Xd0v3ySPLR1O", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84f8496493a06aec2c3eda1a42", - "width": null - } - ], - "name": "dance fusion", - "owner": { - "display_name": "Nick Toumpelis", - "external_urls": { - "spotify": "https://open.spotify.com/user/1226836970" - }, - "href": "https://api.spotify.com/v1/users/1226836970", - "id": "1226836970", - "type": "user", - "uri": "spotify:user:1226836970" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAN3eephAMj/tM4sCQtXXGRL39TnfyI", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3tT3E3Q4u5Xd0v3ySPLR1O/tracks", - "total": 22 - }, - "type": "playlist", - "uri": "spotify:playlist:3tT3E3Q4u5Xd0v3ySPLR1O" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/41R1UENL6yUDiRR2riptb7" - }, - "href": "https://api.spotify.com/v1/playlists/41R1UENL6yUDiRR2riptb7", - "id": "41R1UENL6yUDiRR2riptb7", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02087ae01edc17b3fbe0f44b28ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e027d4287bed60bfc5f13d96644ab67616d00001e02bef76218c65153abaed75e6e", - "width": 60 - } - ], - "name": "covers and under covers", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI/w2S+ZDqxZYvcPeBLI8h8BXGaGv", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/41R1UENL6yUDiRR2riptb7/tracks", - "total": 22 - }, - "type": "playlist", - "uri": "spotify:playlist:41R1UENL6yUDiRR2riptb7" - }, - { - "collaborative": false, - "description": "Bombastic tunes -- in some way or another", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6dSh5StaaE1XbIF5s7Lxng" - }, - "href": "https://api.spotify.com/v1/playlists/6dSh5StaaE1XbIF5s7Lxng", - "id": "6dSh5StaaE1XbIF5s7Lxng", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020dd350beeb5ac73672ad6e80ab67616d00001e02341b1e5f0395b17821491c7dab67616d00001e024ccb64f022a53d3e8ec84a20ab67616d00001e02e477610ef54781d751a9e319", - "width": 60 - } - ], - "name": "Fläskiga låtar", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABDR+cig8lZhZCDMyEdhX8v8t8Pb6r", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6dSh5StaaE1XbIF5s7Lxng/tracks", - "total": 44 - }, - "type": "playlist", - "uri": "spotify:playlist:6dSh5StaaE1XbIF5s7Lxng" - }, - { - "collaborative": false, - "description": "Migo", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6hBpet9cW4cVgn96xBJ5Ay" - }, - "href": "https://api.spotify.com/v1/playlists/6hBpet9cW4cVgn96xBJ5Ay", - "id": "6hBpet9cW4cVgn96xBJ5Ay", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02578f1ac435ac326e48334f66ab67616d00001e02722ee6054732c347e335cb35ab67616d00001e02810168d54f85d48f07389237ab67616d00001e02e477610ef54781d751a9e319", - "width": 60 - } - ], - "name": "migo1", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAbUWFczxCb7xWrXTgRM3XWd/LZXBy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6hBpet9cW4cVgn96xBJ5Ay/tracks", - "total": 66 - }, - "type": "playlist", - "uri": "spotify:playlist:6hBpet9cW4cVgn96xBJ5Ay" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/47s8Pj6MjV5UWYEaHIe9ZH" - }, - "href": "https://api.spotify.com/v1/playlists/47s8Pj6MjV5UWYEaHIe9ZH", - "id": "47s8Pj6MjV5UWYEaHIe9ZH", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023a2d2b9621ef645380c63c16ab67616d00001e02ba4c798ab356b8adb64bb2fcab67616d00001e02ba6132f887666a2627eb8a56ab67616d00001e02dbe9c4609ec382dcc0391e62", - "width": 60 - } - ], - "name": "Dance I Said", - "owner": { - "display_name": "Michelle Kadir", - "external_urls": { - "spotify": "https://open.spotify.com/user/michellekadir" - }, - "href": "https://api.spotify.com/v1/users/michellekadir", - "id": "michellekadir", - "type": "user", - "uri": "spotify:user:michellekadir" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAACj+vJmuuu9qF+sfuRAF4/DobgjK9A", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/47s8Pj6MjV5UWYEaHIe9ZH/tracks", - "total": 106 - }, - "type": "playlist", - "uri": "spotify:playlist:47s8Pj6MjV5UWYEaHIe9ZH" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/13XT3kKAKOuhKV1IdgQxzf" - }, - "href": "https://api.spotify.com/v1/playlists/13XT3kKAKOuhKV1IdgQxzf", - "id": "13XT3kKAKOuhKV1IdgQxzf", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0242165edf668b41cb531722b0ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e0297a9ac8888b636959cd8353cab67616d00001e029d2ff3fc2590549e13f17670", - "width": 60 - } - ], - "name": "Instrumental", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAaexNZNsKfIdbduU2LWqYssLAJDeV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/13XT3kKAKOuhKV1IdgQxzf/tracks", - "total": 71 - }, - "type": "playlist", - "uri": "spotify:playlist:13XT3kKAKOuhKV1IdgQxzf" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/70lIZA6kTENcryaoGNIPaA" - }, - "href": "https://api.spotify.com/v1/playlists/70lIZA6kTENcryaoGNIPaA", - "id": "70lIZA6kTENcryaoGNIPaA", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02d3c8ce1e6e072e0e70dfdf17", - "width": null - } - ], - "name": "Steve Via - The Story of Light", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABkBoVa8raTptxqzLTaGBiO+KrVhG", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/70lIZA6kTENcryaoGNIPaA/tracks", - "total": 12 - }, - "type": "playlist", - "uri": "spotify:playlist:70lIZA6kTENcryaoGNIPaA" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6FTrJV6xPwAxEGNsIDG5Uj" - }, - "href": "https://api.spotify.com/v1/playlists/6FTrJV6xPwAxEGNsIDG5Uj", - "id": "6FTrJV6xPwAxEGNsIDG5Uj", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0210a9b88453d9d4a3aeb55a18ab67616d00001e0266c35697a32e5437811bb5ffab67616d00001e02a0ef2b3fa19f6d2a03149dcaab67616d00001e02a1fc113a6858d0824d9aaf38", - "width": 60 - } - ], - "name": "Pulp Fiction (approximate)", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHmclCP7gC8WRgXmAGnlUEd5/MEwS", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6FTrJV6xPwAxEGNsIDG5Uj/tracks", - "total": 12 - }, - "type": "playlist", - "uri": "spotify:playlist:6FTrJV6xPwAxEGNsIDG5Uj" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2tiFrJw4jgaQEDTGkNY4Lt" - }, - "href": "https://api.spotify.com/v1/playlists/2tiFrJw4jgaQEDTGkNY4Lt", - "id": "2tiFrJw4jgaQEDTGkNY4Lt", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e021d7f86bc0a6c0cab4503aa17", - "width": null - } - ], - "name": "friday", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABBJjO7EPw3zdSgEViZmC6cm/ZMQm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2tiFrJw4jgaQEDTGkNY4Lt/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:2tiFrJw4jgaQEDTGkNY4Lt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0EDdjGp3CRtWBWesrDv45e" - }, - "href": "https://api.spotify.com/v1/playlists/0EDdjGp3CRtWBWesrDv45e", - "id": "0EDdjGp3CRtWBWesrDv45e", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84046a80315ca7366b7e337a0f", - "width": null - } - ], - "name": "07:42", - "owner": { - "display_name": "robin", - "external_urls": { - "spotify": "https://open.spotify.com/user/robbanrapp" - }, - "href": "https://api.spotify.com/v1/users/robbanrapp", - "id": "robbanrapp", - "type": "user", - "uri": "spotify:user:robbanrapp" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABKK/kHYxANffpjs3zU9cgV97C+y1F", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0EDdjGp3CRtWBWesrDv45e/tracks", - "total": 165 - }, - "type": "playlist", - "uri": "spotify:playlist:0EDdjGp3CRtWBWesrDv45e" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/29e81WfoAsVIwEzXpSv2KT" - }, - "href": "https://api.spotify.com/v1/playlists/29e81WfoAsVIwEzXpSv2KT", - "id": "29e81WfoAsVIwEzXpSv2KT", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0240c7f05b85afeda3c365a03eab67616d00001e029a5a33aa7954b5519feb5692ab67616d00001e02aa7d2641af0fa4c1f76fafbfab67616d00001e02b3591763154a27326b3f431a", - "width": 60 - } - ], - "name": "Top 100 Tracks of 2011", - "owner": { - "display_name": "Pitchfork", - "external_urls": { - "spotify": "https://open.spotify.com/user/pitchfork" - }, - "href": "https://api.spotify.com/v1/users/pitchfork", - "id": "pitchfork", - "type": "user", - "uri": "spotify:user:pitchfork" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA4jNnQSrRstOMNQOfXlVa1VRXkC2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/29e81WfoAsVIwEzXpSv2KT/tracks", - "total": 97 - }, - "type": "playlist", - "uri": "spotify:playlist:29e81WfoAsVIwEzXpSv2KT" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6sjcAKwplYdvNVmXuVWqYK" - }, - "href": "https://api.spotify.com/v1/playlists/6sjcAKwplYdvNVmXuVWqYK", - "id": "6sjcAKwplYdvNVmXuVWqYK", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84c421935777d6aa97ca36f613", - "width": null - } - ], - "name": "Kanye West - The Samples", - "owner": { - "display_name": "Starfish & Coffee", - "external_urls": { - "spotify": "https://open.spotify.com/user/125214440" - }, - "href": "https://api.spotify.com/v1/users/125214440", - "id": "125214440", - "type": "user", - "uri": "spotify:user:125214440" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABJ8MZ+XMzW/OZ1mAdHnA/DlQQTUvw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6sjcAKwplYdvNVmXuVWqYK/tracks", - "total": 147 - }, - "type": "playlist", - "uri": "spotify:playlist:6sjcAKwplYdvNVmXuVWqYK" - }, - { - "collaborative": false, - "description": "The official Billboard Hot 100 features this week's most popular songs across all genres, ranked by radio airplay monitored by Nielsen BDS, download sales tracked by Nielsen SoundScan and streaming activity data provided by leading online music services. For more information go to Billboard.com.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6UeSakyzhiEt4NB3UAd6NQ" - }, - "href": "https://api.spotify.com/v1/playlists/6UeSakyzhiEt4NB3UAd6NQ", - "id": "6UeSakyzhiEt4NB3UAd6NQ", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da843bd5501a335b265807df34db", - "width": null - } - ], - "name": "Billboard Hot 100", - "owner": { - "display_name": "Billboard", - "external_urls": { - "spotify": "https://open.spotify.com/user/billboard.com" - }, - "href": "https://api.spotify.com/v1/users/billboard.com", - "id": "billboard.com", - "type": "user", - "uri": "spotify:user:billboard.com" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAA1L/XcI7hkEbmApg4UXCZ1ALvDSbbV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6UeSakyzhiEt4NB3UAd6NQ/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:6UeSakyzhiEt4NB3UAd6NQ" - }, - { - "collaborative": false, - "description": "Ta det lugnt & koppla av till vårmysiga & behagliga låtar. Kärlekssånger, sköna hits, svenska klassiker, akustiska låtar & vackra ballader.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4tIypOcGSBi4GPlXbbNBmf" - }, - "href": "https://api.spotify.com/v1/playlists/4tIypOcGSBi4GPlXbbNBmf", - "id": "4tIypOcGSBi4GPlXbbNBmf", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84bd5af3266f629da301350735", - "width": null - } - ], - "name": "LUGNA LÅTAR 2025 🌼 lugn & mysig musik", - "owner": { - "display_name": "Filtr Sweden", - "external_urls": { - "spotify": "https://open.spotify.com/user/sonymusicentertainment" - }, - "href": "https://api.spotify.com/v1/users/sonymusicentertainment", - "id": "sonymusicentertainment", - "type": "user", - "uri": "spotify:user:sonymusicentertainment" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAA6agtt3akNarzCGjDuqamv6E1/LWcb", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4tIypOcGSBi4GPlXbbNBmf/tracks", - "total": 212 - }, - "type": "playlist", - "uri": "spotify:playlist:4tIypOcGSBi4GPlXbbNBmf" - }, - { - "collaborative": false, - "description": "Sveriges största och bästa svenska klassiker, sånger och hits genom tiderna. Sommarhits och klassiska favoriter – svensk musik sommaren 2025.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/26uqIdWqPakRB3c6Lw8I7C" - }, - "href": "https://api.spotify.com/v1/playlists/26uqIdWqPakRB3c6Lw8I7C", - "id": "26uqIdWqPakRB3c6Lw8I7C", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416ee66851f6fc81d954cc240", - "width": null - } - ], - "name": "Svenska låtar & klassiker alla kan! 🇸🇪", - "owner": { - "display_name": "Filtr Sweden", - "external_urls": { - "spotify": "https://open.spotify.com/user/sonymusicentertainment" - }, - "href": "https://api.spotify.com/v1/users/sonymusicentertainment", - "id": "sonymusicentertainment", - "type": "user", - "uri": "spotify:user:sonymusicentertainment" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAuaiJx6lAcbN2EjlFoRoTFoeM/pCtF", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/26uqIdWqPakRB3c6Lw8I7C/tracks", - "total": 426 - }, - "type": "playlist", - "uri": "spotify:playlist:26uqIdWqPakRB3c6Lw8I7C" - }, - { - "collaborative": false, - "description": "Världens bästa och mest tidlösa rockmusik i en mix av klassiska & nya rockhits från Judas Priest, Ozzy Osbourne, AC/DC, Scorpions, Bruce Springsteen med flera.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1sNULKBP0MR5SCDhoTUGT1" - }, - "href": "https://api.spotify.com/v1/playlists/1sNULKBP0MR5SCDhoTUGT1", - "id": "1sNULKBP0MR5SCDhoTUGT1", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da844a3cbf9b6b1eeb03701cfae4", - "width": null - } - ], - "name": "Rock Hits ⚡️", - "owner": { - "display_name": "Filtr Legacy Sweden", - "external_urls": { - "spotify": "https://open.spotify.com/user/legacysweden" - }, - "href": "https://api.spotify.com/v1/users/legacysweden", - "id": "legacysweden", - "type": "user", - "uri": "spotify:user:legacysweden" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAJ1SDVZJWgzb+vESIDxF/s5G3OJ1UE", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1sNULKBP0MR5SCDhoTUGT1/tracks", - "total": 233 - }, - "type": "playlist", - "uri": "spotify:playlist:1sNULKBP0MR5SCDhoTUGT1" - }, - { - "collaborative": false, - "description": "Summer chill beach vibes playlist all genres 2000s - 2024.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4u4WSPyfvZ4RrpWWnmjIYY" - }, - "href": "https://api.spotify.com/v1/playlists/4u4WSPyfvZ4RrpWWnmjIYY", - "id": "4u4WSPyfvZ4RrpWWnmjIYY", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c59e76846e27ba7f51db46ae5", - "width": null - } - ], - "name": "Beach Vibes 🌴 Summertime Hits 2025", - "owner": { - "display_name": "Beach Vibes", - "external_urls": { - "spotify": "https://open.spotify.com/user/jhsizemore" - }, - "href": "https://api.spotify.com/v1/users/jhsizemore", - "id": "jhsizemore", - "type": "user", - "uri": "spotify:user:jhsizemore" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAVKcTWKmHcmEhSBQE2GE1bbKVRehbi", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4u4WSPyfvZ4RrpWWnmjIYY/tracks", - "total": 206 - }, - "type": "playlist", - "uri": "spotify:playlist:4u4WSPyfvZ4RrpWWnmjIYY" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1jiWNIRgT9whCQZMGDzsZU" - }, - "href": "https://api.spotify.com/v1/playlists/1jiWNIRgT9whCQZMGDzsZU", - "id": "1jiWNIRgT9whCQZMGDzsZU", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02396bcd4043a871d830c848a3ab67616d00001e02678bfbaf23b8dfa454017b0bab67616d00001e02c40c3ae9c8d60ccf0a4baa8bab67616d00001e02e202fd7dbb4262a37b85a644", - "width": 60 - } - ], - "name": "RS Playlist", - "owner": { - "display_name": "Rolling Stone", - "external_urls": { - "spotify": "https://open.spotify.com/user/rsedit" - }, - "href": "https://api.spotify.com/v1/users/rsedit", - "id": "rsedit", - "type": "user", - "uri": "spotify:user:rsedit" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABSkXHsTkHiZed3O+jFE6W5QuNplaC", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1jiWNIRgT9whCQZMGDzsZU/tracks", - "total": 38 - }, - "type": "playlist", - "uri": "spotify:playlist:1jiWNIRgT9whCQZMGDzsZU" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7JbyZrk837zNSgRRzMZITA" - }, - "href": "https://api.spotify.com/v1/playlists/7JbyZrk837zNSgRRzMZITA", - "id": "7JbyZrk837zNSgRRzMZITA", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0213cbe3e4dfa81fe5b91f2f1cab67616d00001e029d6e136c3a0298fb0c53abeaab67616d00001e02dac4efc0ebdfd9d92f127129ab67616d00001e02df2f41d27d037e13bdd56333", - "width": 60 - } - ], - "name": "Eighties", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAR2dmPjwkaBIIPoixdYICFiyO51Er", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7JbyZrk837zNSgRRzMZITA/tracks", - "total": 46 - }, - "type": "playlist", - "uri": "spotify:playlist:7JbyZrk837zNSgRRzMZITA" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6bUIofrj5PWNIeb67DbUqf" - }, - "href": "https://api.spotify.com/v1/playlists/6bUIofrj5PWNIeb67DbUqf", - "id": "6bUIofrj5PWNIeb67DbUqf", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021b6c907fea6271ab06a852e1ab67616d00001e026c7112082b63beefffe40151ab67616d00001e028175dd850d192b76ec494d90ab67616d00001e02bdc7f3b01de89cf5ce73bb32", - "width": 60 - } - ], - "name": "While You Work (@whileyouwork)", - "owner": { - "display_name": "Eli Feghali", - "external_urls": { - "spotify": "https://open.spotify.com/user/efeghali" - }, - "href": "https://api.spotify.com/v1/users/efeghali", - "id": "efeghali", - "type": "user", - "uri": "spotify:user:efeghali" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAATWt141pfUevPPwgm7TqZ5teQ55RHR", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6bUIofrj5PWNIeb67DbUqf/tracks", - "total": 4576 - }, - "type": "playlist", - "uri": "spotify:playlist:6bUIofrj5PWNIeb67DbUqf" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/12G6dXVYRBSvVktGXrKK43" - }, - "href": "https://api.spotify.com/v1/playlists/12G6dXVYRBSvVktGXrKK43", - "id": "12G6dXVYRBSvVktGXrKK43", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023992c7ab57975935b29fa22bab67616d00001e02e73283547df6735c5db0ba45ab67616d00001e02fb00f7be0eca020bb5c05911ab67616d00001e02fe24dcd263c08c6dd84b6e8c", - "width": 60 - } - ], - "name": "60's, 70's & similar", - "owner": { - "display_name": "hammond", - "external_urls": { - "spotify": "https://open.spotify.com/user/hammond" - }, - "href": "https://api.spotify.com/v1/users/hammond", - "id": "hammond", - "type": "user", - "uri": "spotify:user:hammond" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABTqV2d8HoL2hlGFF1UKJLRIxDc6vT", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/12G6dXVYRBSvVktGXrKK43/tracks", - "total": 299 - }, - "type": "playlist", - "uri": "spotify:playlist:12G6dXVYRBSvVktGXrKK43" - }, - { - "collaborative": false, - "description": "Old version of official site.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4KQDdglJ7HGcqNozbJTlM3" - }, - "href": "https://api.spotify.com/v1/playlists/4KQDdglJ7HGcqNozbJTlM3", - "id": "4KQDdglJ7HGcqNozbJTlM3", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84bfff770712a44bacaf1abdf2", - "width": null - } - ], - "name": "1000 Recordings to Hear Before You Die (Tom Moon): Album Index", - "owner": { - "display_name": "Ulysses' Classical", - "external_urls": { - "spotify": "https://open.spotify.com/user/ulyssestone" - }, - "href": "https://api.spotify.com/v1/users/ulyssestone", - "id": "ulyssestone", - "type": "user", - "uri": "spotify:user:ulyssestone" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAEB09f8qzyD77xBMkv8HWBHtpze/gc", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4KQDdglJ7HGcqNozbJTlM3/tracks", - "total": 859 - }, - "type": "playlist", - "uri": "spotify:playlist:4KQDdglJ7HGcqNozbJTlM3" - }, - { - "collaborative": false, - "description": "This soulful soundtrack is packed with groovy soul & funk with artists like Sam Cooke, The O'Jays, Leon Bridges, The Delfonics, Raphael Saadiq", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3Rc7qAgZf9f0vskwzFBMHL" - }, - "href": "https://api.spotify.com/v1/playlists/3Rc7qAgZf9f0vskwzFBMHL", - "id": "3Rc7qAgZf9f0vskwzFBMHL", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da846325e8713786c11f229cd64e", - "width": null - } - ], - "name": "Hipster Soul", - "owner": { - "display_name": "Filtr Legacy Sweden", - "external_urls": { - "spotify": "https://open.spotify.com/user/legacysweden" - }, - "href": "https://api.spotify.com/v1/users/legacysweden", - "id": "legacysweden", - "type": "user", - "uri": "spotify:user:legacysweden" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAACTox0uFjXtXtoHt0zYiEYiztdA5Gy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3Rc7qAgZf9f0vskwzFBMHL/tracks", - "total": 83 - }, - "type": "playlist", - "uri": "spotify:playlist:3Rc7qAgZf9f0vskwzFBMHL" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/284on3DVWeAxWkgVuzZKGt" - }, - "href": "https://api.spotify.com/v1/playlists/284on3DVWeAxWkgVuzZKGt", - "id": "284on3DVWeAxWkgVuzZKGt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020480c65d154f38c816048c85ab67616d00001e026b69568c80e688e8eb0e07a7ab67616d00001e029a7c18d05c03b002aad78110ab67616d00001e02b2bb7a473fd1b3d502278fea", - "width": 60 - } - ], - "name": "Bra skit", - "owner": { - "display_name": "Johan Liesén", - "external_urls": { - "spotify": "https://open.spotify.com/user/liesen" - }, - "href": "https://api.spotify.com/v1/users/liesen", - "id": "liesen", - "type": "user", - "uri": "spotify:user:liesen" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAG4Q2R/eVafatfKzzlB4w4YFtItZ1H", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/284on3DVWeAxWkgVuzZKGt/tracks", - "total": 1299 - }, - "type": "playlist", - "uri": "spotify:playlist:284on3DVWeAxWkgVuzZKGt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2nXRzr40InzvYIpCUfPhUP" - }, - "href": "https://api.spotify.com/v1/playlists/2nXRzr40InzvYIpCUfPhUP", - "id": "2nXRzr40InzvYIpCUfPhUP", - "images": null, - "name": "Le testing", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAQMiVxaj8qrBbvFdRMc/ryllLb86", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2nXRzr40InzvYIpCUfPhUP/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:2nXRzr40InzvYIpCUfPhUP" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1l1OW7GMacBhrSlW1nlO1K" - }, - "href": "https://api.spotify.com/v1/playlists/1l1OW7GMacBhrSlW1nlO1K", - "id": "1l1OW7GMacBhrSlW1nlO1K", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02b55861c30a8eb7ece3f02aee", - "width": null - } - ], - "name": "Awesome stuff", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA7oRg1V+ihX69G13mWKjfBgdx3aM", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1l1OW7GMacBhrSlW1nlO1K/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:1l1OW7GMacBhrSlW1nlO1K" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3Av66ptxyIoUggHF7kCBYX" - }, - "href": "https://api.spotify.com/v1/playlists/3Av66ptxyIoUggHF7kCBYX", - "id": "3Av66ptxyIoUggHF7kCBYX", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023c757f61859e3619bc862e0cab67616d00001e02430faa3759ab2c69b351b8d9ab67616d00001e02abafafd88eafdb505136be21ab67616d00001e02ed717b9fe8ead59ec2f2e600", - "width": 60 - } - ], - "name": "Söndagsregn 2010-10-24", - "owner": { - "display_name": "Jon Åslund", - "external_urls": { - "spotify": "https://open.spotify.com/user/jon" - }, - "href": "https://api.spotify.com/v1/users/jon", - "id": "jon", - "type": "user", - "uri": "spotify:user:jon" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMv+oQG44r40vF3QmxMqnrluiO5Pn", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3Av66ptxyIoUggHF7kCBYX/tracks", - "total": 19 - }, - "type": "playlist", - "uri": "spotify:playlist:3Av66ptxyIoUggHF7kCBYX" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1s1281yGD8FWEwr5EC1L3i" - }, - "href": "https://api.spotify.com/v1/playlists/1s1281yGD8FWEwr5EC1L3i", - "id": "1s1281yGD8FWEwr5EC1L3i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02ab647295c0c97446c1f1a3b5ab67616d00001e02b3acf13890f0bc4e3d6b6faeab67616d00001e02c08d5fa5c0f1a834acef5100ab67616d00001e02c17e2f804d61d7c6feff082d", - "width": 60 - } - ], - "name": "lördag 2010-12-11", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACd4Ns934uuCravznvyAuE3NO52gy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1s1281yGD8FWEwr5EC1L3i/tracks", - "total": 14 - }, - "type": "playlist", - "uri": "spotify:playlist:1s1281yGD8FWEwr5EC1L3i" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Xo8zJCdKx2vDyqk4o6p5C" - }, - "href": "https://api.spotify.com/v1/playlists/0Xo8zJCdKx2vDyqk4o6p5C", - "id": "0Xo8zJCdKx2vDyqk4o6p5C", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0238e6fb5d88c75c017093ead3", - "width": null - } - ], - "name": "aaaa", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAzI8jFXEFc5o9VQCNV9wEmUeKxd8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Xo8zJCdKx2vDyqk4o6p5C/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:0Xo8zJCdKx2vDyqk4o6p5C" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/52foD1Dr3GjooeyKuygmVB" - }, - "href": "https://api.spotify.com/v1/playlists/52foD1Dr3GjooeyKuygmVB", - "id": "52foD1Dr3GjooeyKuygmVB", - "images": null, - "name": "sfasdf", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACa1yzZTKH6WJfOEpkKdnv/l/phtE", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/52foD1Dr3GjooeyKuygmVB/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:52foD1Dr3GjooeyKuygmVB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5reoN3Jf8wMl3NtikgVwaC" - }, - "href": "https://api.spotify.com/v1/playlists/5reoN3Jf8wMl3NtikgVwaC", - "id": "5reoN3Jf8wMl3NtikgVwaC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022ac93e41d74e138cf5740b9eab67616d00001e02482be3c0abad6a3c2bcd2efdab67616d00001e026d88028a85c771f37374c8eaab67616d00001e02f2d2adaa21ad616df6241e7d", - "width": 60 - } - ], - "name": "xmas", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFnKNDix8UwVNjmxV32Y842Rl4o6G", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5reoN3Jf8wMl3NtikgVwaC/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:5reoN3Jf8wMl3NtikgVwaC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/46DwpEgx5I7m1Nw3DaWvmV" - }, - "href": "https://api.spotify.com/v1/playlists/46DwpEgx5I7m1Nw3DaWvmV", - "id": "46DwpEgx5I7m1Nw3DaWvmV", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0222ebe325082a93efb47fbad9", - "width": null - } - ], - "name": "offline synk 96k test", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABnu13KcsznQTtvTCA50VgXel/QLh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/46DwpEgx5I7m1Nw3DaWvmV/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:46DwpEgx5I7m1Nw3DaWvmV" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4buZT5WKFuhpgLI14UTj83" - }, - "href": "https://api.spotify.com/v1/playlists/4buZT5WKFuhpgLI14UTj83", - "id": "4buZT5WKFuhpgLI14UTj83", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022a81ff34f4346f9da93b32ff", - "width": null - } - ], - "name": "mos", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAB+PenK92olK2e46yJwPPclQ2Kb6z", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4buZT5WKFuhpgLI14UTj83/tracks", - "total": 10 - }, - "type": "playlist", - "uri": "spotify:playlist:4buZT5WKFuhpgLI14UTj83" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7hKns5sIoqFjQHSAw3J2FF" - }, - "href": "https://api.spotify.com/v1/playlists/7hKns5sIoqFjQHSAw3J2FF", - "id": "7hKns5sIoqFjQHSAw3J2FF", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022a81ff34f4346f9da93b32ff", - "width": null - } - ], - "name": "Little Bird", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAC1zEkjKNWOwTp1R2no1EM9jG8f2B", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7hKns5sIoqFjQHSAw3J2FF/tracks", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:7hKns5sIoqFjQHSAw3J2FF" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/30qKa2i4EbDYhvbrMhxAw0" - }, - "href": "https://api.spotify.com/v1/playlists/30qKa2i4EbDYhvbrMhxAw0", - "id": "30qKa2i4EbDYhvbrMhxAw0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022cdc4b4e178dabf49c002280ab67616d00001e024f87f14089217e3f70a5f39eab67616d00001e0279606c79fde418c0bc458abbab67616d00001e02ff186ce2c8d8cdfe4e65d710", - "width": 60 - } - ], - "name": "this is the real shi", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIVGv1gY7RfSHt/LUbJU+z5mnTzjM", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/30qKa2i4EbDYhvbrMhxAw0/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:30qKa2i4EbDYhvbrMhxAw0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1ycFHQsEQy1LDyrPyZnGsG" - }, - "href": "https://api.spotify.com/v1/playlists/1ycFHQsEQy1LDyrPyZnGsG", - "id": "1ycFHQsEQy1LDyrPyZnGsG", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02b7f5f38651637f858e69f479", - "width": null - } - ], - "name": "Dance", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAKqhHSJ+tmFScn7N43njpgJ/yCBRr", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1ycFHQsEQy1LDyrPyZnGsG/tracks", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:1ycFHQsEQy1LDyrPyZnGsG" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4LuBtXVct4y7fKW7TxvxmC" - }, - "href": "https://api.spotify.com/v1/playlists/4LuBtXVct4y7fKW7TxvxmC", - "id": "4LuBtXVct4y7fKW7TxvxmC", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02e2b82066b6e43424650667bd", - "width": null - } - ], - "name": "Hot Chip – Made in the Dark", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA9cnRUB6G3NkNUkzSabgrM7nbIa8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4LuBtXVct4y7fKW7TxvxmC/tracks", - "total": 15 - }, - "type": "playlist", - "uri": "spotify:playlist:4LuBtXVct4y7fKW7TxvxmC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7q4Qgg67nbQxURn8CK6SxJ" - }, - "href": "https://api.spotify.com/v1/playlists/7q4Qgg67nbQxURn8CK6SxJ", - "id": "7q4Qgg67nbQxURn8CK6SxJ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023e6139ca94ae5e3d6c3c4818ab67616d00001e024b54c6f083e52b1f83d761afab67616d00001e02746602eeb55e4816bcab30feab67616d00001e02e8ea46a9ca2a56ea60f79152", - "width": 60 - } - ], - "name": "wutangtastic", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAE/iPv3xJiPMHrZZnD9AwkTSI3WHs", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7q4Qgg67nbQxURn8CK6SxJ/tracks", - "total": 12 - }, - "type": "playlist", - "uri": "spotify:playlist:7q4Qgg67nbQxURn8CK6SxJ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2EYCsp3uvM2GYuhSpnTWCL" - }, - "href": "https://api.spotify.com/v1/playlists/2EYCsp3uvM2GYuhSpnTWCL", - "id": "2EYCsp3uvM2GYuhSpnTWCL", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02828cfb835d229a32720bc6afab67616d00001e028688e410538bc27972791f4cab67616d00001e02c0f16d3c653999907e74e5baab67616d00001e02f05438406a5201bb8cedba3b", - "width": 60 - } - ], - "name": "Poison (Remastered)", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQiedJAxOdCJ5J1f3nOqx4n6U4iPd", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2EYCsp3uvM2GYuhSpnTWCL/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:2EYCsp3uvM2GYuhSpnTWCL" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6NPlWibAzOTmBl4vVTk3ce" - }, - "href": "https://api.spotify.com/v1/playlists/6NPlWibAzOTmBl4vVTk3ce", - "id": "6NPlWibAzOTmBl4vVTk3ce", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02d1d06d587afd9243ba7a4cd8", - "width": null - } - ], - "name": "The Stone Roses – The Stone Roses", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAEZtDBPncFLldc0bSBMdqwUITcs3c", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6NPlWibAzOTmBl4vVTk3ce/tracks", - "total": 11 - }, - "type": "playlist", - "uri": "spotify:playlist:6NPlWibAzOTmBl4vVTk3ce" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/32x6m7Tkh7stmqBUFMSJAg" - }, - "href": "https://api.spotify.com/v1/playlists/32x6m7Tkh7stmqBUFMSJAg", - "id": "32x6m7Tkh7stmqBUFMSJAg", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02730ed5d84d1d98c4d16ed47e", - "width": null - } - ], - "name": "Clark", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIWW3j6URKAeh6xw14q+ABO6xmcdK", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/32x6m7Tkh7stmqBUFMSJAg/tracks", - "total": 32 - }, - "type": "playlist", - "uri": "spotify:playlist:32x6m7Tkh7stmqBUFMSJAg" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0HQPDWVwnZOgAPKYpb22Oa" - }, - "href": "https://api.spotify.com/v1/playlists/0HQPDWVwnZOgAPKYpb22Oa", - "id": "0HQPDWVwnZOgAPKYpb22Oa", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02e8ea46a9ca2a56ea60f79152", - "width": null - } - ], - "name": "Down In Mexico", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAWIkA/ZzTV+RoRCr0wR7vrBhiLCLo", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0HQPDWVwnZOgAPKYpb22Oa/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:0HQPDWVwnZOgAPKYpb22Oa" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5uLiqU8UnZZMexCQ7aX5Av" - }, - "href": "https://api.spotify.com/v1/playlists/5uLiqU8UnZZMexCQ7aX5Av", - "id": "5uLiqU8UnZZMexCQ7aX5Av", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02e55e182ab6209a335a5cfacb", - "width": null - } - ], - "name": "spotify:user:jamesds:playlist:3MVqxQY9orcSGiTxsiCR9l", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAy8hJ3HfB9dK8eGEwAV1yRy8ZMd5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5uLiqU8UnZZMexCQ7aX5Av/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:5uLiqU8UnZZMexCQ7aX5Av" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1ntWxtDOHfK4e529dwSW19" - }, - "href": "https://api.spotify.com/v1/playlists/1ntWxtDOHfK4e529dwSW19", - "id": "1ntWxtDOHfK4e529dwSW19", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e020947f8018fbb25c91d7c7525", - "width": null - } - ], - "name": "Can-Can From Orpheus In The Underworld", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAuFhsYpby11W2DHM0niWaeNAAdyF", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1ntWxtDOHfK4e529dwSW19/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:1ntWxtDOHfK4e529dwSW19" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4sPehjI8DC6jffWbu7N2J3" - }, - "href": "https://api.spotify.com/v1/playlists/4sPehjI8DC6jffWbu7N2J3", - "id": "4sPehjI8DC6jffWbu7N2J3", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02a511f69870fa68e7ba78c099", - "width": null - } - ], - "name": "I Know You Want Me - Radio Edit Cold", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACnaa0nYVH4zFJFXacIa6R+v6E6V6", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4sPehjI8DC6jffWbu7N2J3/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4sPehjI8DC6jffWbu7N2J3" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/47u5ZfJ5EhJp9SKfPnSVXl" - }, - "href": "https://api.spotify.com/v1/playlists/47u5ZfJ5EhJp9SKfPnSVXl", - "id": "47u5ZfJ5EhJp9SKfPnSVXl", - "images": null, - "name": "-", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAdjv34zDBk1Nn3sc0u6aEePF9eHd", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/47u5ZfJ5EhJp9SKfPnSVXl/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:47u5ZfJ5EhJp9SKfPnSVXl" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7jY1F22qFIEYzPEncPHdci" - }, - "href": "https://api.spotify.com/v1/playlists/7jY1F22qFIEYzPEncPHdci", - "id": "7jY1F22qFIEYzPEncPHdci", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02a7d400b4159f7cfc0c9ccae7", - "width": null - } - ], - "name": "pineapple", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAE/PPR2jPVrbcn9K5pVqYKStP/71h", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7jY1F22qFIEYzPEncPHdci/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:7jY1F22qFIEYzPEncPHdci" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7ulnJeIjwdYXl9ZwmQWx1X" - }, - "href": "https://api.spotify.com/v1/playlists/7ulnJeIjwdYXl9ZwmQWx1X", - "id": "7ulnJeIjwdYXl9ZwmQWx1X", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0238217b2b2873090ab46fe0c6ab67616d00001e02599dfe976032830e5ec68945ab67616d00001e02d1bac93adf4492db2e6ff9f8ab67616d00001e02e9eb91ae8241234cb7aaaa4c", - "width": 60 - } - ], - "name": "Mostafa", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAE3fJDLxO3Y6GoAzMaOmrNrD6blXS", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7ulnJeIjwdYXl9ZwmQWx1X/tracks", - "total": 18 - }, - "type": "playlist", - "uri": "spotify:playlist:7ulnJeIjwdYXl9ZwmQWx1X" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5wnFYJsx0Kh4aIRdfpyYK5" - }, - "href": "https://api.spotify.com/v1/playlists/5wnFYJsx0Kh4aIRdfpyYK5", - "id": "5wnFYJsx0Kh4aIRdfpyYK5", - "images": null, - "name": "Bäst!", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABM6zGB6MiLIIiEfN9+Z+t8McJq62", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5wnFYJsx0Kh4aIRdfpyYK5/tracks", - "total": 66 - }, - "type": "playlist", - "uri": "spotify:playlist:5wnFYJsx0Kh4aIRdfpyYK5" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3f1xEfhUOtolv3leBeLFjt" - }, - "href": "https://api.spotify.com/v1/playlists/3f1xEfhUOtolv3leBeLFjt", - "id": "3f1xEfhUOtolv3leBeLFjt", - "images": null, - "name": "Träning", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAgTSn4ktydeVcizwdVIWzEZM7IMF", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3f1xEfhUOtolv3leBeLFjt/tracks", - "total": 24 - }, - "type": "playlist", - "uri": "spotify:playlist:3f1xEfhUOtolv3leBeLFjt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3OMEP4nmg7BhxHiIkWG6QE" - }, - "href": "https://api.spotify.com/v1/playlists/3OMEP4nmg7BhxHiIkWG6QE", - "id": "3OMEP4nmg7BhxHiIkWG6QE", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": null - } - ], - "name": "vadim vs jigga", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAD/EfTvm5je6sIL2R+KaI6MzlVb61", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3OMEP4nmg7BhxHiIkWG6QE/tracks", - "total": 24 - }, - "type": "playlist", - "uri": "spotify:playlist:3OMEP4nmg7BhxHiIkWG6QE" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6zVS95BwB86w9dTG7ItO6E" - }, - "href": "https://api.spotify.com/v1/playlists/6zVS95BwB86w9dTG7ItO6E", - "id": "6zVS95BwB86w9dTG7ItO6E", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e021a26e142095e1c7ba5015218", - "width": null - } - ], - "name": "A Man From Argentina", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAoSpFtVm6VJJbDBWiy0x1CC2choc", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6zVS95BwB86w9dTG7ItO6E/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:6zVS95BwB86w9dTG7ItO6E" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5ziOTIewSR9pfiLgd96ZTf" - }, - "href": "https://api.spotify.com/v1/playlists/5ziOTIewSR9pfiLgd96ZTf", - "id": "5ziOTIewSR9pfiLgd96ZTf", - "images": null, - "name": "asd", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAEdcFuAYxBovU0qo9wFikbZMcnPsl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5ziOTIewSR9pfiLgd96ZTf/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:5ziOTIewSR9pfiLgd96ZTf" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4JUoTcdkgYS8KSCBb5GPCe" - }, - "href": "https://api.spotify.com/v1/playlists/4JUoTcdkgYS8KSCBb5GPCe", - "id": "4JUoTcdkgYS8KSCBb5GPCe", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02188099f301c32148ab07a557ab67616d00001e029700390e9c33c62cfcd915ceab67616d00001e02db7edd97763bd68d265f432eab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 60 - } - ], - "name": "saturday", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAEmheAv6XZmTNXT1NqKfOXjhDM7rO", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4JUoTcdkgYS8KSCBb5GPCe/tracks", - "total": 28 - }, - "type": "playlist", - "uri": "spotify:playlist:4JUoTcdkgYS8KSCBb5GPCe" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2HXTsgk72ydbN7XLZpIK4R" - }, - "href": "https://api.spotify.com/v1/playlists/2HXTsgk72ydbN7XLZpIK4R", - "id": "2HXTsgk72ydbN7XLZpIK4R", - "images": null, - "name": "sad", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAybr+QwXbTwFt6aRJBNIofGbF4ib", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2HXTsgk72ydbN7XLZpIK4R/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:2HXTsgk72ydbN7XLZpIK4R" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3gRWqRUsL6iokkSVsls518" - }, - "href": "https://api.spotify.com/v1/playlists/3gRWqRUsL6iokkSVsls518", - "id": "3gRWqRUsL6iokkSVsls518", - "images": null, - "name": "Tom spellista", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAdUaC58mORl6UwTEkdtuXNhclq0O", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3gRWqRUsL6iokkSVsls518/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:3gRWqRUsL6iokkSVsls518" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6LFapHF3M01mY4mfeSckru" - }, - "href": "https://api.spotify.com/v1/playlists/6LFapHF3M01mY4mfeSckru", - "id": "6LFapHF3M01mY4mfeSckru", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e027f69c9b102d628bcfbf68ef8", - "width": null - } - ], - "name": "The Twilight Zone", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAwR0JP9R4Wj9AdGakcjzvWzQppEA", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6LFapHF3M01mY4mfeSckru/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:6LFapHF3M01mY4mfeSckru" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4rau8iRVYD6wdzcJm2nkkI" - }, - "href": "https://api.spotify.com/v1/playlists/4rau8iRVYD6wdzcJm2nkkI", - "id": "4rau8iRVYD6wdzcJm2nkkI", - "images": null, - "name": "iPod management", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADYIECMcxJB2sG5tAfSWGZ3r6Q/sV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4rau8iRVYD6wdzcJm2nkkI/tracks", - "total": 4722 - }, - "type": "playlist", - "uri": "spotify:playlist:4rau8iRVYD6wdzcJm2nkkI" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3Tvcf1N8s4KL7etqpFxcIb" - }, - "href": "https://api.spotify.com/v1/playlists/3Tvcf1N8s4KL7etqpFxcIb", - "id": "3Tvcf1N8s4KL7etqpFxcIb", - "images": null, - "name": "Test list", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAoB1UyYJ5T0ZoY0LRjiPo2dXGFtP", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3Tvcf1N8s4KL7etqpFxcIb/tracks", - "total": 15 - }, - "type": "playlist", - "uri": "spotify:playlist:3Tvcf1N8s4KL7etqpFxcIb" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6mNzfuOGykfZWdVU7ujqsk" - }, - "href": "https://api.spotify.com/v1/playlists/6mNzfuOGykfZWdVU7ujqsk", - "id": "6mNzfuOGykfZWdVU7ujqsk", - "images": null, - "name": "Golden Years [Soundtrack Version]", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAhUu+3Mj+PbgvL1GqePnIBN65I5L", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6mNzfuOGykfZWdVU7ujqsk/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:6mNzfuOGykfZWdVU7ujqsk" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3yUqbmlNjdqYDAviSwv0Gg" - }, - "href": "https://api.spotify.com/v1/playlists/3yUqbmlNjdqYDAviSwv0Gg", - "id": "3yUqbmlNjdqYDAviSwv0Gg", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e024152eb1f853ff285508aca35ab67616d00001e0287e51905aaafd4b2e46e9121ab67616d00001e02d61b1aba42e5583551eaeeacab67616d00001e02e59861190fc754988c0c4392", - "width": 60 - } - ], - "name": "BÄSTA LÅTARNA.exe", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAGcQEhsHiQMIpLOCW7lBswNUoDNix", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3yUqbmlNjdqYDAviSwv0Gg/tracks", - "total": 36 - }, - "type": "playlist", - "uri": "spotify:playlist:3yUqbmlNjdqYDAviSwv0Gg" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/347Nk3N6F8QgQuaIEtcYVI" - }, - "href": "https://api.spotify.com/v1/playlists/347Nk3N6F8QgQuaIEtcYVI", - "id": "347Nk3N6F8QgQuaIEtcYVI", - "images": null, - "name": "bajs", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAT/Drgoej4VTtSxK8WsLfv33Idiy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/347Nk3N6F8QgQuaIEtcYVI/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:347Nk3N6F8QgQuaIEtcYVI" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7uhdePGKRSRKm2QPaU0uSP" - }, - "href": "https://api.spotify.com/v1/playlists/7uhdePGKRSRKm2QPaU0uSP", - "id": "7uhdePGKRSRKm2QPaU0uSP", - "images": null, - "name": "fredagar", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAc+/DlvjS6HGhPEbRqU3g/a252Rh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7uhdePGKRSRKm2QPaU0uSP/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:7uhdePGKRSRKm2QPaU0uSP" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2i5sGOD9e96p2PpmkXYhDd" - }, - "href": "https://api.spotify.com/v1/playlists/2i5sGOD9e96p2PpmkXYhDd", - "id": "2i5sGOD9e96p2PpmkXYhDd", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02293e8055dd8814fcdf4742f7ab67616d00001e0259211e56a493ac4509457babab67616d00001e02b6d4566db0d12894a1a3b7a2ab67616d00001e02e2f039481babe23658fc719a", - "width": 60 - } - ], - "name": "bara warner", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABENSn3xDcp8HABAxiwLD8cEPkJ8vG", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2i5sGOD9e96p2PpmkXYhDd/tracks", - "total": 1144 - }, - "type": "playlist", - "uri": "spotify:playlist:2i5sGOD9e96p2PpmkXYhDd" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4CHtsKuGmoVYC2JCkHAMBs" - }, - "href": "https://api.spotify.com/v1/playlists/4CHtsKuGmoVYC2JCkHAMBs", - "id": "4CHtsKuGmoVYC2JCkHAMBs", - "images": null, - "name": "Spelmusik", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABgwGoTyO/yFKcsdkinXqvCreZyjH", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4CHtsKuGmoVYC2JCkHAMBs/tracks", - "total": 1956 - }, - "type": "playlist", - "uri": "spotify:playlist:4CHtsKuGmoVYC2JCkHAMBs" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/371DcQ6pwFUdQPKUK6b9Gy" - }, - "href": "https://api.spotify.com/v1/playlists/371DcQ6pwFUdQPKUK6b9Gy", - "id": "371DcQ6pwFUdQPKUK6b9Gy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0205c7a2f4acca8f1dd00683f0ab67616d00001e020fbb5046ac2211a4aab5ecfaab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e02de1d3e2a7ea73430c2a77555", - "width": 60 - } - ], - "name": "Lör", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABXMx7cGjLf6hYrJMWiy+2hn3ricg", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/371DcQ6pwFUdQPKUK6b9Gy/tracks", - "total": 16 - }, - "type": "playlist", - "uri": "spotify:playlist:371DcQ6pwFUdQPKUK6b9Gy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/28ZHPQdzIWH5Gjo9xrcnof" - }, - "href": "https://api.spotify.com/v1/playlists/28ZHPQdzIWH5Gjo9xrcnof", - "id": "28ZHPQdzIWH5Gjo9xrcnof", - "images": null, - "name": "Matchpuls Fotboll 2010-05-25 18:00 - Del 3", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAsZvt01kmSUf2NGDSmwwRgJdxbeE", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/28ZHPQdzIWH5Gjo9xrcnof/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:28ZHPQdzIWH5Gjo9xrcnof" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5Q5etdH0vcI1f6rs4wlMnp" - }, - "href": "https://api.spotify.com/v1/playlists/5Q5etdH0vcI1f6rs4wlMnp", - "id": "5Q5etdH0vcI1f6rs4wlMnp", - "images": null, - "name": "Luddes lokala filer", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAOJ2nDsXlU4M4hW/EAu9Afkkv3bk1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5Q5etdH0vcI1f6rs4wlMnp/tracks", - "total": 516 - }, - "type": "playlist", - "uri": "spotify:playlist:5Q5etdH0vcI1f6rs4wlMnp" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5vlB64Tw6f6nSq02csVPRB" - }, - "href": "https://api.spotify.com/v1/playlists/5vlB64Tw6f6nSq02csVPRB", - "id": "5vlB64Tw6f6nSq02csVPRB", - "images": null, - "name": "The Beatles", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA/WL91zEfytidkXSGR6ITWSkWt1Q", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5vlB64Tw6f6nSq02csVPRB/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:5vlB64Tw6f6nSq02csVPRB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5DMhpzQw07N9CxiWxsnZbC" - }, - "href": "https://api.spotify.com/v1/playlists/5DMhpzQw07N9CxiWxsnZbC", - "id": "5DMhpzQw07N9CxiWxsnZbC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e024d08fc99eff4ed52dfce91faab67616d00001e02775a6bee6c704ec29aec00f4ab67616d00001e02b0c0201a8796d8a536253a61ab67616d00001e02fd4de9a55521ecf4d768f8f6", - "width": 60 - } - ], - "name": "Sparkling Thursday", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADub0ZY/QdCCGhKrSSAuzwppQtx3i", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5DMhpzQw07N9CxiWxsnZbC/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:5DMhpzQw07N9CxiWxsnZbC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/40owuDG2UXz44jNpxcOnHy" - }, - "href": "https://api.spotify.com/v1/playlists/40owuDG2UXz44jNpxcOnHy", - "id": "40owuDG2UXz44jNpxcOnHy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0286b9c2836a00b67081e787a1ab67616d00001e0297d4015428c1ae8409236f69ab67616d00001e02b86f9276199af632c42a90ccab67616d00001e02d7c64e1270057cd9c22556d5", - "width": 60 - } - ], - "name": "New playlist 2", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAteZaxDopl4KdXvZqAThFEpCZOWL", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/40owuDG2UXz44jNpxcOnHy/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:40owuDG2UXz44jNpxcOnHy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0FcxzfoIXA6fpbP8rkqK5V" - }, - "href": "https://api.spotify.com/v1/playlists/0FcxzfoIXA6fpbP8rkqK5V", - "id": "0FcxzfoIXA6fpbP8rkqK5V", - "images": null, - "name": "regnbågstisdag", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABMBzOD0MzEWc63FDAoUv5CyUAB2T", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0FcxzfoIXA6fpbP8rkqK5V/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:0FcxzfoIXA6fpbP8rkqK5V" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3fsBfb9u0zXOK6JMEkyzEQ" - }, - "href": "https://api.spotify.com/v1/playlists/3fsBfb9u0zXOK6JMEkyzEQ", - "id": "3fsBfb9u0zXOK6JMEkyzEQ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0232416982d2ea14bc8c2fe852", - "width": null - } - ], - "name": "Irina", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABKSOrSl6YY9q822uPDK4Zhd6FDLr", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3fsBfb9u0zXOK6JMEkyzEQ/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:3fsBfb9u0zXOK6JMEkyzEQ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/02alN0gNaeIYe0k5D7rsrl" - }, - "href": "https://api.spotify.com/v1/playlists/02alN0gNaeIYe0k5D7rsrl", - "id": "02alN0gNaeIYe0k5D7rsrl", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021bf11700ed63196de26563abab67616d00001e021ffe5d4aa25c7bd1b1fc4847ab67616d00001e0250cb0dcd257aea8ae4e44c85ab67616d00001e02f631e275b1f65ce108977e4e", - "width": 60 - } - ], - "name": "010101", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACeelSpoltBCRp/Ks6Y33TAqv9r9C", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/02alN0gNaeIYe0k5D7rsrl/tracks", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:02alN0gNaeIYe0k5D7rsrl" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2Q8gqoLDDA4duY4OUFr7Wk" - }, - "href": "https://api.spotify.com/v1/playlists/2Q8gqoLDDA4duY4OUFr7Wk", - "id": "2Q8gqoLDDA4duY4OUFr7Wk", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02c44aa6bac605e42c00234e87ab67616d00001e02cdac19bbaee5cc123edcc26fab67616d00001e02f3aa0e6ca22a382007f61e4dab67616d00001e02f73c1afa6079c9bfb60bd6bc", - "width": 60 - } - ], - "name": "que", - "owner": { - "display_name": "nikke", - "external_urls": { - "spotify": "https://open.spotify.com/user/nikke" - }, - "href": "https://api.spotify.com/v1/users/nikke", - "id": "nikke", - "type": "user", - "uri": "spotify:user:nikke" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABwpto5zwvCE9z+VTRMi0OHzOlmyV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2Q8gqoLDDA4duY4OUFr7Wk/tracks", - "total": 10 - }, - "type": "playlist", - "uri": "spotify:playlist:2Q8gqoLDDA4duY4OUFr7Wk" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3EkXOXsTGiDP5VKKisVWy0" - }, - "href": "https://api.spotify.com/v1/playlists/3EkXOXsTGiDP5VKKisVWy0", - "id": "3EkXOXsTGiDP5VKKisVWy0", - "images": null, - "name": "Anderssons local files", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA+KmOj7TlYdFYHDev95LXzlr+YGV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3EkXOXsTGiDP5VKKisVWy0/tracks", - "total": 10 - }, - "type": "playlist", - "uri": "spotify:playlist:3EkXOXsTGiDP5VKKisVWy0" - }, - { - "collaborative": false, - "description": "Hello America. Spotify here. It’s great to know that so many of our US friends are excited to use Spotify. Our staff have made you this playlist as a way of saying 'hey, good to see you!'", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0yj2GcyN8GkoJ1EZ9ugyl1" - }, - "href": "https://api.spotify.com/v1/playlists/0yj2GcyN8GkoJ1EZ9ugyl1", - "id": "0yj2GcyN8GkoJ1EZ9ugyl1", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0201ce44a09e4b95fce0ea3a86ab67616d00001e0217e1907923e91181f38290acab67616d00001e028334ce0c1d48edaa184112b2ab67616d00001e02b81d66d1416afa139d12767b", - "width": 60 - } - ], - "name": "Hello America. Spotify here.", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHEJu48rNA5UtM5SWZi3VIZlpQwA8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0yj2GcyN8GkoJ1EZ9ugyl1/tracks", - "total": 147 - }, - "type": "playlist", - "uri": "spotify:playlist:0yj2GcyN8GkoJ1EZ9ugyl1" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7ryTdnz3hVBC87NwIlNaEh" - }, - "href": "https://api.spotify.com/v1/playlists/7ryTdnz3hVBC87NwIlNaEh", - "id": "7ryTdnz3hVBC87NwIlNaEh", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0252e0dcf6bd926c129c092648ab67616d00001e026d8578f3fc52a97c6560e49aab67616d00001e02765b5b2e04bbe8443952d022ab67616d00001e02980caf4dd525a15f08f8cb87", - "width": 60 - } - ], - "name": "VOXPOP - by ylla", - "owner": { - "display_name": "Ylla Von Malmborg", - "external_urls": { - "spotify": "https://open.spotify.com/user/ylla" - }, - "href": "https://api.spotify.com/v1/users/ylla", - "id": "ylla", - "type": "user", - "uri": "spotify:user:ylla" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABeJTmItlkJvnVzKMH0AdnLwFDU9PU", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7ryTdnz3hVBC87NwIlNaEh/tracks", - "total": 272 - }, - "type": "playlist", - "uri": "spotify:playlist:7ryTdnz3hVBC87NwIlNaEh" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6dn72TSLbp6JoYSCHi7Sdm" - }, - "href": "https://api.spotify.com/v1/playlists/6dn72TSLbp6JoYSCHi7Sdm", - "id": "6dn72TSLbp6JoYSCHi7Sdm", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021323db3fd863ab1b9c668504ab67616d00001e024ca4012b3749d3f4d6e31114ab67616d00001e027a7eef2276e831469d2a97bbab67616d00001e02b047ef469c70ec511bf876f6", - "width": 60 - } - ], - "name": "smooth'", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAG8oYGn/sBSFO2Hfho3Ykgml/UVvT", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6dn72TSLbp6JoYSCHi7Sdm/tracks", - "total": 475 - }, - "type": "playlist", - "uri": "spotify:playlist:6dn72TSLbp6JoYSCHi7Sdm" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0dq7cNDG42xYx85RZPola8" - }, - "href": "https://api.spotify.com/v1/playlists/0dq7cNDG42xYx85RZPola8", - "id": "0dq7cNDG42xYx85RZPola8", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e029b19c107109de740bad72df5", - "width": null - } - ], - "name": "Dr. Dre – 2001", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAsjdLKzC6iu6cN/mHFSiPaXXrlNe", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0dq7cNDG42xYx85RZPola8/tracks", - "total": 22 - }, - "type": "playlist", - "uri": "spotify:playlist:0dq7cNDG42xYx85RZPola8" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/11ui9npCCW5sOYqSN7Glnv" - }, - "href": "https://api.spotify.com/v1/playlists/11ui9npCCW5sOYqSN7Glnv", - "id": "11ui9npCCW5sOYqSN7Glnv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022868c4713a3912fd476b42f1ab67616d00001e026b75ccb4474439cbede6623fab67616d00001e02d82cce4af49ab5566ccf88e7ab67616d00001e02e6a0f986b4bb04250cf1d881", - "width": 60 - } - ], - "name": "ludde_test", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABI/VbK7DBTlCTtX51X+LoHt/vOgz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/11ui9npCCW5sOYqSN7Glnv/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:11ui9npCCW5sOYqSN7Glnv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0AqCsfE9B9pKCRtXR7Qcpr" - }, - "href": "https://api.spotify.com/v1/playlists/0AqCsfE9B9pKCRtXR7Qcpr", - "id": "0AqCsfE9B9pKCRtXR7Qcpr", - "images": null, - "name": "Techno Chicken", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAApr28E17XZiaf1GF+BiozEOhixKh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0AqCsfE9B9pKCRtXR7Qcpr/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:0AqCsfE9B9pKCRtXR7Qcpr" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7pnXgdhX1F4QUcwHSku2Vk" - }, - "href": "https://api.spotify.com/v1/playlists/7pnXgdhX1F4QUcwHSku2Vk", - "id": "7pnXgdhX1F4QUcwHSku2Vk", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e026400fab74f28e90759ac8815", - "width": null - } - ], - "name": "Air – Talkie Walkie", - "owner": { - "display_name": "smedjan", - "external_urls": { - "spotify": "https://open.spotify.com/user/smedjan" - }, - "href": "https://api.spotify.com/v1/users/smedjan", - "id": "smedjan", - "type": "user", - "uri": "spotify:user:smedjan" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAB2rEMgPL/vKtUwaU5ndPR2AtNVbb", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7pnXgdhX1F4QUcwHSku2Vk/tracks", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:7pnXgdhX1F4QUcwHSku2Vk" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1PDwG4hvy5n2pBf93A8R3r" - }, - "href": "https://api.spotify.com/v1/playlists/1PDwG4hvy5n2pBf93A8R3r", - "id": "1PDwG4hvy5n2pBf93A8R3r", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e025aa3dcf05b7ce449066b4b06ab67616d00001e0260bf4d4b20eb93075a97cd20ab67616d00001e02a4d5093e91d6b3e7a42eda67ab67616d00001e02bb1f0d801f4c9203f2f4d698", - "width": 60 - } - ], - "name": "Mattias recommends", - "owner": { - "display_name": "Mattias", - "external_urls": { - "spotify": "https://open.spotify.com/user/mattias" - }, - "href": "https://api.spotify.com/v1/users/mattias", - "id": "mattias", - "type": "user", - "uri": "spotify:user:mattias" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAMs7K3bNjvBKmt1tjCsokTE7zWyFbV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1PDwG4hvy5n2pBf93A8R3r/tracks", - "total": 3845 - }, - "type": "playlist", - "uri": "spotify:playlist:1PDwG4hvy5n2pBf93A8R3r" - }, - { - "collaborative": false, - "description": "most likely stolen from your playlist", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2UuoB7p8ZdlgQT8upXwoMl" - }, - "href": "https://api.spotify.com/v1/playlists/2UuoB7p8ZdlgQT8upXwoMl", - "id": "2UuoB7p8ZdlgQT8upXwoMl", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da846cb1cb6370eb30357eee6760", - "width": null - } - ], - "name": "brokemogul radio", - "owner": { - "display_name": "Scott Vener", - "external_urls": { - "spotify": "https://open.spotify.com/user/brokemogul" - }, - "href": "https://api.spotify.com/v1/users/brokemogul", - "id": "brokemogul", - "type": "user", - "uri": "spotify:user:brokemogul" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAGIWbKtBRaw3O2oEa5s5kdnfPmyEGH", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2UuoB7p8ZdlgQT8upXwoMl/tracks", - "total": 264 - }, - "type": "playlist", - "uri": "spotify:playlist:2UuoB7p8ZdlgQT8upXwoMl" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0IMR2RPbwQQKrxCRYUY1o3" - }, - "href": "https://api.spotify.com/v1/playlists/0IMR2RPbwQQKrxCRYUY1o3", - "id": "0IMR2RPbwQQKrxCRYUY1o3", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e024e837b06165d5d397e235e5bab67616d00001e026d9f246dfd32200ea17b557bab67616d00001e028b32b139981e79f2ebe005ebab67616d00001e02b4c5982e1b92f97a126fc18c", - "width": 60 - } - ], - "name": "merdalamod", - "owner": { - "display_name": "Pierre Carrier", - "external_urls": { - "spotify": "https://open.spotify.com/user/gcarrier" - }, - "href": "https://api.spotify.com/v1/users/gcarrier", - "id": "gcarrier", - "type": "user", - "uri": "spotify:user:gcarrier" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAPyUict/1xnwBK/3F6cL3KjYiFEco", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0IMR2RPbwQQKrxCRYUY1o3/tracks", - "total": 23 - }, - "type": "playlist", - "uri": "spotify:playlist:0IMR2RPbwQQKrxCRYUY1o3" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3NYcibK14Rv9hJ3vFEYmWp" - }, - "href": "https://api.spotify.com/v1/playlists/3NYcibK14Rv9hJ3vFEYmWp", - "id": "3NYcibK14Rv9hJ3vFEYmWp", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022b40db2ffe46dae2f8e1f899ab67616d00001e02773a9c3b61b0213bcc6aecedab67616d00001e029c5fa8ff4cc2f973f45e48e0ab67616d00001e02b64d9c842939150eebb1c45b", - "width": 60 - } - ], - "name": "guitarsongs", - "owner": { - "display_name": "Daniel Ek", - "external_urls": { - "spotify": "https://open.spotify.com/user/daniel" - }, - "href": "https://api.spotify.com/v1/users/daniel", - "id": "daniel", - "type": "user", - "uri": "spotify:user:daniel" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADCZa44Va+8DbA2who7A8TLFjz+CZ", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3NYcibK14Rv9hJ3vFEYmWp/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:3NYcibK14Rv9hJ3vFEYmWp" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2t5rxiBSC1JGfiZfQW6MmC" - }, - "href": "https://api.spotify.com/v1/playlists/2t5rxiBSC1JGfiZfQW6MmC", - "id": "2t5rxiBSC1JGfiZfQW6MmC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0299cdf1500395fe61d407f4deab67616d00001e02a96ec7834e225bf4817d119cab67616d00001e02ae427f91828f26f16e62a6a1ab67616d00001e02d389877b9ee335f5c5a2fbdb", - "width": 60 - } - ], - "name": "Sweet Swedish", - "owner": { - "display_name": "Daniel Ek", - "external_urls": { - "spotify": "https://open.spotify.com/user/daniel" - }, - "href": "https://api.spotify.com/v1/users/daniel", - "id": "daniel", - "type": "user", - "uri": "spotify:user:daniel" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAEsgNTc1vbQdCTEt6PPFqQF/YLOht", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2t5rxiBSC1JGfiZfQW6MmC/tracks", - "total": 21 - }, - "type": "playlist", - "uri": "spotify:playlist:2t5rxiBSC1JGfiZfQW6MmC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/780WrURGBymglb9YcJwmkz" - }, - "href": "https://api.spotify.com/v1/playlists/780WrURGBymglb9YcJwmkz", - "id": "780WrURGBymglb9YcJwmkz", - "images": null, - "name": "Sommar i P1 - Sveriges Radio – Sommar med Daniel Adams-Ray 9 augusti 2011", - "owner": { - "display_name": "Daniel Ek", - "external_urls": { - "spotify": "https://open.spotify.com/user/daniel" - }, - "href": "https://api.spotify.com/v1/users/daniel", - "id": "daniel", - "type": "user", - "uri": "spotify:user:daniel" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABB3RREIMixoqD67/3+JAmQUdSEFF", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/780WrURGBymglb9YcJwmkz/tracks", - "total": 23 - }, - "type": "playlist", - "uri": "spotify:playlist:780WrURGBymglb9YcJwmkz" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/59WSqPcX9mTVrUFdpDrhph" - }, - "href": "https://api.spotify.com/v1/playlists/59WSqPcX9mTVrUFdpDrhph", - "id": "59WSqPcX9mTVrUFdpDrhph", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022c98891a92efa275093bb7d5ab67616d00001e02455d7ca79bfb1bfc01eac9dbab67616d00001e02619f60dd041fcfffbfc2263cab67616d00001e0262b513fa0b5fdef8f6a5e898", - "width": 60 - } - ], - "name": "Adjö", - "owner": { - "display_name": "Daniel Ek", - "external_urls": { - "spotify": "https://open.spotify.com/user/daniel" - }, - "href": "https://api.spotify.com/v1/users/daniel", - "id": "daniel", - "type": "user", - "uri": "spotify:user:daniel" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFlaASRGzIk019LXShBqvqKGq59Ha", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/59WSqPcX9mTVrUFdpDrhph/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:59WSqPcX9mTVrUFdpDrhph" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2PDLDvW0yaOSd1JF6z7JrC" - }, - "href": "https://api.spotify.com/v1/playlists/2PDLDvW0yaOSd1JF6z7JrC", - "id": "2PDLDvW0yaOSd1JF6z7JrC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e024beb66f56871bbde37f6892dab67616d00001e02588a832e3ff9c8f337daa4f1ab67616d00001e02a0681f41944a502c8f9ae973ab67616d00001e02eeeb755130868683e01a0097", - "width": 60 - } - ], - "name": "This isn't mainstream hiphop", - "owner": { - "display_name": "Aron Levin", - "external_urls": { - "spotify": "https://open.spotify.com/user/allacentrum" - }, - "href": "https://api.spotify.com/v1/users/allacentrum", - "id": "allacentrum", - "type": "user", - "uri": "spotify:user:allacentrum" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAnih0kirFvzbFYS5Tt2qAjhsEghPi", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2PDLDvW0yaOSd1JF6z7JrC/tracks", - "total": 88 - }, - "type": "playlist", - "uri": "spotify:playlist:2PDLDvW0yaOSd1JF6z7JrC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1x2qISkYZCzO7nqCihJphT" - }, - "href": "https://api.spotify.com/v1/playlists/1x2qISkYZCzO7nqCihJphT", - "id": "1x2qISkYZCzO7nqCihJphT", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0223ce0637df7ead27b2d31590ab67616d00001e0281b977682d6235fdca1b85daab67616d00001e029e884b7922a905cf2df7db50ab67616d00001e02d0b0110fdfcf5e363db97687", - "width": 60 - } - ], - "name": "SpotON: Evidence", - "owner": { - "display_name": "Aron Levin", - "external_urls": { - "spotify": "https://open.spotify.com/user/allacentrum" - }, - "href": "https://api.spotify.com/v1/users/allacentrum", - "id": "allacentrum", - "type": "user", - "uri": "spotify:user:allacentrum" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABgCz0nQBrjBSphZUnArxKLEEYS9W", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1x2qISkYZCzO7nqCihJphT/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:1x2qISkYZCzO7nqCihJphT" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2yICyZyxaCjorY6wxhKCqx" - }, - "href": "https://api.spotify.com/v1/playlists/2yICyZyxaCjorY6wxhKCqx", - "id": "2yICyZyxaCjorY6wxhKCqx", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0240eea368f4fb5f5ee6dcd9a8ab67616d00001e025034ef7aee00fd756756d90cab67616d00001e02c18cc9d6fcea1478b1257678ab67616d00001e02ed5ffaf4fbf618c94dd08db0", - "width": 60 - } - ], - "name": "Songs from \"Super 8\"", - "owner": { - "display_name": "migo", - "external_urls": { - "spotify": "https://open.spotify.com/user/migo" - }, - "href": "https://api.spotify.com/v1/users/migo", - "id": "migo", - "type": "user", - "uri": "spotify:user:migo" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADcO9lfJOfCdZT+gs6JMIZ+A713OS", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2yICyZyxaCjorY6wxhKCqx/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:2yICyZyxaCjorY6wxhKCqx" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3vxotOnOGDlZXyzJPLFnm2" - }, - "href": "https://api.spotify.com/v1/playlists/3vxotOnOGDlZXyzJPLFnm2", - "id": "3vxotOnOGDlZXyzJPLFnm2", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021e1ca90cd8fdbb0ac890a926ab67616d00001e028b04dacf186124a62bc667a7ab67616d00001e02ea1cf454ec02367d76573c4fab67616d00001e02f8553e18a11209d4becd0336", - "width": 60 - } - ], - "name": "Hipster International", - "owner": { - "display_name": "Sean Parker", - "external_urls": { - "spotify": "https://open.spotify.com/user/napstersean" - }, - "href": "https://api.spotify.com/v1/users/napstersean", - "id": "napstersean", - "type": "user", - "uri": "spotify:user:napstersean" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAADE6iecNpOtUdYYq/ou0Fo3cn7dXxf", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3vxotOnOGDlZXyzJPLFnm2/tracks", - "total": 193 - }, - "type": "playlist", - "uri": "spotify:playlist:3vxotOnOGDlZXyzJPLFnm2" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7hHiS4TfO4isJ2cfhIxXkb" - }, - "href": "https://api.spotify.com/v1/playlists/7hHiS4TfO4isJ2cfhIxXkb", - "id": "7hHiS4TfO4isJ2cfhIxXkb", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02130dcab9b9d160b5d9352c78ab67616d00001e022350e31bc346a6c20e9de166ab67616d00001e02856ed7b94b0859b3e78a3deaab67616d00001e0295bf7f7dac7b61a95d47f07e", - "width": 60 - } - ], - "name": "Dopest Rap Tracks of All Time", - "owner": { - "display_name": "Alex Norström", - "external_urls": { - "spotify": "https://open.spotify.com/user/alegaa" - }, - "href": "https://api.spotify.com/v1/users/alegaa", - "id": "alegaa", - "type": "user", - "uri": "spotify:user:alegaa" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADNhzSAq8KWXgptwAG/B/9phbuu/c", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7hHiS4TfO4isJ2cfhIxXkb/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:7hHiS4TfO4isJ2cfhIxXkb" - } - ] -} diff --git a/tests/test_spotify.py b/tests/test_spotify.py index 6a5565a..471ff6c 100644 --- a/tests/test_spotify.py +++ b/tests/test_spotify.py @@ -115,58 +115,6 @@ async def response_handler(_: str, **_kwargs: Any) -> CallbackResult: assert await spotify.get_playback() -async def test_get_albums( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving albums.""" - responses.get( - f"{SPOTIFY_URL}/v1/albums?ids=3IqzqH6ShrRtie9Yd2ODyG%252C1A2GTWGtFfWp7KSQTwWOyo%252C2noRn2Aes5aoNVsU6iWTh", - status=200, - body=load_fixture("albums.json"), - ) - response = await authenticated_client.get_albums( - [ - "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", - "1A2GTWGtFfWp7KSQTwWOyo", - "2noRn2Aes5aoNVsU6iWTh", - ] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/albums", - METH_GET, - headers=HEADERS, - params={ - "ids": "3IqzqH6ShrRtie9Yd2ODyG,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWTh" - }, - json=None, - ) - - -async def test_get_no_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving no albums.""" - response = await authenticated_client.get_albums([]) - assert response == [] - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_get_too_many_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving too many albums.""" - with pytest.raises( - ValueError, match="Maximum of 20 albums can be requested at once" - ): - await authenticated_client.get_albums(["abc"] * 21) - responses.assert_not_called() # type: ignore[no-untyped-call] - - async def test_get_album_tracks( responses: aioresponses, snapshot: SnapshotAssertion, @@ -330,36 +278,6 @@ async def test_checking_too_many_saved_albums( responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_get_audiobooks( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving audiobooks.""" - responses.get( - f"{SPOTIFY_URL}/v1/audiobooks?ids=3o0RYoo5iOMKSmEbunsbvW%252C1A2GTWGtFfWp7KSQTwWOyo%252C2noRn2Aes5aoNVsU6iWTh", - status=200, - body=load_fixture("audiobooks.json"), - ) - response = await authenticated_client.get_audiobooks( - [ - "spotify:episode:3o0RYoo5iOMKSmEbunsbvW", - "1A2GTWGtFfWp7KSQTwWOyo", - "2noRn2Aes5aoNVsU6iWTh", - ] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/audiobooks", - METH_GET, - headers=HEADERS, - params={ - "ids": "3o0RYoo5iOMKSmEbunsbvW,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWTh" - }, - json=None, - ) - - @pytest.mark.parametrize( "playback_fixture", [ @@ -959,50 +877,6 @@ async def test_get_playlist_variation( ) -async def test_get_featured_playlists( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving playback state.""" - responses.get( - f"{SPOTIFY_URL}/v1/browse/featured-playlists?limit=48", - status=200, - body=load_fixture("featured_playlists.json"), - ) - response = await authenticated_client.get_featured_playlists() - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/browse/featured-playlists", - METH_GET, - headers=HEADERS, - params={"limit": 48}, - json=None, - ) - - -async def test_get_category_playlists( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving playback state.""" - responses.get( - f"{SPOTIFY_URL}/v1/browse/categories/rock/playlists?limit=48", - status=200, - body=load_fixture("category_playlists.json"), - ) - response = await authenticated_client.get_category_playlists("rock") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/browse/categories/rock/playlists", - METH_GET, - headers=HEADERS, - params={"limit": 48}, - json=None, - ) - - async def test_get_current_user( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1025,28 +899,6 @@ async def test_get_current_user( ) -async def test_get_user( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving user.""" - responses.get( - f"{SPOTIFY_URL}/v1/users/smedjan", - status=200, - body=load_fixture("user.json"), - ) - response = await authenticated_client.get_user("smedjan") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/users/smedjan", - METH_GET, - headers=HEADERS, - params=None, - json=None, - ) - - async def test_get_episode( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1245,50 +1097,6 @@ async def test_get_top_tracks( ) -async def test_get_new_releases( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving new releases.""" - responses.get( - f"{SPOTIFY_URL}/v1/browse/new-releases?limit=48", - status=200, - body=load_fixture("new_releases.json"), - ) - response = await authenticated_client.get_new_releases() - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/browse/new-releases", - METH_GET, - headers=HEADERS, - params={"limit": 48}, - json=None, - ) - - -async def test_get_category( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving a category.""" - responses.get( - f"{SPOTIFY_URL}/v1/browse/categories/dinner", - status=200, - body=load_fixture("category.json"), - ) - response = await authenticated_client.get_category("dinner") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/browse/categories/dinner", - METH_GET, - headers=HEADERS, - params=None, - json=None, - ) - - async def test_get_artist( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1311,55 +1119,6 @@ async def test_get_artist( ) -async def test_get_several_artists( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving several artists.""" - responses.get( - f"{SPOTIFY_URL}/v1/artists?ids=2CIMQHirSU0MQqyYHq0eOx%2C57dN52uHvrHOxijzpIgu3E%2C1vCWHaC5f2uS3yhpwWbIA6", - status=200, - body=load_fixture("artists.json"), - ) - response = await authenticated_client.get_artists( - ["2CIMQHirSU0MQqyYHq0eOx", "57dN52uHvrHOxijzpIgu3E", "1vCWHaC5f2uS3yhpwWbIA6"] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/artists", - METH_GET, - headers=HEADERS, - params={ - "ids": "2CIMQHirSU0MQqyYHq0eOx," - "57dN52uHvrHOxijzpIgu3E," - "1vCWHaC5f2uS3yhpwWbIA6" - }, - json=None, - ) - - -async def test_get_no_artists( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving no artists.""" - assert await authenticated_client.get_artists([]) == [] - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_get_too_many_artists( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving too many artists.""" - with pytest.raises( - ValueError, match="Maximum of 50 artists can be requested at once" - ): - await authenticated_client.get_artists(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - async def test_get_artist_albums( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1382,30 +1141,6 @@ async def test_get_artist_albums( ) -async def test_get_artist_top_tracks( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving top tracks of an artist.""" - responses.get( - f"{SPOTIFY_URL}/v1/artists/0TnOYISbd1XYRBk9myaseg/top-tracks", - status=200, - body=load_fixture("artist_top_tracks.json"), - ) - response = await authenticated_client.get_artist_top_tracks( - "0TnOYISbd1XYRBk9myaseg" - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/artists/0TnOYISbd1XYRBk9myaseg/top-tracks", - METH_GET, - headers=HEADERS, - params=None, - json=None, - ) - - async def test_get_audiobook( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1628,28 +1363,6 @@ async def test_get_show_episodes( ) -async def test_get_categories( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving categories.""" - responses.get( - f"{SPOTIFY_URL}/v1/browse/categories?limit=48", - status=200, - body=load_fixture("categories.json"), - ) - response = await authenticated_client.get_categories() - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/browse/categories", - METH_GET, - headers=HEADERS, - params={"limit": 48}, - json=None, - ) - - async def test_get_chapter( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1672,96 +1385,6 @@ async def test_get_chapter( ) -async def test_get_several_chapters( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving several chapters.""" - responses.get( - f"{SPOTIFY_URL}/v1/chapters?ids=3NW4BmIOG0qzQZgtLgsydR%2C0TnOYISbd1XYRBk9myaseg", - status=200, - body=load_fixture("chapters.json"), - ) - response = await authenticated_client.get_chapters( - ["3NW4BmIOG0qzQZgtLgsydR", "0TnOYISbd1XYRBk9myaseg"] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/chapters", - METH_GET, - headers=HEADERS, - params={"ids": "3NW4BmIOG0qzQZgtLgsydR,0TnOYISbd1XYRBk9myaseg"}, - json=None, - ) - - -async def test_get_no_chapters( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving no chapters.""" - assert await authenticated_client.get_chapters([]) == [] - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_get_too_many_chapters( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving too many chapters.""" - with pytest.raises( - ValueError, match="Maximum of 50 chapters can be requested at once" - ): - await authenticated_client.get_chapters(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_get_episodes( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving episodes.""" - responses.get( - f"{SPOTIFY_URL}/v1/episodes?ids=3o0RYoo5iOMKSmEbunsbvW%2C3o0RYoo5iOMKSmEbunsbvW", - status=200, - body=load_fixture("episodes.json"), - ) - response = await authenticated_client.get_episodes( - ["3o0RYoo5iOMKSmEbunsbvW", "3o0RYoo5iOMKSmEbunsbvW"] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/episodes", - METH_GET, - headers=HEADERS, - params={"ids": "3o0RYoo5iOMKSmEbunsbvW,3o0RYoo5iOMKSmEbunsbvW"}, - json=None, - ) - - -async def test_get_no_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving no episodes.""" - assert await authenticated_client.get_episodes([]) == [] - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_get_too_many_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving too many episodes.""" - with pytest.raises( - ValueError, match="Maximum of 50 episodes can be requested at once" - ): - await authenticated_client.get_episodes(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - async def test_get_saved_episodes( responses: aioresponses, snapshot: SnapshotAssertion, @@ -2156,28 +1779,6 @@ async def test_remove_too_many_playlist_items( responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_get_playlists_for_user( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving playlists for a user.""" - responses.get( - f"{SPOTIFY_URL}/v1/user/smedjan/playlists?limit=48", - status=200, - body=load_fixture("user_playlist.json"), - ) - response = await authenticated_client.get_playlists_for_user("smedjan") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/user/smedjan/playlists", - METH_GET, - headers=HEADERS, - params={"limit": 48}, - json=None, - ) - - @pytest.mark.parametrize( "kwargs", [ From 4e62e1dac5bb4cd614072cbc9b1f6ca50fd4057c Mon Sep 17 00:00:00 2001 From: Joostlek Date: Wed, 25 Feb 2026 22:16:29 +0100 Subject: [PATCH 2/3] Apply API changes --- .pre-commit-config.yaml | 2 +- src/spotifyaio/__init__.py | 2 - src/spotifyaio/models.py | 27 +- src/spotifyaio/spotify.py | 307 +- tests/__snapshots__/test_spotify.ambr | 44906 ++++--- tests/fixtures/accounts_followed.json | 4 - tests/fixtures/album_saved.json | 5 - tests/fixtures/album_tracks.json | 5552 +- tests/fixtures/artist.json | 61 +- tests/fixtures/artist_albums.json | 15478 ++- tests/fixtures/audio_features.json | 36 +- tests/fixtures/audiobook.json | 16244 +-- tests/fixtures/audiobook_chapters.json | 8996 +- tests/fixtures/audiobooks_saved.json | 5 - tests/fixtures/chapter.json | 923 +- tests/fixtures/current_playing_track.json | 914 +- tests/fixtures/current_user.json | 53 +- tests/fixtures/current_user_playlist_1.json | 3031 +- tests/fixtures/current_user_playlist_2.json | 3926 +- tests/fixtures/devices.json | 24 +- tests/fixtures/episode.json | 517 +- tests/fixtures/episode_saved.json | 4 - tests/fixtures/followed_artists.json | 2216 +- tests/fixtures/get_album.json | 2960 +- tests/fixtures/library_contains.json | 1 + tests/fixtures/new_playlist.json | 70 +- tests/fixtures/playback_1.json | 938 +- tests/fixtures/playback_3.json | 938 +- tests/fixtures/playback_4.json | 122 +- tests/fixtures/playback_audiobook_1.json | 582 +- tests/fixtures/playback_episode_1.json | 582 +- tests/fixtures/playlist_1.json | 3573 +- tests/fixtures/playlist_2.json | 378 +- tests/fixtures/playlist_3.json | 2130 +- tests/fixtures/playlist_cover_image.json | 10 +- tests/fixtures/playlist_items.json | 2559 +- tests/fixtures/playlist_update_items.json | 2 +- tests/fixtures/recently_played_tracks.json | 31134 +++-- tests/fixtures/saved_albums.json | 112991 +++++++++++------ tests/fixtures/saved_audiobooks.json | 737 +- tests/fixtures/saved_episodes.json | 652 +- tests/fixtures/saved_shows.json | 5214 +- tests/fixtures/saved_tracks.json | 31010 +++-- tests/fixtures/search.json | 27226 +--- tests/fixtures/show.json | 4740 +- tests/fixtures/show_episodes.json | 2766 +- tests/fixtures/shows_saved.json | 4 - tests/fixtures/top_artists.json | 2231 +- tests/fixtures/top_tracks.json | 28553 +++-- tests/fixtures/tracks_saved.json | 4 - tests/test_spotify.py | 1030 +- 51 files changed, 218858 insertions(+), 147512 deletions(-) delete mode 100644 tests/fixtures/accounts_followed.json delete mode 100644 tests/fixtures/album_saved.json delete mode 100644 tests/fixtures/audiobooks_saved.json delete mode 100644 tests/fixtures/episode_saved.json create mode 100644 tests/fixtures/library_contains.json delete mode 100644 tests/fixtures/shows_saved.json delete mode 100644 tests/fixtures/tracks_saved.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2da6dec..4eba5e1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -73,7 +73,7 @@ repos: exclude: ^poetry\.lock$ entry: poetry run codespell args: - - --ignore-words-list=doen,te,ons,Racoon,Crate,Ede,succes,alle,Theis,serie,wel,somme,affraid,programm,earnin,couldnt,beter,als,bord,wil,hart,thuis,voight + - --ignore-words-list=doen,te,ons,Racoon,Crate,Ede,succes,alle,Theis,serie,wel,somme,affraid,programm,earnin,couldnt,beter,als,bord,wil,hart,thuis,voight,juni,handels,ot,tru,independant,unter,hagas - id: detect-private-key name: 🕵️ Detect Private Keys language: system diff --git a/src/spotifyaio/__init__.py b/src/spotifyaio/__init__.py index b094faf..c074c9d 100644 --- a/src/spotifyaio/__init__.py +++ b/src/spotifyaio/__init__.py @@ -26,7 +26,6 @@ Playlist, PlaylistOwner, PlaylistOwnerType, - ProductType, ReleaseDatePrecision, RepeatMode, Show, @@ -57,7 +56,6 @@ "Playlist", "PlaylistOwner", "PlaylistOwnerType", - "ProductType", "ReleaseDatePrecision", "RepeatMode", "Show", diff --git a/src/spotifyaio/models.py b/src/spotifyaio/models.py index 8107d2f..0a540d0 100644 --- a/src/spotifyaio/models.py +++ b/src/spotifyaio/models.py @@ -421,7 +421,14 @@ def __pre_deserialize__(cls, d: dict[str, Any]) -> dict[str, Any]: class Playlist(BasePlaylist): """Playlist model.""" - tracks: PlaylistTracks + items: PlaylistTracks + + @classmethod + def __pre_deserialize__(cls, d: dict[str, Any]) -> dict[str, Any]: + """Pre deserialize hook.""" + if "items" not in d and "tracks" in d: + d = {**d, "items": d["tracks"]} + return d @dataclass @@ -518,13 +525,6 @@ class Category(DataClassORJSONMixin): icons: list[Image] -class ProductType(StrEnum): - """Product type.""" - - PREMIUM = "premium" - FREE = "free" - - @dataclass class BaseUserProfile(DataClassORJSONMixin): """Base user profile model.""" @@ -540,9 +540,6 @@ class BaseUserProfile(DataClassORJSONMixin): class UserProfile(BaseUserProfile): """User profile model.""" - product: ProductType - email: str | None = None - @dataclass class SimplifiedShow(DataClassORJSONMixin): @@ -554,7 +551,6 @@ class SimplifiedShow(DataClassORJSONMixin): images: list[Image] external_urls: dict[str, str] href: str - publisher: str description: str total_episodes: int | None @@ -877,10 +873,3 @@ def __pre_deserialize__(cls, d: dict[str, Any]) -> dict[str, Any]: if item is not None ], } - - -class FollowType(StrEnum): - """Follow type.""" - - ARTIST = "artist" - USER = "user" diff --git a/src/spotifyaio/spotify.py b/src/spotifyaio/spotify.py index 42ff44b..a30ae01 100644 --- a/src/spotifyaio/spotify.py +++ b/src/spotifyaio/spotify.py @@ -32,7 +32,6 @@ Devices, Episode, FollowedArtistResponse, - FollowType, Image, ModifyPlaylistResponse, NewReleasesResponseInner, @@ -213,49 +212,6 @@ async def get_saved_albums(self) -> list[SavedAlbum]: response = await self._get("v1/me/albums", params=params) return SavedAlbumResponse.from_json(response).items - async def save_albums(self, album_ids: list[str]) -> None: - """Save albums.""" - if not album_ids: - return - if len(album_ids) > 50: - msg = "Maximum of 50 albums can be saved at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in album_ids]) - } - await self._put("v1/me/albums", params=params) - - async def remove_saved_albums(self, album_ids: list[str]) -> None: - """Remove saved albums.""" - if not album_ids: - return - if len(album_ids) > 50: - msg = "Maximum of 50 albums can be removed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in album_ids]) - } - await self._delete("v1/me/albums", params=params) - - @catch_json_decode_error - async def are_albums_saved(self, album_ids: list[str]) -> dict[str, bool]: - """Check if albums are saved.""" - if not album_ids: - return {} - if len(album_ids) > 20: - msg = "Maximum of 20 albums can be checked at once" - raise ValueError(msg) - identifiers = [get_identifier(i) for i in album_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/me/albums/contains", params=params) - body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - - async def is_album_saved(self, album_id: str) -> bool: - """Check if album is saved.""" - identifier = get_identifier(album_id) - return (await self.are_albums_saved([identifier]))[identifier] - @catch_json_decode_error async def get_artist(self, artist_id: str) -> Artist: """Get artist.""" @@ -297,44 +253,6 @@ async def get_saved_audiobooks(self) -> list[SimplifiedAudiobook]: response = await self._get("v1/me/audiobooks", params=params) return SavedAudiobookResponse.from_json(response).items - async def save_audiobooks(self, audiobook_ids: list[str]) -> None: - """Save audiobooks.""" - if not audiobook_ids: - return - if len(audiobook_ids) > 50: - msg = "Maximum of 50 audiobooks can be saved at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in audiobook_ids]) - } - await self._put("v1/me/audiobooks", params=params) - - async def remove_saved_audiobooks(self, audiobook_ids: list[str]) -> None: - """Remove saved audiobooks.""" - if not audiobook_ids: - return - if len(audiobook_ids) > 50: - msg = "Maximum of 50 audiobooks can be removed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in audiobook_ids]) - } - await self._delete("v1/me/audiobooks", params=params) - - @catch_json_decode_error - async def are_audiobooks_saved(self, audiobook_ids: list[str]) -> dict[str, bool]: - """Check if audiobooks are saved.""" - if not audiobook_ids: - return {} - if len(audiobook_ids) > 50: - msg = "Maximum of 50 audiobooks can be checked at once" - raise ValueError(msg) - identifiers = [get_identifier(i) for i in audiobook_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/me/audiobooks/contains", params=params) - body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - @catch_json_decode_error async def get_chapter(self, chapter_id: str) -> Chapter: """Get chapter.""" @@ -356,61 +274,42 @@ async def get_saved_episodes(self) -> list[SavedEpisode]: response = await self._get("v1/me/episodes", params=params) return SavedEpisodeResponse.from_json(response).items - async def save_episodes(self, episode_ids: list[str]) -> None: - """Save episodes.""" - if not episode_ids: + async def save_to_library(self, uris: list[str]) -> None: + """Save items to library.""" + if not uris: return - if len(episode_ids) > 50: - msg = "Maximum of 50 episodes can be saved at once" + if len(uris) > 40: + msg = "Maximum of 40 URIs can be saved at once" raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in episode_ids]) - } - await self._put("v1/me/episodes", params=params) + params: dict[str, Any] = {"uris": ",".join(uris)} + await self._put("v1/me/library", params=params) - async def remove_saved_episodes(self, episode_ids: list[str]) -> None: - """Remove saved episodes.""" - if not episode_ids: + async def remove_from_library(self, uris: list[str]) -> None: + """Remove items from library.""" + if not uris: return - if len(episode_ids) > 50: - msg = "Maximum of 50 episodes can be removed at once" + if len(uris) > 40: + msg = "Maximum of 40 URIs can be removed at once" raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in episode_ids]) - } - await self._delete("v1/me/episodes", params=params) + params: dict[str, Any] = {"uris": ",".join(uris)} + await self._delete("v1/me/library", params=params) @catch_json_decode_error - async def are_episodes_saved(self, episode_ids: list[str]) -> dict[str, bool]: - """Check if episodes are saved.""" - if not episode_ids: + async def are_in_library(self, uris: list[str]) -> dict[str, bool]: + """Check if items are in library.""" + if not uris: return {} - if len(episode_ids) > 50: - msg = "Maximum of 50 episodes can be checked at once" + if len(uris) > 40: + msg = "Maximum of 40 URIs can be checked at once" raise ValueError(msg) - identifiers = [get_identifier(i) for i in episode_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/me/episodes/contains", params=params) + params: dict[str, Any] = {"uris": ",".join(uris)} + response = await self._get("v1/me/library/contains", params=params) body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - - async def is_episode_saved(self, episode_id: str) -> bool: - """Check if episode is saved.""" - identifier = get_identifier(episode_id) - return (await self.are_episodes_saved([identifier]))[identifier] + return dict(zip(uris, body, strict=False)) async def is_added_to_library(self, uri: str) -> bool: """Check if item is added to library.""" - if uri.startswith("spotify:track:"): - return await self.is_track_saved(uri) - if uri.startswith("spotify:episode:"): - return await self.is_episode_saved(uri) - if uri.startswith("spotify:show:"): - return await self.is_show_saved(uri) - if uri.startswith("spotify:album:"): - return await self.is_album_saved(uri) - msg = "Invalid URI format" - raise ValueError(msg) + return (await self.are_in_library([uri]))[uri] @catch_json_decode_error async def get_playback(self) -> PlaybackState | None: @@ -575,7 +474,7 @@ async def get_playlist_items(self, playlist_id: str) -> list[PlaylistTrack]: """Get playlist tracks.""" identifier = get_identifier(playlist_id) params: dict[str, Any] = {"limit": 48} - response = await self._get(f"v1/playlists/{identifier}/tracks", params=params) + response = await self._get(f"v1/playlists/{identifier}/items", params=params) return PlaylistTrackResponse.from_json(response).items @catch_json_decode_error @@ -600,7 +499,7 @@ async def update_playlist_items( data["range_length"] = range_length if snapshot_id: data["snapshot_id"] = snapshot_id - response = await self._put(f"v1/playlists/{identifier}/tracks", data=data) + response = await self._put(f"v1/playlists/{identifier}/items", data=data) return ModifyPlaylistResponse.from_json(response).snapshot_id @catch_json_decode_error @@ -618,7 +517,7 @@ async def add_playlist_items( data: dict[str, Any] = {"uris": uris} if position is not None: data["position"] = position - response = await self._post(f"v1/playlists/{identifier}/tracks", data=data) + response = await self._post(f"v1/playlists/{identifier}/items", data=data) return ModifyPlaylistResponse.from_json(response).snapshot_id @catch_json_decode_error @@ -636,13 +535,12 @@ async def remove_playlist_items( data: dict[str, Any] = {"tracks": [{"uri": uri} for uri in uris]} if snapshot_id: data["snapshot_id"] = snapshot_id - response = await self._delete(f"v1/playlists/{identifier}/tracks", data=data) + response = await self._delete(f"v1/playlists/{identifier}/items", data=data) return ModifyPlaylistResponse.from_json(response).snapshot_id @catch_json_decode_error async def create_playlist( self, - user_id: str, name: str, *, description: str | None = None, @@ -650,7 +548,6 @@ async def create_playlist( collaborative: bool | None = None, ) -> Playlist: """Create playlist.""" - identifier = get_identifier(user_id) data: dict[str, Any] = {"name": name} if description: data["description"] = description @@ -658,7 +555,7 @@ async def create_playlist( data["public"] = public if collaborative is not None: data["collaborative"] = collaborative - response = await self._post(f"v1/users/{identifier}/playlists", data=data) + response = await self._post("v1/me/playlists", data=data) return Playlist.from_json(response) @catch_json_decode_error @@ -672,7 +569,7 @@ async def get_playlist_cover_image(self, playlist_id: str) -> list[Image]: @catch_json_decode_error async def search( - self, query: str, types: list[SearchType], *, limit: int = 48 + self, query: str, types: list[SearchType], *, limit: int = 5 ) -> SearchResult: """Search.""" params: dict[str, Any] = {"q": query, "limit": limit, "type": ",".join(types)} @@ -703,50 +600,6 @@ async def get_saved_shows(self) -> list[SavedShow]: response = await self._get("v1/me/shows", params=params) return SavedShowResponse.from_json(response).items - @catch_json_decode_error - async def save_shows(self, show_ids: list[str]) -> None: - """Save shows.""" - if not show_ids: - return - if len(show_ids) > 50: - msg = "Maximum of 50 shows can be saved at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in show_ids]) - } - await self._put("v1/me/shows", params=params) - - async def remove_saved_shows(self, show_ids: list[str]) -> None: - """Remove saved shows.""" - if not show_ids: - return - if len(show_ids) > 50: - msg = "Maximum of 50 shows can be removed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in show_ids]) - } - await self._delete("v1/me/shows", params=params) - - @catch_json_decode_error - async def are_shows_saved(self, show_ids: list[str]) -> dict[str, bool]: - """Check if shows are saved.""" - if not show_ids: - return {} - if len(show_ids) > 50: - msg = "Maximum of 50 shows can be checked at once" - raise ValueError(msg) - identifiers = [get_identifier(i) for i in show_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/me/shows/contains", params=params) - body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - - async def is_show_saved(self, show_id: str) -> bool: - """Check if show is saved.""" - identifier = get_identifier(show_id) - return (await self.are_shows_saved([identifier]))[identifier] - # Get a track # Get several tracks @@ -758,49 +611,6 @@ async def get_saved_tracks(self) -> list[SavedTrack]: response = await self._get("v1/me/tracks", params=params) return SavedTrackResponse.from_json(response).items - async def save_tracks(self, track_ids: list[str]) -> None: - """Save tracks.""" - if not track_ids: - return - if len(track_ids) > 50: - msg = "Maximum of 50 tracks can be saved at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in track_ids]) - } - await self._put("v1/me/tracks", params=params) - - async def remove_saved_tracks(self, track_ids: list[str]) -> None: - """Remove saved tracks.""" - if not track_ids: - return - if len(track_ids) > 50: - msg = "Maximum of 50 tracks can be removed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "ids": ",".join([get_identifier(i) for i in track_ids]) - } - await self._delete("v1/me/tracks", params=params) - - @catch_json_decode_error - async def are_tracks_saved(self, track_ids: list[str]) -> dict[str, bool]: - """Check if tracks are saved.""" - if not track_ids: - return {} - if len(track_ids) > 50: - msg = "Maximum of 50 tracks can be checked at once" - raise ValueError(msg) - identifiers = [get_identifier(i) for i in track_ids] - params: dict[str, Any] = {"ids": ",".join(identifiers)} - response = await self._get("v1/me/tracks/contains", params=params) - body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - - async def is_track_saved(self, track_id: str) -> bool: - """Check if track is saved.""" - identifier = get_identifier(track_id) - return (await self.are_tracks_saved([identifier]))[identifier] - @catch_json_decode_error async def get_audio_features(self, track_id: str) -> AudioFeatures: """Get audio features.""" @@ -828,16 +638,6 @@ async def get_top_tracks(self) -> list[Track]: response = await self._get("v1/me/top/tracks", params=params) return TopTracksResponse.from_json(response).items - async def follow_playlist(self, playlist_id: str) -> None: - """Follow a playlist.""" - identifier = get_identifier(playlist_id) - await self._put(f"v1/playlists/{identifier}/followers") - - async def unfollow_playlist(self, playlist_id: str) -> None: - """Unfollow a playlist.""" - identifier = get_identifier(playlist_id) - await self._delete(f"v1/playlists/{identifier}/followers") - @catch_json_decode_error async def get_followed_artists(self) -> list[Artist]: """Get followed artists.""" @@ -845,55 +645,6 @@ async def get_followed_artists(self) -> list[Artist]: response = await self._get("v1/me/following", params=params) return FollowedArtistResponse.from_json(response).artists.items - async def follow_account(self, follow_type: FollowType, ids: list[str]) -> None: - """Follow an artist or user.""" - if not ids: - return - if len(ids) > 50: - msg = "Maximum of 50 accounts can be followed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "type": follow_type, - "ids": ",".join([get_identifier(i) for i in ids]), - } - await self._put("v1/me/following", params=params) - - async def unfollow_account(self, follow_type: FollowType, ids: list[str]) -> None: - """Unfollow an artist or user.""" - if not ids: - return - if len(ids) > 50: - msg = "Maximum of 50 accounts can be unfollowed at once" - raise ValueError(msg) - params: dict[str, Any] = { - "type": follow_type, - "ids": ",".join([get_identifier(i) for i in ids]), - } - await self._delete("v1/me/following", params=params) - - @catch_json_decode_error - async def are_accounts_followed( - self, follow_type: FollowType, ids: list[str] - ) -> dict[str, bool]: - """Check if artists or users are followed.""" - if not ids: - return {} - if len(ids) > 50: - msg = "Maximum of 50 accounts can be checked at once" - raise ValueError(msg) - identifiers = [get_identifier(i) for i in ids] - params: dict[str, Any] = {"type": follow_type, "ids": ",".join(identifiers)} - response = await self._get("v1/me/following/contains", params=params) - body: list[bool] = orjson.loads(response) # pylint: disable=no-member - return dict(zip(identifiers, body, strict=False)) - - @catch_json_decode_error - async def is_following_playlist(self, playlist_id: str) -> bool: - """Check if playlist is followed.""" - identifier = get_identifier(playlist_id) - response = await self._get(f"v1/playlists/{identifier}/followers/contains") - return bool(orjson.loads(response)[0]) # pylint: disable=no-member - async def close(self) -> None: """Close open client session.""" if self.session and self._close_session: diff --git a/tests/__snapshots__/test_spotify.ambr b/tests/__snapshots__/test_spotify.ambr index afb2bea..e34f447 100644 --- a/tests/__snapshots__/test_spotify.ambr +++ b/tests/__snapshots__/test_spotify.ambr @@ -1,40 +1,8 @@ # serializer version: 1 -# name: test_are_accounts_followed +# name: test_are_in_library dict({ - 'spotify': True, - 'spotifyartists': False, - }) -# --- -# name: test_check_saved_audiobooks - dict({ - '18yVqkdbdRvS24c0Ilj2ci': False, - '1HGw3J3NxZO1TP1BTtVhpZ': False, - '7iHfbu1YPACw6oZPAFJtqe': False, - }) -# --- -# name: test_check_saved_episodes - dict({ - '3o0RYoo5iOMKSmEbunsbvW': True, - '3o0RYoo5iOMKSmEbunsbvX': False, - }) -# --- -# name: test_check_saved_shows - dict({ - '18yVqkdbdRvS24c0Ilj2ci': True, - '1HGw3J3NxZO1TP1BTtVhpZ': False, - }) -# --- -# name: test_check_saved_tracks - dict({ - '18yVqkdbdRvS24c0Ilj2ci': True, - '1HGw3J3NxZO1TP1BTtVhpZ': False, - }) -# --- -# name: test_checking_saved_albums - dict({ - '1A2GTWGtFfWp7KSQTwWOyo': False, - '2noRn2Aes5aoNVsU6iWTh': True, - '3IqzqH6ShrRtie9Yd2ODyG': True, + 'spotify:album:1uyf3l2d4XYwiEqAb7t7fX': False, + 'spotify:track:4iV5W9uYEdYUVa79Axb7Rh': False, }) # --- # name: test_create_playlist[kwargs0] @@ -46,6 +14,10 @@ }), 'images': list([ ]), + 'items': dict({ + 'items': list([ + ]), + }), 'name': 'New Playlist', 'object_type': 'playlist', 'owner': dict({ @@ -60,10 +32,6 @@ }), 'playlist_id': '2dGgoMPWpapXYA6rX7ZbbB', 'public': False, - 'tracks': dict({ - 'items': list([ - ]), - }), 'uri': 'spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB', }) # --- @@ -76,6 +44,10 @@ }), 'images': list([ ]), + 'items': dict({ + 'items': list([ + ]), + }), 'name': 'New Playlist', 'object_type': 'playlist', 'owner': dict({ @@ -90,10 +62,6 @@ }), 'playlist_id': '2dGgoMPWpapXYA6rX7ZbbB', 'public': False, - 'tracks': dict({ - 'items': list([ - ]), - }), 'uri': 'spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB', }) # --- @@ -106,6 +74,10 @@ }), 'images': list([ ]), + 'items': dict({ + 'items': list([ + ]), + }), 'name': 'New Playlist', 'object_type': 'playlist', 'owner': dict({ @@ -120,10 +92,6 @@ }), 'playlist_id': '2dGgoMPWpapXYA6rX7ZbbB', 'public': False, - 'tracks': dict({ - 'items': list([ - ]), - }), 'uri': 'spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB', }) # --- @@ -136,6 +104,10 @@ }), 'images': list([ ]), + 'items': dict({ + 'items': list([ + ]), + }), 'name': 'New Playlist', 'object_type': 'playlist', 'owner': dict({ @@ -150,10 +122,6 @@ }), 'playlist_id': '2dGgoMPWpapXYA6rX7ZbbB', 'public': False, - 'tracks': dict({ - 'items': list([ - ]), - }), 'uri': 'spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB', }) # --- @@ -928,17 +896,17 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebee07b5820dd91d15d397e29c', + 'url': 'https://i.scdn.co/image/ab6761610000e5eb8d8ac7290d0fe2d12fb6e4d9', 'width': 640, }), dict({ 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ee07b5820dd91d15d397e29c', + 'url': 'https://i.scdn.co/image/ab676161000051748d8ac7290d0fe2d12fb6e4d9', 'width': 320, }), dict({ 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ee07b5820dd91d15d397e29c', + 'url': 'https://i.scdn.co/image/ab6761610000f1788d8ac7290d0fe2d12fb6e4d9', 'width': 160, }), ]), @@ -948,6 +916,44 @@ # --- # name: test_get_artist_albums list([ + dict({ + 'album_id': '1nPRTKmS3Bn0f2ih11i2aH', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273fa853d9769c89d08a74983bb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02fa853d9769c89d08a74983bb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851fa853d9769c89d08a74983bb', + 'width': 64, + }), + ]), + 'name': 'UNDERDOGS', + 'release_date': '2025-08-29', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:1nPRTKmS3Bn0f2ih11i2aH', + }), dict({ 'album_id': '56jg3KJcYmfL7RzYmG2O1Q', 'album_type': , @@ -1098,17 +1104,17 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273847d47b2d33517f0e8b2b958', + 'url': 'https://i.scdn.co/image/ab67616d0000b273dfa89274cbe23c1fe1b589d5', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02847d47b2d33517f0e8b2b958', + 'url': 'https://i.scdn.co/image/ab67616d00001e02dfa89274cbe23c1fe1b589d5', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851847d47b2d33517f0e8b2b958', + 'url': 'https://i.scdn.co/image/ab67616d00004851dfa89274cbe23c1fe1b589d5', 'width': 64, }), ]), @@ -1164,22 +1170,22 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab67616d0000b273e6efeff81a318670a292090f', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab67616d00001e02e6efeff81a318670a292090f', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7', + 'url': 'https://i.scdn.co/image/ab67616d00004851e6efeff81a318670a292090f', 'width': 64, }), ]), 'name': 'Globalization', - 'release_date': '2014-11-21', + 'release_date': '2014-11-24', 'release_date_precision': , 'total_tracks': 11, 'uri': 'spotify:album:4EUf4YyNjuXypWY6W5wEDm', @@ -1230,17 +1236,17 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab67616d0000b2732ffc2c580b6595a3e675a730', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab67616d00001e022ffc2c580b6595a3e675a730', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90', + 'url': 'https://i.scdn.co/image/ab67616d000048512ffc2c580b6595a3e675a730', 'width': 64, }), ]), @@ -1515,7 +1521,7 @@ 'uri': 'spotify:album:7rOcmdW8dWxlScy6AUgjI8', }), dict({ - 'album_id': '0gayfOCt1DJX4j8MOhv7we', + 'album_id': '4y8v2mnHITUR0Vi2HSAh4F', 'album_type': , 'artists': list([ dict({ @@ -1527,25 +1533,25 @@ 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731357b1be0bd99e8c01e8acb7', + 'url': 'https://i.scdn.co/image/ab67616d0000b273a8045f86097518b70cb499ee', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021357b1be0bd99e8c01e8acb7', + 'url': 'https://i.scdn.co/image/ab67616d00001e02a8045f86097518b70cb499ee', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511357b1be0bd99e8c01e8acb7', + 'url': 'https://i.scdn.co/image/ab67616d00004851a8045f86097518b70cb499ee', 'width': 64, }), ]), 'name': 'Money Is Still A Major Issue', - 'release_date': '2005', - 'release_date_precision': , + 'release_date': '2005-11-15', + 'release_date_precision': , 'total_tracks': 13, - 'uri': 'spotify:album:0gayfOCt1DJX4j8MOhv7we', + 'uri': 'spotify:album:4y8v2mnHITUR0Vi2HSAh4F', }), dict({ 'album_id': '76N6imyjQ9h5p2NzakHT32', @@ -1581,7 +1587,7 @@ 'uri': 'spotify:album:76N6imyjQ9h5p2NzakHT32', }), dict({ - 'album_id': '3ZzkxHr39xEJvbl7UWKcPZ', + 'album_id': '1ielCGOyyidzpbnxKctCLk', 'album_type': , 'artists': list([ dict({ @@ -1590,3846 +1596,2676 @@ 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), dict({ - 'artist_id': '21E3waRsmPlU7jZsS13rcj', - 'name': 'Ne-Yo', - 'uri': 'spotify:artist:21E3waRsmPlU7jZsS13rcj', + 'artist_id': '4zWFlKgU4j7ryWg5nsOmU6', + 'name': 'Lenier', + 'uri': 'spotify:artist:4zWFlKgU4j7ryWg5nsOmU6', }), + ]), + 'images': list([ dict({ - 'artist_id': '4D75GcNG95ebPtNvoNVXhz', - 'name': 'AFROJACK', - 'uri': 'spotify:artist:4D75GcNG95ebPtNvoNVXhz', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27306cb49bdddf422972424980d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0206cb49bdddf422972424980d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485106cb49bdddf422972424980d', + 'width': 64, + }), + ]), + 'name': "Pa' Los Envidiosos", + 'release_date': '2026-02-06', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1ielCGOyyidzpbnxKctCLk', + }), + dict({ + 'album_id': '1Q53Pq6VrC38FLf8yIHaE9', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1yX62RHdYysNcIrO33WQxJ', + 'name': 'Dani Flow', + 'uri': 'spotify:artist:1yX62RHdYysNcIrO33WQxJ', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a', + 'url': 'https://i.scdn.co/image/ab67616d0000b27363df79b70d17204b59c7a09e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a', + 'url': 'https://i.scdn.co/image/ab67616d00001e0263df79b70d17204b59c7a09e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a', + 'url': 'https://i.scdn.co/image/ab67616d0000485163df79b70d17204b59c7a09e', 'width': 64, }), ]), - 'name': '2 The Moon (The Remixes)', - 'release_date': '2024-09-20', + 'name': 'RÁPIDOS Y FURIOSOS 11', + 'release_date': '2026-01-14', 'release_date_precision': , - 'total_tracks': 5, - 'uri': 'spotify:album:3ZzkxHr39xEJvbl7UWKcPZ', + 'total_tracks': 1, + 'uri': 'spotify:album:1Q53Pq6VrC38FLf8yIHaE9', }), - ]) -# --- -# name: test_get_audio_features - dict({ - 'acousticness': 0.011, - 'danceability': 0.696, - 'energy': 0.905, - 'instrumentalness': 0.000905, - 'key': , - 'liveness': 0.302, - 'loudness': -2.743, - 'mode': , - 'speechiness': 0.103, - 'tempo': 114.944, - 'time_signature': , - 'valence': 0.625, - }) -# --- -# name: test_get_audiobook - dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', - }), - ]), - 'chapters': list([ - dict({ - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 1', - 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', - }), - dict({ - 'chapter_id': '49TZsjpPPA4jEuAJ8bJbGf', - 'chapter_number': 1, - 'duration_ms': 565942, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf', + dict({ + 'album_id': '6lpZfEeWcLG0DDfgd22km8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 2', - 'type': 'chapter', - 'uri': 'spotify:episode:49TZsjpPPA4jEuAJ8bJbGf', - }), - dict({ - 'chapter_id': '0rPuWNlTx3j4E2NJxat2rP', - 'chapter_number': 2, - 'duration_ms': 974132, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 3', - 'type': 'chapter', - 'uri': 'spotify:episode:0rPuWNlTx3j4E2NJxat2rP', - }), - dict({ - 'chapter_id': '2E1Wk1N4bigyTVSg1tI0No', - 'chapter_number': 3, - 'duration_ms': 485590, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No', + dict({ + 'artist_id': '137W8MRPWKqSmrBGDBFSop', + 'name': 'Wiz Khalifa', + 'uri': 'spotify:artist:137W8MRPWKqSmrBGDBFSop', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 4', - 'type': 'chapter', - 'uri': 'spotify:episode:2E1Wk1N4bigyTVSg1tI0No', - }), - dict({ - 'chapter_id': '6tK38pBz4ZzcdeVlIRkRUM', - 'chapter_number': 4, - 'duration_ms': 523466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273aa9ba9e7b528084ada3308b1', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 5', - 'type': 'chapter', - 'uri': 'spotify:episode:6tK38pBz4ZzcdeVlIRkRUM', - }), - dict({ - 'chapter_id': '4qQ7jT2GhcIat2pQFFxQA9', - 'chapter_number': 5, - 'duration_ms': 1022066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02aa9ba9e7b528084ada3308b1', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 6', - 'type': 'chapter', - 'uri': 'spotify:episode:4qQ7jT2GhcIat2pQFFxQA9', - }), - dict({ - 'chapter_id': '0QNX88urT0YDlKxp9UWOWX', - 'chapter_number': 6, - 'duration_ms': 1602481, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851aa9ba9e7b528084ada3308b1', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 7', - 'type': 'chapter', - 'uri': 'spotify:episode:0QNX88urT0YDlKxp9UWOWX', - }), - dict({ - 'chapter_id': '2KgZ8UnDbdKFUHflP9AotL', - 'chapter_number': 7, - 'duration_ms': 1412075, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL', + ]), + 'name': 'Soy Así 2', + 'release_date': '2026-01-09', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:6lpZfEeWcLG0DDfgd22km8', + }), + dict({ + 'album_id': '5wguho5YJqF36UgNiY2mA8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0FvJm0y2eHw0aPkLLU3sIG', + 'name': 'FILMORE', + 'uri': 'spotify:artist:0FvJm0y2eHw0aPkLLU3sIG', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 8', - 'type': 'chapter', - 'uri': 'spotify:episode:2KgZ8UnDbdKFUHflP9AotL', - }), - dict({ - 'chapter_id': '4L1Y0jWKgrGfMB0HptLkQB', - 'chapter_number': 8, - 'duration_ms': 782497, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 9', - 'type': 'chapter', - 'uri': 'spotify:episode:4L1Y0jWKgrGfMB0HptLkQB', - }), - dict({ - 'chapter_id': '0b2UnulIuw17qtiyTb2AwM', - 'chapter_number': 9, - 'duration_ms': 670223, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732356f919195375b776f579a1', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 10', - 'type': 'chapter', - 'uri': 'spotify:episode:0b2UnulIuw17qtiyTb2AwM', - }), - dict({ - 'chapter_id': '6LrdmEqBMm6Y3HG9DPkZGc', - 'chapter_number': 10, - 'duration_ms': 1212630, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022356f919195375b776f579a1', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 11', - 'type': 'chapter', - 'uri': 'spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc', - }), - dict({ - 'chapter_id': '3XmAaccmDwQaCc63PlbSHu', - 'chapter_number': 11, - 'duration_ms': 952267, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512356f919195375b776f579a1', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 12', - 'type': 'chapter', - 'uri': 'spotify:episode:3XmAaccmDwQaCc63PlbSHu', - }), - dict({ - 'chapter_id': '09SfB2ZdMpJ0Horyvgb7uz', - 'chapter_number': 12, - 'duration_ms': 685061, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz', + ]), + 'name': 'Yeehaw', + 'release_date': '2025-12-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5wguho5YJqF36UgNiY2mA8', + }), + dict({ + 'album_id': '44QE4TTUn2HuPc65iOkKhI', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0FvJm0y2eHw0aPkLLU3sIG', + 'name': 'FILMORE', + 'uri': 'spotify:artist:0FvJm0y2eHw0aPkLLU3sIG', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 13', - 'type': 'chapter', - 'uri': 'spotify:episode:09SfB2ZdMpJ0Horyvgb7uz', - }), - dict({ - 'chapter_id': '2XA4dwf0ToQ9iVySpHTZ4D', - 'chapter_number': 13, - 'duration_ms': 986148, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 14', - 'type': 'chapter', - 'uri': 'spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D', - }), - dict({ - 'chapter_id': '0HdNqeQP9PF97GlIUKT2e6', - 'chapter_number': 14, - 'duration_ms': 347689, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273112ffbefca84603d765e1dee', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 15', - 'type': 'chapter', - 'uri': 'spotify:episode:0HdNqeQP9PF97GlIUKT2e6', - }), - dict({ - 'chapter_id': '4EgGjPK9EyWvuS4pb0JfVn', - 'chapter_number': 15, - 'duration_ms': 249678, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02112ffbefca84603d765e1dee', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 16', - 'type': 'chapter', - 'uri': 'spotify:episode:4EgGjPK9EyWvuS4pb0JfVn', - }), - dict({ - 'chapter_id': '0QW159PFdnfSo4jwofmh94', - 'chapter_number': 16, - 'duration_ms': 793338, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851112ffbefca84603d765e1dee', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 17', - 'type': 'chapter', - 'uri': 'spotify:episode:0QW159PFdnfSo4jwofmh94', - }), - dict({ - 'chapter_id': '6dhG5dwyxkMJ3o6c7VyMa9', - 'chapter_number': 17, - 'duration_ms': 774870, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9', + ]), + 'name': 'Yeehaw (Clean)', + 'release_date': '2025-12-25', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:44QE4TTUn2HuPc65iOkKhI', + }), + dict({ + 'album_id': '7EoWixoOdwjAqG7QNAYPqy', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0LthCv77K8NqLKr8B6266a', + 'name': 'Freak Nasty', + 'uri': 'spotify:artist:0LthCv77K8NqLKr8B6266a', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 18', - 'type': 'chapter', - 'uri': 'spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9', - }), - dict({ - 'chapter_id': '7LQHbg3sUq9hcWLXFjtor9', - 'chapter_number': 18, - 'duration_ms': 524800, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 19', - 'type': 'chapter', - 'uri': 'spotify:episode:7LQHbg3sUq9hcWLXFjtor9', - }), - dict({ - 'chapter_id': '6M0DmXvWGbIktNcxruSPaC', - 'chapter_number': 19, - 'duration_ms': 777769, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273839e75853260058868d9cff9', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 20', - 'type': 'chapter', - 'uri': 'spotify:episode:6M0DmXvWGbIktNcxruSPaC', - }), - dict({ - 'chapter_id': '3Jffij0q1mpI9yBut0Qk9s', - 'chapter_number': 20, - 'duration_ms': 1149648, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3Jffij0q1mpI9yBut0Qk9s', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02839e75853260058868d9cff9', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 21', - 'type': 'chapter', - 'uri': 'spotify:episode:3Jffij0q1mpI9yBut0Qk9s', - }), - dict({ - 'chapter_id': '0oZjvmF7NJzNtNyyiciJqB', - 'chapter_number': 21, - 'duration_ms': 433815, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0oZjvmF7NJzNtNyyiciJqB', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851839e75853260058868d9cff9', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 22', - 'type': 'chapter', - 'uri': 'spotify:episode:0oZjvmF7NJzNtNyyiciJqB', - }), - dict({ - 'chapter_id': '1r9bh8GhVPKvzP0sH5y43y', - 'chapter_number': 22, - 'duration_ms': 1846883, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1r9bh8GhVPKvzP0sH5y43y', + ]), + 'name': 'Fun Dip', + 'release_date': '2025-12-05', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:7EoWixoOdwjAqG7QNAYPqy', + }), + dict({ + 'album_id': '704rVRHvHjgKyIMAuFhn9G', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 23', - 'type': 'chapter', - 'uri': 'spotify:episode:1r9bh8GhVPKvzP0sH5y43y', - }), - dict({ - 'chapter_id': '1r4Am9RdfpXjOmNVhLe1RB', - 'chapter_number': 23, - 'duration_ms': 1928855, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1r4Am9RdfpXjOmNVhLe1RB', + dict({ + 'artist_id': '7sfl4Xt5KmfyDs2T3SVSMK', + 'name': 'Lil Jon', + 'uri': 'spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 24', - 'type': 'chapter', - 'uri': 'spotify:episode:1r4Am9RdfpXjOmNVhLe1RB', - }), - dict({ - 'chapter_id': '2MB3hYOuX94ualcaTo1IAQ', - 'chapter_number': 24, - 'duration_ms': 835552, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2MB3hYOuX94ualcaTo1IAQ', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27392aa9a2b1e5c37f1dac1cae5', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 25', - 'type': 'chapter', - 'uri': 'spotify:episode:2MB3hYOuX94ualcaTo1IAQ', - }), - dict({ - 'chapter_id': '28S5Yt9f1GMK0C371FxaQ0', - 'chapter_number': 25, - 'duration_ms': 1211637, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/28S5Yt9f1GMK0C371FxaQ0', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0292aa9a2b1e5c37f1dac1cae5', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 26', - 'type': 'chapter', - 'uri': 'spotify:episode:28S5Yt9f1GMK0C371FxaQ0', - }), - dict({ - 'chapter_id': '5EuXfpQW2dyfvNKGQmfafO', - 'chapter_number': 26, - 'duration_ms': 608548, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5EuXfpQW2dyfvNKGQmfafO', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485192aa9a2b1e5c37f1dac1cae5', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 27', - 'type': 'chapter', - 'uri': 'spotify:episode:5EuXfpQW2dyfvNKGQmfafO', - }), - dict({ - 'chapter_id': '3I74lzJe404dLgzS4JSSS1', - 'chapter_number': 27, - 'duration_ms': 1744848, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3I74lzJe404dLgzS4JSSS1', + ]), + 'name': 'Damn I Love Miami (Remixes)', + 'release_date': '2025-10-24', + 'release_date_precision': , + 'total_tracks': 5, + 'uri': 'spotify:album:704rVRHvHjgKyIMAuFhn9G', + }), + dict({ + 'album_id': '1iQFOdoDdXSpAJy5vLKA9p', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '13NpuESz6tlK819yBs0PuS', + 'name': 'Azteck', + 'uri': 'spotify:artist:13NpuESz6tlK819yBs0PuS', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 28', - 'type': 'chapter', - 'uri': 'spotify:episode:3I74lzJe404dLgzS4JSSS1', - }), - dict({ - 'chapter_id': '5qol4EI2NnldwPQtAY5kFM', - 'chapter_number': 28, - 'duration_ms': 986253, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5qol4EI2NnldwPQtAY5kFM', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 29', - 'type': 'chapter', - 'uri': 'spotify:episode:5qol4EI2NnldwPQtAY5kFM', - }), - dict({ - 'chapter_id': '5bsGB6123U4d27TZ4gRTxi', - 'chapter_number': 29, - 'duration_ms': 2147735, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5bsGB6123U4d27TZ4gRTxi', + dict({ + 'artist_id': '5ENS85nZShljwNgg4wFD7D', + 'name': 'Gabry Ponte', + 'uri': 'spotify:artist:5ENS85nZShljwNgg4wFD7D', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 30', - 'type': 'chapter', - 'uri': 'spotify:episode:5bsGB6123U4d27TZ4gRTxi', - }), - dict({ - 'chapter_id': '07qlaV2Igv88BtBaS4fEdM', - 'chapter_number': 30, - 'duration_ms': 814080, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/07qlaV2Igv88BtBaS4fEdM', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273872c1a350283cf2a533db263', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 31', - 'type': 'chapter', - 'uri': 'spotify:episode:07qlaV2Igv88BtBaS4fEdM', - }), - dict({ - 'chapter_id': '3c4LRz6BbLuTaRGD9pEEDh', - 'chapter_number': 31, - 'duration_ms': 2349662, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3c4LRz6BbLuTaRGD9pEEDh', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02872c1a350283cf2a533db263', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 32', - 'type': 'chapter', - 'uri': 'spotify:episode:3c4LRz6BbLuTaRGD9pEEDh', - }), - dict({ - 'chapter_id': '7Fl8XJc3ruNHa9GtJqL0Qn', - 'chapter_number': 32, - 'duration_ms': 509257, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7Fl8XJc3ruNHa9GtJqL0Qn', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851872c1a350283cf2a533db263', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 33', - 'type': 'chapter', - 'uri': 'spotify:episode:7Fl8XJc3ruNHa9GtJqL0Qn', - }), - dict({ - 'chapter_id': '1XatZyhYldaab2QcGQS9Pb', - 'chapter_number': 33, - 'duration_ms': 1821910, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1XatZyhYldaab2QcGQS9Pb', + ]), + 'name': 'Pretty Woman (All Around The World) (with Gabry Ponte)', + 'release_date': '2025-09-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1iQFOdoDdXSpAJy5vLKA9p', + }), + dict({ + 'album_id': '2WzCFW3ywduzHLbPNMrzji', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 34', - 'type': 'chapter', - 'uri': 'spotify:episode:1XatZyhYldaab2QcGQS9Pb', - }), - dict({ - 'chapter_id': '0JvhJpMBLt7AUVaG6uIbde', - 'chapter_number': 34, - 'duration_ms': 382955, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0JvhJpMBLt7AUVaG6uIbde', + dict({ + 'artist_id': '7sfl4Xt5KmfyDs2T3SVSMK', + 'name': 'Lil Jon', + 'uri': 'spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 35', - 'type': 'chapter', - 'uri': 'spotify:episode:0JvhJpMBLt7AUVaG6uIbde', - }), - dict({ - 'chapter_id': '5vCof4NdStWGCuV9mRQTWJ', - 'chapter_number': 35, - 'duration_ms': 647836, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5vCof4NdStWGCuV9mRQTWJ', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d9adce154235c6c5a5f45807', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 36', - 'type': 'chapter', - 'uri': 'spotify:episode:5vCof4NdStWGCuV9mRQTWJ', - }), - dict({ - 'chapter_id': '1pB66z22q8Hq1PuD6uqqBt', - 'chapter_number': 36, - 'duration_ms': 561005, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1pB66z22q8Hq1PuD6uqqBt', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d9adce154235c6c5a5f45807', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 37', - 'type': 'chapter', - 'uri': 'spotify:episode:1pB66z22q8Hq1PuD6uqqBt', - }), - dict({ - 'chapter_id': '6dI3NSMs9U2JUzliQGdgK7', - 'chapter_number': 37, - 'duration_ms': 1134158, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6dI3NSMs9U2JUzliQGdgK7', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d9adce154235c6c5a5f45807', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 38', - 'type': 'chapter', - 'uri': 'spotify:episode:6dI3NSMs9U2JUzliQGdgK7', - }), - dict({ - 'chapter_id': '6b1dF8WD0U6rA3ktJqfJp2', - 'chapter_number': 38, - 'duration_ms': 432195, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6b1dF8WD0U6rA3ktJqfJp2', + ]), + 'name': 'Damn I Love Miami', + 'release_date': '2025-09-12', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2WzCFW3ywduzHLbPNMrzji', + }), + dict({ + 'album_id': '46FjPDtNFTZ0kn3PVLAcHF', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 39', - 'type': 'chapter', - 'uri': 'spotify:episode:6b1dF8WD0U6rA3ktJqfJp2', - }), - dict({ - 'chapter_id': '73nqrNdGzTsgR9svw1SA1G', - 'chapter_number': 39, - 'duration_ms': 648724, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/73nqrNdGzTsgR9svw1SA1G', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 40', - 'type': 'chapter', - 'uri': 'spotify:episode:73nqrNdGzTsgR9svw1SA1G', - }), - dict({ - 'chapter_id': '45jG2BMCnRZBVEOsw1BswM', - 'chapter_number': 40, - 'duration_ms': 901146, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/45jG2BMCnRZBVEOsw1BswM', + dict({ + 'artist_id': '5hdhHgpxyniooUiQVaPxQ0', + 'name': 'Nio Garcia', + 'uri': 'spotify:artist:5hdhHgpxyniooUiQVaPxQ0', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 41', - 'type': 'chapter', - 'uri': 'spotify:episode:45jG2BMCnRZBVEOsw1BswM', - }), - dict({ - 'chapter_id': '7CMZE1TeMleiK3PwEVCHVR', - 'chapter_number': 41, - 'duration_ms': 581877, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7CMZE1TeMleiK3PwEVCHVR', + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273523d67dd370be63f64985e96', + 'width': 640, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 42', - 'type': 'chapter', - 'uri': 'spotify:episode:7CMZE1TeMleiK3PwEVCHVR', - }), - dict({ - 'chapter_id': '4byBCvjAcXe7aNIxmtMcn3', - 'chapter_number': 42, - 'duration_ms': 2124068, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4byBCvjAcXe7aNIxmtMcn3', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02523d67dd370be63f64985e96', + 'width': 300, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 43', - 'type': 'chapter', - 'uri': 'spotify:episode:4byBCvjAcXe7aNIxmtMcn3', - }), - dict({ - 'chapter_id': '62ORogw9Znrj8lG7emt33z', - 'chapter_number': 43, - 'duration_ms': 1246093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/62ORogw9Znrj8lG7emt33z', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851523d67dd370be63f64985e96', + 'width': 64, }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 44', - 'type': 'chapter', - 'uri': 'spotify:episode:62ORogw9Znrj8lG7emt33z', - }), - dict({ - 'chapter_id': '2zVVcf09xv6zuQrVf4mnkx', - 'chapter_number': 44, - 'duration_ms': 808228, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2zVVcf09xv6zuQrVf4mnkx', + ]), + 'name': 'Hangover', + 'release_date': '2025-08-28', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:46FjPDtNFTZ0kn3PVLAcHF', + }), + dict({ + 'album_id': '5Skfxe8hI3uMoQ5l3Wl0GS', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 45', - 'type': 'chapter', - 'uri': 'spotify:episode:2zVVcf09xv6zuQrVf4mnkx', - }), - dict({ - 'chapter_id': '1AOg0Ft76RiOITF8hp4cEC', - 'chapter_number': 45, - 'duration_ms': 741276, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1AOg0Ft76RiOITF8hp4cEC', + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 46', - 'type': 'chapter', - 'uri': 'spotify:episode:1AOg0Ft76RiOITF8hp4cEC', - }), - dict({ - 'chapter_id': '3NCNzeZsuSioUkpAWDTGha', - 'chapter_number': 46, - 'duration_ms': 315062, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NCNzeZsuSioUkpAWDTGha', + dict({ + 'artist_id': '0jnsk9HBra6NMjO2oANoPY', + 'name': 'Flo Rida', + 'uri': 'spotify:artist:0jnsk9HBra6NMjO2oANoPY', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 47', - 'type': 'chapter', - 'uri': 'spotify:episode:3NCNzeZsuSioUkpAWDTGha', - }), - dict({ - 'chapter_id': '0580L8XcDYwI8ihms7R81U', - 'chapter_number': 47, - 'duration_ms': 320783, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0580L8XcDYwI8ihms7R81U', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'Track 48', - 'type': 'chapter', - 'uri': 'spotify:episode:0580L8XcDYwI8ihms7R81U', - }), - dict({ - 'chapter_id': '7u2OveukvhLXEcwX2mqhSP', - 'chapter_number': 48, - 'duration_ms': 227474, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7u2OveukvhLXEcwX2mqhSP', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - '', - ]), - 'name': 'De nomade', - 'type': 'chapter', - 'uri': 'spotify:episode:7u2OveukvhLXEcwX2mqhSP', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ - dict({ - 'name': 'Nienke Brinkhuis', - }), - dict({ - 'name': 'Cees van Ede', - }), - dict({ - 'name': 'Mattijn Hartemink', - }), - ]), - 'publisher': 'Anya Niewierra', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }) -# --- -# name: test_get_audiobook_chapters - list([ - dict({ - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2737be5ef3170160852d7de399a', + 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e027be5ef3170160852d7de399a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048517be5ef3170160852d7de399a', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 1', - 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + 'name': 'Borracho Y Loco', + 'release_date': '2025-08-28', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5Skfxe8hI3uMoQ5l3Wl0GS', }), dict({ - 'chapter_id': '49TZsjpPPA4jEuAJ8bJbGf', - 'chapter_number': 1, - 'duration_ms': 565942, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf', - }), + 'album_id': '3EIHFD7cnGod28Kg61IfEB', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5C01hDqpEmrmDfUhX9YWsH', + 'name': 'FIFA Sound', + 'uri': 'spotify:artist:5C01hDqpEmrmDfUhX9YWsH', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '6O9WquDfQTxGRZqZUXVEQx', + 'name': 'RedOne', + 'uri': 'spotify:artist:6O9WquDfQTxGRZqZUXVEQx', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b27305d2f75cc2f039183c14bcdf', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e0205d2f75cc2f039183c14bcdf', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000485105d2f75cc2f039183c14bcdf', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 2', - 'type': 'chapter', - 'uri': 'spotify:episode:49TZsjpPPA4jEuAJ8bJbGf', + 'name': 'We Will Rock You (2025 FIFA Club World Cup Theme Song) feat. Pitbull x RedOne', + 'release_date': '2025-06-13', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3EIHFD7cnGod28Kg61IfEB', }), dict({ - 'chapter_id': '0rPuWNlTx3j4E2NJxat2rP', - 'chapter_number': 2, - 'duration_ms': 974132, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP', - }), + 'album_id': '5VaS19t97GVYwJZWi71BDi', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '00CMSJdbf36zOzKB3z8JrR', + 'name': 'Victor Cardenas', + 'uri': 'spotify:artist:00CMSJdbf36zOzKB3z8JrR', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736142c9ff5c9347c67be7cf88', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e026142c9ff5c9347c67be7cf88', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048516142c9ff5c9347c67be7cf88', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 3', - 'type': 'chapter', - 'uri': 'spotify:episode:0rPuWNlTx3j4E2NJxat2rP', + 'name': 'Soy Así', + 'release_date': '2025-06-06', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5VaS19t97GVYwJZWi71BDi', }), dict({ - 'chapter_id': '2E1Wk1N4bigyTVSg1tI0No', - 'chapter_number': 3, - 'duration_ms': 485590, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No', - }), + 'album_id': '0INLo9d20pUVNHOX1x2X4Q', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '7iJrDbKM5fEkGdm5kpjFzS', + 'name': 'Sensato', + 'uri': 'spotify:artist:7iJrDbKM5fEkGdm5kpjFzS', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273d76e202fccbb3a19727ec34a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02d76e202fccbb3a19727ec34a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851d76e202fccbb3a19727ec34a', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 4', - 'type': 'chapter', - 'uri': 'spotify:episode:2E1Wk1N4bigyTVSg1tI0No', + 'name': 'No Te Hagas', + 'release_date': '2025-05-09', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:0INLo9d20pUVNHOX1x2X4Q', }), dict({ - 'chapter_id': '6tK38pBz4ZzcdeVlIRkRUM', - 'chapter_number': 4, - 'duration_ms': 523466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM', - }), + 'album_id': '5tjFV3KmhkpTpRTnv1I8Wu', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '58lV9VcRSjABbAbfWS6skp', + 'name': 'Bon Jovi', + 'uri': 'spotify:artist:58lV9VcRSjABbAbfWS6skp', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f8dd5532fe1387b2ad40f423', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f8dd5532fe1387b2ad40f423', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851f8dd5532fe1387b2ad40f423', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 5', - 'type': 'chapter', - 'uri': 'spotify:episode:6tK38pBz4ZzcdeVlIRkRUM', + 'name': 'Now Or Never', + 'release_date': '2025-03-28', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:5tjFV3KmhkpTpRTnv1I8Wu', }), dict({ - 'chapter_id': '4qQ7jT2GhcIat2pQFFxQA9', - 'chapter_number': 5, - 'duration_ms': 1022066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9', - }), + 'album_id': '0f5Fhl4ZgbGtWwtxGofKqa', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '58lV9VcRSjABbAbfWS6skp', + 'name': 'Bon Jovi', + 'uri': 'spotify:artist:58lV9VcRSjABbAbfWS6skp', + }), + dict({ + 'artist_id': '5bzWtCkjIAMgN93gLt56SO', + 'name': 'Tropkillaz', + 'uri': 'spotify:artist:5bzWtCkjIAMgN93gLt56SO', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273deb06c010f4275b0002c7b7e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02deb06c010f4275b0002c7b7e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851deb06c010f4275b0002c7b7e', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 6', - 'type': 'chapter', - 'uri': 'spotify:episode:4qQ7jT2GhcIat2pQFFxQA9', + 'name': 'Now Or Never (TropKillaz Remix)', + 'release_date': '2025-03-27', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:0f5Fhl4ZgbGtWwtxGofKqa', }), dict({ - 'chapter_id': '0QNX88urT0YDlKxp9UWOWX', - 'chapter_number': 6, - 'duration_ms': 1602481, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX', - }), + 'album_id': '7wI8TpkCWRTwmnzZNjUDTj', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '58lV9VcRSjABbAbfWS6skp', + 'name': 'Bon Jovi', + 'uri': 'spotify:artist:58lV9VcRSjABbAbfWS6skp', + }), + dict({ + 'artist_id': '34DQTRbIYPLSGU2SkOTEja', + 'name': 'Muzik Junkies', + 'uri': 'spotify:artist:34DQTRbIYPLSGU2SkOTEja', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273d44c7246f1d59d87462644b0', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02d44c7246f1d59d87462644b0', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851d44c7246f1d59d87462644b0', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 7', - 'type': 'chapter', - 'uri': 'spotify:episode:0QNX88urT0YDlKxp9UWOWX', + 'name': 'Now or Never (Muzik Junkies & AROCK Remix)', + 'release_date': '2025-03-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:7wI8TpkCWRTwmnzZNjUDTj', }), dict({ - 'chapter_id': '2KgZ8UnDbdKFUHflP9AotL', - 'chapter_number': 7, - 'duration_ms': 1412075, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL', - }), + 'album_id': '3fZxc2BwHIv2I72Txd9yGq', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '58lV9VcRSjABbAbfWS6skp', + 'name': 'Bon Jovi', + 'uri': 'spotify:artist:58lV9VcRSjABbAbfWS6skp', + }), + dict({ + 'artist_id': '4VyCiFrplEiSgKvimCvGy0', + 'name': 'DJ Triple XL', + 'uri': 'spotify:artist:4VyCiFrplEiSgKvimCvGy0', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f5b012d83be9076b7b3c8f5c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f5b012d83be9076b7b3c8f5c', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851f5b012d83be9076b7b3c8f5c', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 8', - 'type': 'chapter', - 'uri': 'spotify:episode:2KgZ8UnDbdKFUHflP9AotL', + 'name': 'Now or Never (F.A.S.T x & DJ Triple XL Remix)', + 'release_date': '2025-03-25', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3fZxc2BwHIv2I72Txd9yGq', }), dict({ - 'chapter_id': '4L1Y0jWKgrGfMB0HptLkQB', - 'chapter_number': 8, - 'duration_ms': 782497, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB', - }), - 'images': list([ + 'album_id': '2K3vXTZjcuWR8H8LgvJ8Yk', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, + 'artist_id': '7qG3b048QCHVRO5Pv1T5lw', + 'name': 'Enrique Iglesias', + 'uri': 'spotify:artist:7qG3b048QCHVRO5Pv1T5lw', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, + 'artist_id': '0b2GL7Y02vu50qieoQmw1w', + 'name': 'IAmChino', + 'uri': 'spotify:artist:0b2GL7Y02vu50qieoQmw1w', }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 9', - 'type': 'chapter', - 'uri': 'spotify:episode:4L1Y0jWKgrGfMB0HptLkQB', - }), - dict({ - 'chapter_id': '0b2UnulIuw17qtiyTb2AwM', - 'chapter_number': 9, - 'duration_ms': 670223, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM', - }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2737e25dc727b5fda6731ea49d2', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e027e25dc727b5fda6731ea49d2', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048517e25dc727b5fda6731ea49d2', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 10', - 'type': 'chapter', - 'uri': 'spotify:episode:0b2UnulIuw17qtiyTb2AwM', + 'name': 'Tamo Bien', + 'release_date': '2025-03-05', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2K3vXTZjcuWR8H8LgvJ8Yk', }), dict({ - 'chapter_id': '6LrdmEqBMm6Y3HG9DPkZGc', - 'chapter_number': 10, - 'duration_ms': 1212630, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc', - }), + 'album_id': '51dVwp68x0e1GZNOgE7hyK', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5XLBtYR2VrpkqXdlvNnFHG', + 'name': 'Heidi Montag', + 'uri': 'spotify:artist:5XLBtYR2VrpkqXdlvNnFHG', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2732a8026edcb4e2e1d87418a73', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e022a8026edcb4e2e1d87418a73', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048512a8026edcb4e2e1d87418a73', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 11', - 'type': 'chapter', - 'uri': 'spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc', + 'name': "I'll Do It (feat. Pitbull)", + 'release_date': '2025-02-06', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:51dVwp68x0e1GZNOgE7hyK', }), dict({ - 'chapter_id': '3XmAaccmDwQaCc63PlbSHu', - 'chapter_number': 11, - 'duration_ms': 952267, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu', - }), + 'album_id': '4ObwiIpULEzwOPrtLSd7xA', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '58lV9VcRSjABbAbfWS6skp', + 'name': 'Bon Jovi', + 'uri': 'spotify:artist:58lV9VcRSjABbAbfWS6skp', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b27328f391d916a9abe7ddc8800e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e0228f391d916a9abe7ddc8800e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000485128f391d916a9abe7ddc8800e', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 12', - 'type': 'chapter', - 'uri': 'spotify:episode:3XmAaccmDwQaCc63PlbSHu', + 'name': 'Now Or Never', + 'release_date': '2024-11-14', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:4ObwiIpULEzwOPrtLSd7xA', }), dict({ - 'chapter_id': '09SfB2ZdMpJ0Horyvgb7uz', - 'chapter_number': 12, - 'duration_ms': 685061, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz', - }), + 'album_id': '5s2pXXHew5LPbEU8DgOYHg', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '52iwsT98xCoGgiGntTiR7K', + 'name': 'Quevedo', + 'uri': 'spotify:artist:52iwsT98xCoGgiGntTiR7K', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736b232c8a534909a023259dea', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e026b232c8a534909a023259dea', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048516b232c8a534909a023259dea', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 13', - 'type': 'chapter', - 'uri': 'spotify:episode:09SfB2ZdMpJ0Horyvgb7uz', + 'name': 'MR. MOONDIAL', + 'release_date': '2024-11-13', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5s2pXXHew5LPbEU8DgOYHg', }), dict({ - 'chapter_id': '2XA4dwf0ToQ9iVySpHTZ4D', - 'chapter_number': 13, - 'duration_ms': 986148, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D', - }), + 'album_id': '7A0AEPu9sqHZpSIDI1zLEM', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '2FKWNmZWDBZR4dE5KX4plR', + 'name': 'Diljit Dosanjh', + 'uri': 'spotify:artist:2FKWNmZWDBZR4dE5KX4plR', + }), + dict({ + 'artist_id': '4f7KfxeHq9BiylGmyXepGt', + 'name': 'Tanishk Bagchi', + 'uri': 'spotify:artist:4f7KfxeHq9BiylGmyXepGt', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273b64f4ac4a25a5ce77ba13b04', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02b64f4ac4a25a5ce77ba13b04', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851b64f4ac4a25a5ce77ba13b04', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 14', - 'type': 'chapter', - 'uri': 'spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D', + 'name': 'Bhool Bhulaiyaa 3 - Title Track (feat. Pitbull)', + 'release_date': '2024-10-16', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:7A0AEPu9sqHZpSIDI1zLEM', }), dict({ - 'chapter_id': '0HdNqeQP9PF97GlIUKT2e6', - 'chapter_number': 14, - 'duration_ms': 347689, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6', - }), + 'album_id': '2LLRQs8JFjFm9RkkT9Hmqf', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4WzBqbc7fxl2y8XrznMSqf', + 'name': 'Candelita', + 'uri': 'spotify:artist:4WzBqbc7fxl2y8XrznMSqf', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '3OcvS8PzSGYMBvLdzY6g3e', + 'name': 'Silvestre Dangond', + 'uri': 'spotify:artist:3OcvS8PzSGYMBvLdzY6g3e', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2730d2057719283f5bc9af31a31', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e020d2057719283f5bc9af31a31', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048510d2057719283f5bc9af31a31', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 15', - 'type': 'chapter', - 'uri': 'spotify:episode:0HdNqeQP9PF97GlIUKT2e6', + 'name': 'OMG (Remix)', + 'release_date': '2024-10-11', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2LLRQs8JFjFm9RkkT9Hmqf', }), dict({ - 'chapter_id': '4EgGjPK9EyWvuS4pb0JfVn', - 'chapter_number': 15, - 'duration_ms': 249678, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn', - }), + 'album_id': '3ZzkxHr39xEJvbl7UWKcPZ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '21E3waRsmPlU7jZsS13rcj', + 'name': 'Ne-Yo', + 'uri': 'spotify:artist:21E3waRsmPlU7jZsS13rcj', + }), + dict({ + 'artist_id': '4D75GcNG95ebPtNvoNVXhz', + 'name': 'AFROJACK', + 'uri': 'spotify:artist:4D75GcNG95ebPtNvoNVXhz', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 16', - 'type': 'chapter', - 'uri': 'spotify:episode:4EgGjPK9EyWvuS4pb0JfVn', + 'name': '2 The Moon (The Remixes)', + 'release_date': '2024-09-20', + 'release_date_precision': , + 'total_tracks': 5, + 'uri': 'spotify:album:3ZzkxHr39xEJvbl7UWKcPZ', }), dict({ - 'chapter_id': '0QW159PFdnfSo4jwofmh94', - 'chapter_number': 16, - 'duration_ms': 793338, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94', - }), + 'album_id': '0kwED9Hwu9K0d9NLBBsAWd', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + dict({ + 'artist_id': '21E3waRsmPlU7jZsS13rcj', + 'name': 'Ne-Yo', + 'uri': 'spotify:artist:21E3waRsmPlU7jZsS13rcj', + }), + dict({ + 'artist_id': '4D75GcNG95ebPtNvoNVXhz', + 'name': 'AFROJACK', + 'uri': 'spotify:artist:4D75GcNG95ebPtNvoNVXhz', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273c97e191da13e43091c283880', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02c97e191da13e43091c283880', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851c97e191da13e43091c283880', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 17', - 'type': 'chapter', - 'uri': 'spotify:episode:0QW159PFdnfSo4jwofmh94', + 'name': '2 The Moon (The Remixes)', + 'release_date': '2024-09-20', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:0kwED9Hwu9K0d9NLBBsAWd', }), dict({ - 'chapter_id': '6dhG5dwyxkMJ3o6c7VyMa9', - 'chapter_number': 17, - 'duration_ms': 774870, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9', - }), + 'album_id': '0EIZb3DTMZlZt2FLndqpSY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4Q6nIcaBED8qUel8bBx6Cr', + 'name': 'Jax Jones', + 'uri': 'spotify:artist:4Q6nIcaBED8qUel8bBx6Cr', + }), + dict({ + 'artist_id': '07YZf4WDAMNwqr4jfgOZ8y', + 'name': 'Jason Derulo', + 'uri': 'spotify:artist:07YZf4WDAMNwqr4jfgOZ8y', + }), + dict({ + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2734d0780b70648eace7cbba259', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e024d0780b70648eace7cbba259', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d000048514d0780b70648eace7cbba259', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 18', - 'type': 'chapter', - 'uri': 'spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9', + 'name': 'Tonight (D.I.Y.A) [Pitbull Remix]', + 'release_date': '2024-08-16', + 'release_date_precision': , + 'total_tracks': 2, + 'uri': 'spotify:album:0EIZb3DTMZlZt2FLndqpSY', }), dict({ - 'chapter_id': '7LQHbg3sUq9hcWLXFjtor9', - 'chapter_number': 18, - 'duration_ms': 524800, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9', - }), - 'images': list([ + 'album_id': '0Iauzjo1cjGE9cx4odkKHb', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, + 'artist_id': '37G8DfNgO4mQ3PKh5droSo', + 'name': 'Osmani Garcia "La Voz"', + 'uri': 'spotify:artist:37G8DfNgO4mQ3PKh5droSo', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, + 'artist_id': '0TnOYISbd1XYRBk9myaseg', + 'name': 'Pitbull', + 'uri': 'spotify:artist:0TnOYISbd1XYRBk9myaseg', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, + 'artist_id': '1yX62RHdYysNcIrO33WQxJ', + 'name': 'Dani Flow', + 'uri': 'spotify:artist:1yX62RHdYysNcIrO33WQxJ', }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 19', - 'type': 'chapter', - 'uri': 'spotify:episode:7LQHbg3sUq9hcWLXFjtor9', - }), - dict({ - 'chapter_id': '6M0DmXvWGbIktNcxruSPaC', - 'chapter_number': 19, - 'duration_ms': 777769, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC', - }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d0000b273786fd1d7ac19c1aa5591522f', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00001e02786fd1d7ac19c1aa5591522f', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'url': 'https://i.scdn.co/image/ab67616d00004851786fd1d7ac19c1aa5591522f', 'width': 64, }), ]), - 'languages': list([ - '', - ]), - 'name': 'Track 20', - 'type': 'chapter', - 'uri': 'spotify:episode:6M0DmXvWGbIktNcxruSPaC', + 'name': 'Chi Chi Bon Bon (Remix)', + 'release_date': '2024-08-02', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:0Iauzjo1cjGE9cx4odkKHb', }), ]) # --- -# name: test_get_chapter +# name: test_get_audio_features dict({ - 'audiobook': dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', - }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ - dict({ - 'name': 'Nienke Brinkhuis', - }), - dict({ - 'name': 'Cees van Ede', - }), - dict({ - 'name': 'Mattijn Hartemink', - }), - ]), - 'publisher': 'Anya Niewierra', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'chapter_id': '3NW4BmIOG0qzQZgtLgsydR', - 'chapter_number': 0, - 'duration_ms': 249652, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Track 1', - 'type': 'chapter', - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + 'acousticness': 0.011, + 'danceability': 0.696, + 'energy': 0.905, + 'instrumentalness': 0.000905, + 'key': , + 'liveness': 0.302, + 'loudness': -2.743, + 'mode': , + 'speechiness': 0.103, + 'tempo': 114.944, + 'time_signature': , + 'valence': 0.625, }) # --- -# name: test_get_current_playing +# name: test_get_audiobook dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p', + 'audiobook_id': '6SJQ8VzM5PlDy11wMtcD6v', + 'authors': list([ + dict({ + 'name': 'J.K. Rowling', }), - 'href': 'https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - 'currently_playing_type': 'track', - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '1LorgdkFY2zgE6NbDdY19k', - 'album_type': , - 'artists': list([ + ]), + 'chapters': list([ + dict({ + 'chapter_id': '0bnJ1qcNgHwwPWbDJAia57', + 'chapter_number': 0, + 'duration_ms': 23000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57', + }), + 'images': list([ dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), + 'languages': list([ + '', + ]), + 'name': 'Opening Credits', + 'type': 'chapter', + 'uri': 'spotify:episode:0bnJ1qcNgHwwPWbDJAia57', + }), + dict({ + 'chapter_id': '3XcHJLv9NVV3lI4ECSNGcl', + 'chapter_number': 1, + 'duration_ms': 1901683, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2', + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', 'width': 64, }), ]), - 'name': 'Dun Smeren Geld Verdienen', - 'release_date': '2019-05-13', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:1LorgdkFY2zgE6NbDdY19k', + 'languages': list([ + '', + ]), + 'name': 'Chapter 1: The Boy Who Lived', + 'type': 'chapter', + 'uri': 'spotify:episode:3XcHJLv9NVV3lI4ECSNGcl', }), - 'artists': list([ - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + dict({ + 'chapter_id': '6yXRrpO4DYkPEphS1wApK6', + 'chapter_number': 2, + 'duration_ms': 1329841, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6', }), - ]), - 'disc_number': 1, - 'duration_ms': 245581, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 2: The Vanishing Glass', + 'type': 'chapter', + 'uri': 'spotify:episode:6yXRrpO4DYkPEphS1wApK6', }), - 'href': 'https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ', - 'is_local': False, - 'name': 'Witte Was', - 'track_id': '4sIkwgf9bU7rQPvsA37rVQ', - 'track_number': 6, - 'type': , - 'uri': 'spotify:track:4sIkwgf9bU7rQPvsA37rVQ', - }), - 'progress_ms': 134749, - }) -# --- -# name: test_get_current_user - dict({ - 'display_name': 'Joost Lekkerkerker', - 'email': 'joostlek@outlook.com', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc', - 'width': 64, + 'chapter_id': '10fQLdhdGVbBYXvlXRVIPa', + 'chapter_number': 3, + 'duration_ms': 1517244, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 3: The Letters from No One', + 'type': 'chapter', + 'uri': 'spotify:episode:10fQLdhdGVbBYXvlXRVIPa', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc', - 'width': 300, - }), - ]), - 'object_type': 'user', - 'product': , - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }) -# --- -# name: test_get_current_users_playlists[current_user_playlist_1.json] - list([ - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', - }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273d061f5bfae8d38558f3698c1', - 'width': 640, - }), - ]), - 'name': 'Hyper', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + 'chapter_id': '46BVQZ5N2HbrtvO7EesYUY', + 'chapter_number': 4, + 'duration_ms': 1470066, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', - 'public': True, - 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 4: The Keeper of the Keys', + 'type': 'chapter', + 'uri': 'spotify:episode:46BVQZ5N2HbrtvO7EesYUY', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6', - 'width': 60, - }), - ]), - 'name': 'Ain’t got shit on me', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Rens Boeser', + dict({ + 'chapter_id': '4G2TaqHalYmLiL7fvJC75u', + 'chapter_number': 5, + 'duration_ms': 2643879, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', + 'spotify': 'https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u', }), - 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', - 'object_type': 'user', - 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', - 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', - }), - 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', - 'public': False, - 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 5: Diagon Alley', + 'type': 'chapter', + 'uri': 'spotify:episode:4G2TaqHalYmLiL7fvJC75u', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705', - 'width': 60, - }), - ]), - 'name': 'Billie (interlude)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + dict({ + 'chapter_id': '2F4ricTDPdDT2h2m0mhUbt', + 'chapter_number': 6, + 'duration_ms': 2286524, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '2ZfissHhjQnhlmD54h6elH', - 'public': True, - 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', - }), - dict({ - 'collaborative': False, - 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 6: The Journey from Platform Nine and Three-quarters', + 'type': 'chapter', + 'uri': 'spotify:episode:2F4ricTDPdDT2h2m0mhUbt', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000bebbdce297c9b2a3b46d3c0a41fb', - 'width': None, - }), - ]), - 'name': 'Forza Horizon 5 Bass Arena', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'SylveonTribe', + dict({ + 'chapter_id': '2nCrEIRgNfQpR9BUryaiyr', + 'chapter_number': 7, + 'duration_ms': 1773949, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/rwilming', + 'spotify': 'https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr', }), - 'href': 'https://api.spotify.com/v1/users/rwilming', - 'object_type': 'user', - 'owner_id': 'rwilming', - 'uri': 'spotify:user:rwilming', - }), - 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', - 'public': False, - 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 7: The Sorting Hat', + 'type': 'chapter', + 'uri': 'spotify:episode:2nCrEIRgNfQpR9BUryaiyr', }), - 'images': list([ - ]), - 'name': 'My Playlist #63', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + dict({ + 'chapter_id': '4jVigNVaZVhuAOXlf8TDNX', + 'chapter_number': 8, + 'duration_ms': 1125799, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', - 'public': True, - 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 8: The Potions Master', + 'type': 'chapter', + 'uri': 'spotify:episode:4jVigNVaZVhuAOXlf8TDNX', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b', - 'width': 60, - }), - ]), - 'name': 'Crème', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + dict({ + 'chapter_id': '0IHdKlFFno5yhCdmRSip9g', + 'chapter_number': 9, + 'duration_ms': 1841528, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', - 'public': True, - 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', - }), - dict({ - 'collaborative': False, - 'description': 'Spotify Wrapped presents the songs that you loved most this year.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 9: The Midnight Duel', + 'type': 'chapter', + 'uri': 'spotify:episode:0IHdKlFFno5yhCdmRSip9g', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/large/your-top-songs-2022_large_en.jpg', - 'width': None, - }), - ]), - 'name': 'Your Top Songs 2022', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', + dict({ + 'chapter_id': '20kk3OD8mjGkpucTvqYa9K', + 'chapter_number': 10, + 'duration_ms': 1571735, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K', }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1F0sijgNaJdgit', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', - }), - dict({ - 'collaborative': False, - 'description': 'Rock for when on the move.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX6YSLRPj8EAI', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 10: Halloween', + 'type': 'chapter', + 'uri': 'spotify:episode:20kk3OD8mjGkpucTvqYa9K', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f000000037ef65b059c5fdd9834b05bc9', - 'width': None, - }), - ]), - 'name': 'omw from the pit', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', + dict({ + 'chapter_id': '7vG172nPGGr3ZXm4YdL1nx', + 'chapter_number': 11, + 'duration_ms': 1209887, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx', }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX6YSLRPj8EAI', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZF1DX6YSLRPj8EAI', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 11: Quidditch', + 'type': 'chapter', + 'uri': 'spotify:episode:7vG172nPGGr3ZXm4YdL1nx', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1', - 'width': 60, - }), - ]), - 'name': 'My Shazam Tracks', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + dict({ + 'chapter_id': '1yRfwSOp8Jy1GisI0JIhMK', + 'chapter_number': 12, + 'duration_ms': 2066155, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', - 'public': True, - 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 12: The Mirror of Erised', + 'type': 'chapter', + 'uri': 'spotify:episode:1yRfwSOp8Jy1GisI0JIhMK', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c', - 'width': 60, - }), - ]), - 'name': 'Likes', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + dict({ + 'chapter_id': '3BKzXnwHwemuVsJC2bSIYA', + 'chapter_number': 13, + 'duration_ms': 1219422, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', - 'public': True, - 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', - }), - dict({ - 'collaborative': False, - 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 13: Nicolas Flamel', + 'type': 'chapter', + 'uri': 'spotify:episode:3BKzXnwHwemuVsJC2bSIYA', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/stfxRixhceEsm_g7gO49YG1QsPjeunG6pNz8FmJENkOk2hR2EYo9nNsDL_MhjTxn8dIkVBsnTkvXlYlE7IZ0818v7z5KIwRNyI6tUamw8Fg=/MjA6NTQ6ODBUNjItMjEtMw==', - 'width': None, + dict({ + 'chapter_id': '1wBkAOL29N9vkHTfvaACGv', + 'chapter_number': 14, + 'duration_ms': 1280000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv', }), - ]), - 'name': 'Discover Weekly', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 14: Norbert The Norwegian Ridgeback', + 'type': 'chapter', + 'uri': 'spotify:episode:1wBkAOL29N9vkHTfvaACGv', + }), + dict({ + 'chapter_id': '23cBJs22XGN3G7gA2EA0i1', + 'chapter_number': 15, + 'duration_ms': 2063306, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1', }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 15: The Forbidden Forest', + 'type': 'chapter', + 'uri': 'spotify:episode:23cBJs22XGN3G7gA2EA0i1', }), - 'playlist_id': '37i9dQZEVXcGYKTerf9omc', - 'public': False, - 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', - }), - dict({ - 'collaborative': False, - 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', + dict({ + 'chapter_id': '3K5mu1lHmrHC3CNPWV9r2A', + 'chapter_number': 16, + 'duration_ms': 2587167, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 16: Through the Trapdoor', + 'type': 'chapter', + 'uri': 'spotify:episode:3K5mu1lHmrHC3CNPWV9r2A', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab6764780000c480/dt/v3/release-radar/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b/en-GB', - 'width': None, + dict({ + 'chapter_id': '0V36QZwEj9VPrEiZF6AWoh', + 'chapter_number': 17, + 'duration_ms': 2327308, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh', }), - ]), - 'name': 'Release Radar', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 17: The Man with Two Faces', + 'type': 'chapter', + 'uri': 'spotify:episode:0V36QZwEj9VPrEiZF6AWoh', + }), + dict({ + 'chapter_id': '04xYt1v4vGr7V9lJxl5xwL', + 'chapter_number': 18, + 'duration_ms': 95770, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL', }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Ending Credits', + 'type': 'chapter', + 'uri': 'spotify:episode:04xYt1v4vGr7V9lJxl5xwL', }), - 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', + dict({ + 'chapter_id': '5q5hnqCbUbgulqlsrnWL7h', + 'chapter_number': 19, + 'duration_ms': 300000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': "Harry Potter and the Philosopher's Stone", + 'type': 'chapter', + 'uri': 'spotify:episode:5q5hnqCbUbgulqlsrnWL7h', + }), + ]), + 'description': "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + 'edition': 'Unabridged', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v', }), + 'html_description': 'Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + 'en', + ]), + 'name': "Harry Potter and the Philosopher's Stone", + 'narrators': list([ + dict({ + 'name': 'Stephen Fry', + }), + ]), + 'publisher': 'J.K. Rowling', + 'total_chapters': 20, + 'type': 'audiobook', + 'uri': 'spotify:show:6SJQ8VzM5PlDy11wMtcD6v', + }) +# --- +# name: test_get_audiobook_chapters + list([ dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '0bnJ1qcNgHwwPWbDJAia57', + 'chapter_number': 0, + 'duration_ms': 23000, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + 'spotify': 'https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "March '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '709T4OzANnUi2lKQLlVkrE', - 'public': False, - 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', + 'languages': list([ + '', + ]), + 'name': 'Opening Credits', + 'type': 'chapter', + 'uri': 'spotify:episode:0bnJ1qcNgHwwPWbDJAia57', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '3XcHJLv9NVV3lI4ECSNGcl', + 'chapter_number': 1, + 'duration_ms': 1901683, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', + 'spotify': 'https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "February '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', - 'public': False, - 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', + 'languages': list([ + '', + ]), + 'name': 'Chapter 1: The Boy Who Lived', + 'type': 'chapter', + 'uri': 'spotify:episode:3XcHJLv9NVV3lI4ECSNGcl', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '6yXRrpO4DYkPEphS1wApK6', + 'chapter_number': 2, + 'duration_ms': 1329841, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', + 'spotify': 'https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "January '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', - 'public': False, - 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', + 'languages': list([ + '', + ]), + 'name': 'Chapter 2: The Vanishing Glass', + 'type': 'chapter', + 'uri': 'spotify:episode:6yXRrpO4DYkPEphS1wApK6', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '10fQLdhdGVbBYXvlXRVIPa', + 'chapter_number': 3, + 'duration_ms': 1517244, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', + 'spotify': 'https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "December '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', - 'public': False, - 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + 'languages': list([ + '', + ]), + 'name': 'Chapter 3: The Letters from No One', + 'type': 'chapter', + 'uri': 'spotify:episode:10fQLdhdGVbBYXvlXRVIPa', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '46BVQZ5N2HbrtvO7EesYUY', + 'chapter_number': 4, + 'duration_ms': 1470066, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', + 'spotify': 'https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "November '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', - 'public': False, - 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', + 'languages': list([ + '', + ]), + 'name': 'Chapter 4: The Keeper of the Keys', + 'type': 'chapter', + 'uri': 'spotify:episode:46BVQZ5N2HbrtvO7EesYUY', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '4G2TaqHalYmLiL7fvJC75u', + 'chapter_number': 5, + 'duration_ms': 2643879, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', + 'spotify': 'https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "October '21", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', - 'public': False, - 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', + 'languages': list([ + '', + ]), + 'name': 'Chapter 5: Diagon Alley', + 'type': 'chapter', + 'uri': 'spotify:episode:4G2TaqHalYmLiL7fvJC75u', }), - ]) -# --- -# name: test_get_current_users_playlists[current_user_playlist_2.json] - list([ dict({ - 'collaborative': False, - 'description': 'You listened to freedom and vibing on Mondays in the morning. Here\'s some: melodic techno, house, fraternity, 130 bpm, doof doof and electric', + 'chapter_id': '2F4ricTDPdDT2h2m0mhUbt', + 'chapter_number': 6, + 'duration_ms': 2286524, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1', + 'spotify': 'https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'daylist • melodic techno house monday morning', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EP6YuccBxUcC1', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EP6YuccBxUcC1', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 6: The Journey from Platform Nine and Three-quarters', + 'type': 'chapter', + 'uri': 'spotify:episode:2F4ricTDPdDT2h2m0mhUbt', }), dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and Cheyenne. Updates daily.', + 'chapter_id': '2nCrEIRgNfQpR9BUryaiyr', + 'chapter_number': 7, + 'duration_ms': 1773949, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd', + 'spotify': 'https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Cheyenne + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJvpyGjPopYtd', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJvpyGjPopYtd', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 7: The Sorting Hat', + 'type': 'chapter', + 'uri': 'spotify:episode:2nCrEIRgNfQpR9BUryaiyr', }), dict({ - 'collaborative': False, - 'description': '100% good vibes.', + 'chapter_id': '4jVigNVaZVhuAOXlf8TDNX', + 'chapter_number': 8, + 'duration_ms': 1125799, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh', + 'spotify': 'https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Serotonin', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DWYMroOc5KTTh', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DWYMroOc5KTTh', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 8: The Potions Master', + 'type': 'chapter', + 'uri': 'spotify:episode:4jVigNVaZVhuAOXlf8TDNX', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '0IHdKlFFno5yhCdmRSip9g', + 'chapter_number': 9, + 'duration_ms': 1841528, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ', + 'spotify': 'https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Sweet', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5t75uJ5vBvEdbbvs5uIqXJ', - 'public': True, - 'uri': 'spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 9: The Midnight Duel', + 'type': 'chapter', + 'uri': 'spotify:episode:0IHdKlFFno5yhCdmRSip9g', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '20kk3OD8mjGkpucTvqYa9K', + 'chapter_number': 10, + 'duration_ms': 1571735, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', + 'spotify': 'https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Pain', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', - 'public': True, - 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1', - 'width': None, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'Hyper', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', - 'public': True, - 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', + 'languages': list([ + '', + ]), + 'name': 'Chapter 10: Halloween', + 'type': 'chapter', + 'uri': 'spotify:episode:20kk3OD8mjGkpucTvqYa9K', }), dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and Christel. Updates daily.', + 'chapter_id': '7vG172nPGGr3ZXm4YdL1nx', + 'chapter_number': 11, + 'duration_ms': 1209887, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv', + 'spotify': 'https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Christel + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJwDEkXAeJkCv', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJwDEkXAeJkCv', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 11: Quidditch', + 'type': 'chapter', + 'uri': 'spotify:episode:7vG172nPGGr3ZXm4YdL1nx', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '1yRfwSOp8Jy1GisI0JIhMK', + 'chapter_number': 12, + 'duration_ms': 2066155, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', + 'spotify': 'https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'Ain’t got shit on me', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Rensie', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', - }), - 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', - 'object_type': 'user', - 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', - 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', - }), - 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', - 'public': True, - 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', + 'languages': list([ + '', + ]), + 'name': 'Chapter 12: The Mirror of Erised', + 'type': 'chapter', + 'uri': 'spotify:episode:1yRfwSOp8Jy1GisI0JIhMK', }), dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and kosmik. Updates daily.', + 'chapter_id': '3BKzXnwHwemuVsJC2bSIYA', + 'chapter_number': 13, + 'duration_ms': 1219422, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD', + 'spotify': 'https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'kosmik + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJDyIuS82b8FD', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJDyIuS82b8FD', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 13: Nicolas Flamel', + 'type': 'chapter', + 'uri': 'spotify:episode:3BKzXnwHwemuVsJC2bSIYA', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '1wBkAOL29N9vkHTfvaACGv', + 'chapter_number': 14, + 'duration_ms': 1280000, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + 'spotify': 'https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'Billie (interlude)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '2ZfissHhjQnhlmD54h6elH', - 'public': True, - 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', + 'languages': list([ + '', + ]), + 'name': 'Chapter 14: Norbert The Norwegian Ridgeback', + 'type': 'chapter', + 'uri': 'spotify:episode:1wBkAOL29N9vkHTfvaACGv', }), dict({ - 'collaborative': False, - 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', + 'chapter_id': '23cBJs22XGN3G7gA2EA0i1', + 'chapter_number': 15, + 'duration_ms': 2063306, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', + 'spotify': 'https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb', - 'width': None, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - ]), - 'name': 'Forza Horizon 5 Bass Arena', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'SylveonTribe', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/rwilming', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/rwilming', - 'object_type': 'user', - 'owner_id': 'rwilming', - 'uri': 'spotify:user:rwilming', - }), - 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', - 'public': True, - 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', - }), - 'images': list([ - ]), - 'name': 'My Playlist #63', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', - 'public': True, - 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', + ]), + 'languages': list([ + '', + ]), + 'name': 'Chapter 15: The Forbidden Forest', + 'type': 'chapter', + 'uri': 'spotify:episode:23cBJs22XGN3G7gA2EA0i1', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '3K5mu1lHmrHC3CNPWV9r2A', + 'chapter_number': 16, + 'duration_ms': 2587167, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', + 'spotify': 'https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', - 'width': 60, - }), - ]), - 'name': 'Crème', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', - 'public': True, - 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', - }), - dict({ - 'collaborative': False, - 'description': 'Spotify Wrapped presents the songs that you loved most this year.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg', - 'width': None, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'Your Top Songs 2022', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1F0sijgNaJdgit', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', - }), - dict({ - 'collaborative': False, - 'description': "The UK's biggest rock playlist. Cover: Circa Waves", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464', - 'width': None, - }), + 'languages': list([ + '', ]), - 'name': 'The Rock List', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1DX4DZAVUAwHMT', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DX4DZAVUAwHMT', + 'name': 'Chapter 16: Through the Trapdoor', + 'type': 'chapter', + 'uri': 'spotify:episode:3K5mu1lHmrHC3CNPWV9r2A', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '0V36QZwEj9VPrEiZF6AWoh', + 'chapter_number': 17, + 'duration_ms': 2327308, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', + 'spotify': 'https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'My Shazam Tracks', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', - 'public': True, - 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', + 'languages': list([ + '', + ]), + 'name': 'Chapter 17: The Man with Two Faces', + 'type': 'chapter', + 'uri': 'spotify:episode:0V36QZwEj9VPrEiZF6AWoh', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '04xYt1v4vGr7V9lJxl5xwL', + 'chapter_number': 18, + 'duration_ms': 95770, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', + 'spotify': 'https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', - 'width': 60, - }), - ]), - 'name': 'Likes', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', - 'public': True, - 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', - }), - dict({ - 'collaborative': False, - 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==', - 'width': None, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': 'Discover Weekly', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZEVXcGYKTerf9omc', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', - }), - dict({ - 'collaborative': False, - 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en', - 'width': None, - }), + 'languages': list([ + '', ]), - 'name': 'Release Radar', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', - 'public': True, - 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', + 'name': 'Ending Credits', + 'type': 'chapter', + 'uri': 'spotify:episode:04xYt1v4vGr7V9lJxl5xwL', }), dict({ - 'collaborative': False, - 'description': '', + 'chapter_id': '5q5hnqCbUbgulqlsrnWL7h', + 'chapter_number': 19, + 'duration_ms': 300000, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + 'spotify': 'https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "March '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', - }), - 'playlist_id': '709T4OzANnUi2lKQLlVkrE', - 'public': True, - 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', + 'languages': list([ + '', + ]), + 'name': "Harry Potter and the Philosopher's Stone", + 'type': 'chapter', + 'uri': 'spotify:episode:5q5hnqCbUbgulqlsrnWL7h', }), - dict({ - 'collaborative': False, - 'description': '', + ]) +# --- +# name: test_get_chapter + dict({ + 'audiobook': dict({ + 'audiobook_id': '6SJQ8VzM5PlDy11wMtcD6v', + 'authors': list([ + dict({ + 'name': 'J.K. Rowling', + }), + ]), + 'description': "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + 'edition': 'Unabridged', + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', + 'spotify': 'https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v', }), + 'html_description': 'Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.', 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, }), ]), - 'name': "February '22", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'languages': list([ + 'en', + ]), + 'name': "Harry Potter and the Philosopher's Stone", + 'narrators': list([ + dict({ + 'name': 'Stephen Fry', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + ]), + 'publisher': 'J.K. Rowling', + 'total_chapters': 38, + 'type': 'audiobook', + 'uri': 'spotify:show:6SJQ8VzM5PlDy11wMtcD6v', + }), + 'chapter_id': '0bnJ1qcNgHwwPWbDJAia57', + 'chapter_number': 0, + 'duration_ms': 23000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6', + 'width': 640, }), - 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', - 'public': True, - 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6', + 'width': 64, + }), + ]), + 'languages': list([ + 'en', + ]), + 'name': 'Opening Credits', + 'type': 'chapter', + 'uri': 'spotify:episode:0bnJ1qcNgHwwPWbDJAia57', + }) +# --- +# name: test_get_current_playing + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p', + }), + 'href': 'https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + 'currently_playing_type': 'track', + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '1LorgdkFY2zgE6NbDdY19k', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2', + 'width': 64, + }), + ]), + 'name': 'Dun Smeren Geld Verdienen', + 'release_date': '2019-05-13', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:1LorgdkFY2zgE6NbDdY19k', + }), + 'artists': list([ + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + ]), + 'disc_number': 1, + 'duration_ms': 245581, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ', + }), + 'href': 'https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ', + 'is_local': False, + 'name': 'Witte Was', + 'track_id': '4sIkwgf9bU7rQPvsA37rVQ', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:4sIkwgf9bU7rQPvsA37rVQ', }), + 'progress_ms': 134749, + }) +# --- +# name: test_get_current_user + dict({ + 'display_name': 'Joost Lekkerkerker', + 'images': list([ + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc', + 'width': 64, + }), + ]), + 'object_type': 'user', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }) +# --- +# name: test_get_current_users_playlists[current_user_playlist_1.json] + list([ dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', + 'spotify': 'https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4', + 'width': None, }), ]), - 'name': "January '22", + 'name': 'To find', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5441,34 +4277,24 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', + 'playlist_id': '1Cp6VQCKf2VL4sP09jN9oX', 'public': True, - 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', + 'uri': 'spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', + 'spotify': 'https://open.spotify.com/playlist/0Wsgrrb7PCORhHq5L7wF0d', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e0204290e7559226bf75ac34da8', + 'width': None, }), ]), - 'name': "December '21", + 'name': 'Repeat ones', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5480,34 +4306,19 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', + 'playlist_id': '0Wsgrrb7PCORhHq5L7wF0d', 'public': True, - 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + 'uri': 'spotify:playlist:0Wsgrrb7PCORhHq5L7wF0d', }), dict({ 'collaborative': False, - 'description': '', + 'description': 'New playlist description', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', + 'spotify': 'https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB', }), 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', - 'width': 60, - }), ]), - 'name': "November '21", + 'name': 'New Playlist', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5519,34 +4330,24 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', + 'playlist_id': '2dGgoMPWpapXYA6rX7ZbbB', 'public': True, - 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', + 'uri': 'spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB', }), dict({ - 'collaborative': False, - 'description': '', + 'collaborative': True, + 'description': 'Updated playlist description', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', + 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983', + 'width': None, }), ]), - 'name': "October '21", + 'name': 'Updated Playlist Name2', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5558,34 +4359,24 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', + 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', 'public': True, - 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', + 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', }), dict({ 'collaborative': False, - 'description': '', + 'description': 'A musical time capsule from the past has been unsealed…!', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v', + 'spotify': 'https://open.spotify.com/playlist/2G2eo5DxAtxLu7aNGVvNpY', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', - 'width': 60, + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416264ef6071da49cbe93a951', + 'width': None, }), ]), - 'name': "September '21", + 'name': 'My 2024 Playlist in a Bottle', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5597,73 +4388,53 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '2ExZs1G4AOluuEwg3q5M1v', + 'playlist_id': '2G2eo5DxAtxLu7aNGVvNpY', 'public': True, - 'uri': 'spotify:playlist:2ExZs1G4AOluuEwg3q5M1v', + 'uri': 'spotify:playlist:2G2eo5DxAtxLu7aNGVvNpY', }), dict({ 'collaborative': False, - 'description': 'de soms niet zo casual weird vibe playlist', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu', + 'spotify': 'https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21', + 'width': None, }), ]), - 'name': 'Slumpmässiga', + 'name': 'Sweet', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'xleanne_', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/xleanne_', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/xleanne_', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'xleanne_', - 'uri': 'spotify:user:xleanne_', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4jNUJLnkZJ32nuFE1PjkGu', + 'playlist_id': '5t75uJ5vBvEdbbvs5uIqXJ', 'public': True, - 'uri': 'spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu', + 'uri': 'spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp', + 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': None, }), ]), - 'name': "August '21", + 'name': 'Pain', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5675,34 +4446,24 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '700dVjBihCDj2HwyhYDTRp', + 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', 'public': True, - 'uri': 'spotify:playlist:700dVjBihCDj2HwyhYDTRp', + 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265', + 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', - 'width': 60, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1', + 'width': None, }), ]), - 'name': 'Discover Weekly Archive', + 'name': 'Hyper', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5714,73 +4475,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '6B5dmWX7pK2LHHtS6ph265', + 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', 'public': True, - 'uri': 'spotify:playlist:6B5dmWX7pK2LHHtS6ph265', + 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i', + 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', 'width': 60, }), ]), - 'name': 'Dance vibes', + 'name': 'Ain’t got shit on me', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + 'display_name': 'Rensie', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', + 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', + 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', }), - 'playlist_id': '0ISThPpDv4JBNeHdptcK6i', + 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', 'public': True, - 'uri': 'spotify:playlist:0ISThPpDv4JBNeHdptcK6i', + 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', }), dict({ - 'collaborative': True, + 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s', + 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4', 'width': 60, }), ]), - 'name': 'goeien numertjs', + 'name': 'Billie (interlude)', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5792,73 +4553,63 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '2ElmM8s9Um1XSP07hADX9s', + 'playlist_id': '2ZfissHhjQnhlmD54h6elH', 'public': True, - 'uri': 'spotify:playlist:2ElmM8s9Um1XSP07hADX9s', + 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', }), dict({ 'collaborative': False, - 'description': '', + 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg', + 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', - 'width': 300, - }), - dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', - 'width': 60, + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb', + 'width': None, }), ]), - 'name': 'Summer vibes', + 'name': 'Forza Horizon 5 Bass Arena', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + 'display_name': 'SylveonTribe', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/user/rwilming', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', + 'href': 'https://api.spotify.com/v1/users/rwilming', 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'owner_id': 'rwilming', + 'uri': 'spotify:user:rwilming', }), - 'playlist_id': '0DRUBqBUSFJH1a7FvBIsGg', + 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', 'public': True, - 'uri': 'spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg', + 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od', + 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad', 'width': 60, }), ]), - 'name': "July '21", + 'name': 'Crème', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5870,63 +4621,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4PSXSX9WhxdjAzSjU175od', - 'public': True, - 'uri': 'spotify:playlist:4PSXSX9WhxdjAzSjU175od', - }), - dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and xleanne_. Updates daily.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg', - 'width': None, - }), - ]), - 'name': 'xleanne_ + Joost', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Spotify', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', - }), - 'href': 'https://api.spotify.com/v1/users/spotify', - 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', - }), - 'playlist_id': '37i9dQZF1EJADo3CBlOCly', + 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJADo3CBlOCly', + 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ', + 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866', 'width': 60, }), ]), - 'name': "June '21", + 'name': 'My Shazam Tracks', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -5938,92 +4660,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '1XKSZRcsYP6VTkObunDIjQ', + 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', 'public': True, - 'uri': 'spotify:playlist:1XKSZRcsYP6VTkObunDIjQ', + 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', }), dict({ 'collaborative': False, - 'description': 'This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm', + 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 640, }), - ]), - 'name': 'GTA Cayo Perico Beach Party: Keinemusik Set', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Austin Martinez', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/127651589', + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/127651589', - 'object_type': 'user', - 'owner_id': '127651589', - 'uri': 'spotify:user:127651589', - }), - 'playlist_id': '3uCD1EyW3JRx8SV1QnA3Zm', - 'public': True, - 'uri': 'spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm', - }), - dict({ - 'collaborative': False, - 'description': 'A Blend of music for Joost and Marc. Updates daily.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg', - 'width': None, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 60, }), ]), - 'name': 'Marc + Joost', + 'name': 'Likes', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1EJBr22FUQwTGS', + 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EJBr22FUQwTGS', + 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK', + 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b', 'width': 60, }), ]), - 'name': "May '21", + 'name': "March '22", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6035,34 +4738,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '3yPujxZ9OiB4By8COZaxaK', + 'playlist_id': '709T4OzANnUi2lKQLlVkrE', 'public': True, - 'uri': 'spotify:playlist:3yPujxZ9OiB4By8COZaxaK', + 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa', + 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be', 'width': 60, }), ]), - 'name': "April '21", + 'name': "February '22", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6074,63 +4777,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '4A31OO75jaLCV2r7bvbQUa', + 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', 'public': True, - 'uri': 'spotify:playlist:4A31OO75jaLCV2r7bvbQUa', + 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', }), dict({ 'collaborative': False, - 'description': 'HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION', + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK', + 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 60, }), ]), - 'name': 'BASS BOOSTED CAR MUSIC 2023', + 'name': "January '22", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'LIZOT', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/max.kleinschmidt', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/max.kleinschmidt', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'max.kleinschmidt', - 'uri': 'spotify:user:max.kleinschmidt', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '6JbGAAe70bKTA3yfddjWTK', + 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', 'public': True, - 'uri': 'spotify:playlist:6JbGAAe70bKTA3yfddjWTK', + 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i', + 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd', 'width': 60, }), ]), - 'name': "March '21", + 'name': "December '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6142,63 +4855,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '6lVbphMrnxl1vIlfPhdA8i', + 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', 'public': True, - 'uri': 'spotify:playlist:6lVbphMrnxl1vIlfPhdA8i', + 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', }), dict({ 'collaborative': False, - 'description': "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV', + 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 60, }), ]), - 'name': 'ADE Guest List', + 'name': "November '21", 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/1112264649', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '37i9dQZF1DX3FNkD0kDpDV', + 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1DX3FNkD0kDpDV', + 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu', + 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a', 'width': 60, }), ]), - 'name': "February '21", + 'name': "October '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6210,34 +4933,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '3l0iA85qv43y9aMWztVIHu', + 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', 'public': True, - 'uri': 'spotify:playlist:3l0iA85qv43y9aMWztVIHu', + 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD', + 'spotify': 'https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 60, }), ]), - 'name': "January '21", + 'name': "September '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6249,63 +4972,73 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '2jp4GK1k1l7I1X67f2EbmD', + 'playlist_id': '2ExZs1G4AOluuEwg3q5M1v', 'public': True, - 'uri': 'spotify:playlist:2jp4GK1k1l7I1X67f2EbmD', + 'uri': 'spotify:playlist:2ExZs1G4AOluuEwg3q5M1v', }), dict({ 'collaborative': False, - 'description': 'The songs you loved most this year, all wrapped up.', + 'description': 'de soms niet zo casual weird vibe playlist', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6', + 'spotify': 'https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu', }), 'images': list([ dict({ - 'height': None, - 'url': 'https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg', - 'width': None, + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c', + 'width': 60, }), ]), - 'name': 'Your Top Songs 2020', + 'name': 'Slumpmässiga', 'object_type': 'playlist', 'owner': dict({ - 'display_name': 'Spotify', + 'display_name': 'leanne', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/spotify', + 'spotify': 'https://open.spotify.com/user/xleanne_', }), - 'href': 'https://api.spotify.com/v1/users/spotify', + 'href': 'https://api.spotify.com/v1/users/xleanne_', 'object_type': 'user', - 'owner_id': 'spotify', - 'uri': 'spotify:user:spotify', + 'owner_id': 'xleanne_', + 'uri': 'spotify:user:xleanne_', }), - 'playlist_id': '37i9dQZF1EM9phQOPnbiB6', + 'playlist_id': '4jNUJLnkZJ32nuFE1PjkGu', 'public': True, - 'uri': 'spotify:playlist:37i9dQZF1EM9phQOPnbiB6', + 'uri': 'spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv', + 'spotify': 'https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d', 'width': 60, }), ]), - 'name': "December '20", + 'name': "August '21", 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6317,34 +5050,34 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '027kb6scBKg9y9dE5nPPTv', + 'playlist_id': '700dVjBihCDj2HwyhYDTRp', 'public': True, - 'uri': 'spotify:playlist:027kb6scBKg9y9dE5nPPTv', + 'uri': 'spotify:playlist:700dVjBihCDj2HwyhYDTRp', }), dict({ 'collaborative': False, 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15', + 'spotify': 'https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265', }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 300, }), dict({ 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c', 'width': 60, }), ]), - 'name': "November '20", + 'name': 'Discover Weekly Archive', 'object_type': 'playlist', 'owner': dict({ 'display_name': 'Joost Lekkerkerker', @@ -6356,6339 +5089,14850 @@ 'owner_id': '1112264649', 'uri': 'spotify:user:1112264649', }), - 'playlist_id': '1lX3M3MvpNmQGzuh7tVi15', + 'playlist_id': '6B5dmWX7pK2LHHtS6ph265', 'public': True, - 'uri': 'spotify:playlist:1lX3M3MvpNmQGzuh7tVi15', + 'uri': 'spotify:playlist:6B5dmWX7pK2LHHtS6ph265', }), - ]) -# --- -# name: test_get_devices - list([ dict({ - 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', - 'device_type': , - 'is_active': False, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'DESKTOP-BKC5SIK', - 'supports_volume': True, - 'volume_percent': 69, - }), - ]) -# --- -# name: test_get_episode - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3690161, - 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', - }), - 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'My Squirrel Has Brain Damage - Safety Third 119', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'show': dict({ - 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + 'spotify': 'https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i', }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616', + 'width': 60, }), ]), - 'name': 'Safety Third', - 'publisher': 'Safety Third ', - 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 120, - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + 'name': 'Dance vibes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0ISThPpDv4JBNeHdptcK6i', + 'public': True, + 'uri': 'spotify:playlist:0ISThPpDv4JBNeHdptcK6i', }), - 'type': , - 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', - }) -# --- -# name: test_get_following_artists - list([ dict({ - 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'collaborative': True, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'width': 60, }), ]), - 'name': 'Pegboard Nerds', - 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + 'name': 'goeien numertjs', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2ElmM8s9Um1XSP07hADX9s', + 'public': True, + 'uri': 'spotify:playlist:2ElmM8s9Um1XSP07hADX9s', }), dict({ - 'artist_id': '0p4nmQO2msCgU4IF37Wi3j', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb5c3349ddba6b8e064c1bab16', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051745c3349ddba6b8e064c1bab16', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1785c3349ddba6b8e064c1bab16', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a', + 'width': 60, }), ]), - 'name': 'Avril Lavigne', - 'uri': 'spotify:artist:0p4nmQO2msCgU4IF37Wi3j', + 'name': 'Summer vibes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0DRUBqBUSFJH1a7FvBIsGg', + 'public': True, + 'uri': 'spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg', }), dict({ - 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b60ba4ab40815357c713dc2', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051747b60ba4ab40815357c713dc2', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1787b60ba4ab40815357c713dc2', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356', + 'width': 60, }), ]), - 'name': 'Beast In Black', - 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', + 'name': "July '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4PSXSX9WhxdjAzSjU175od', + 'public': True, + 'uri': 'spotify:playlist:4PSXSX9WhxdjAzSjU175od', }), dict({ - 'artist_id': '0uBVyPbLZRDNEBiA4fZUlp', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf6cb4b106fe956c95d243a1f', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f6cb4b106fe956c95d243a1f', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f6cb4b106fe956c95d243a1f', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 60, }), ]), - 'name': 'Froukje', - 'uri': 'spotify:artist:0uBVyPbLZRDNEBiA4fZUlp', + 'name': "June '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '1XKSZRcsYP6VTkObunDIjQ', + 'public': True, + 'uri': 'spotify:playlist:1XKSZRcsYP6VTkObunDIjQ', }), dict({ - 'artist_id': '10GT4yz8c6xjjnPGtGPI1l', + 'collaborative': False, + 'description': 'This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm', + }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebb0debcb6b7015f1a7a1bfaa0', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174b0debcb6b7015f1a7a1bfaa0', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178b0debcb6b7015f1a7a1bfaa0', - 'width': 160, + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c', + 'width': None, }), ]), - 'name': 'Franc Moody', - 'uri': 'spotify:artist:10GT4yz8c6xjjnPGtGPI1l', + 'name': 'GTA Cayo Perico Beach Party: Keinemusik Set', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Austin Martinez', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/127651589', + }), + 'href': 'https://api.spotify.com/v1/users/127651589', + 'object_type': 'user', + 'owner_id': '127651589', + 'uri': 'spotify:user:127651589', + }), + 'playlist_id': '3uCD1EyW3JRx8SV1QnA3Zm', + 'public': True, + 'uri': 'spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm', }), dict({ - 'artist_id': '17IDrizGUiveZm4P77Kkio', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb712d292bff8648aa62c2dad4', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174712d292bff8648aa62c2dad4', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178712d292bff8648aa62c2dad4', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406', + 'width': 60, }), ]), - 'name': 'Icarus', - 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', + 'name': "May '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '3yPujxZ9OiB4By8COZaxaK', + 'public': True, + 'uri': 'spotify:playlist:3yPujxZ9OiB4By8COZaxaK', }), dict({ - 'artist_id': '1A6zWJwn4XmdZZgob3wYPM', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb5022973615b58f2756ab3ff3', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051745022973615b58f2756ab3ff3', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1785022973615b58f2756ab3ff3', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 60, }), ]), - 'name': 'Blaudzun', - 'uri': 'spotify:artist:1A6zWJwn4XmdZZgob3wYPM', + 'name': "April '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4A31OO75jaLCV2r7bvbQUa', + 'public': True, + 'uri': 'spotify:playlist:4A31OO75jaLCV2r7bvbQUa', }), dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'collaborative': False, + 'description': 'HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK', + }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebbfa0f25d3d775e4892e0add3', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174bfa0f25d3d775e4892e0add3', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178bfa0f25d3d775e4892e0add3', - 'width': 160, + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c', + 'width': None, }), ]), - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', + 'name': 'BASS BOOSTED CAR MUSIC 2023', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'LIZOT', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/max.kleinschmidt', + }), + 'href': 'https://api.spotify.com/v1/users/max.kleinschmidt', + 'object_type': 'user', + 'owner_id': 'max.kleinschmidt', + 'uri': 'spotify:user:max.kleinschmidt', + }), + 'playlist_id': '6JbGAAe70bKTA3yfddjWTK', + 'public': True, + 'uri': 'spotify:playlist:6JbGAAe70bKTA3yfddjWTK', }), dict({ - 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf150017ca69c8793503c2d4f', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f150017ca69c8793503c2d4f', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f150017ca69c8793503c2d4f', - 'width': 160, - }), - ]), - 'name': 'David Guetta', - 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', - }), - dict({ - 'artist_id': '1DbXVMdQqNejIYLU2xsIMi', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'width': 60, }), ]), - 'name': 'Ryan Ritual', - 'uri': 'spotify:artist:1DbXVMdQqNejIYLU2xsIMi', + 'name': "March '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '6lVbphMrnxl1vIlfPhdA8i', + 'public': True, + 'uri': 'spotify:playlist:6lVbphMrnxl1vIlfPhdA8i', }), dict({ - 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebd263e0042b36fd357c8c7cdb', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174d263e0042b36fd357c8c7cdb', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178d263e0042b36fd357c8c7cdb', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'width': 60, }), ]), - 'name': 'The Kooks', - 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + 'name': "February '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '3l0iA85qv43y9aMWztVIHu', + 'public': True, + 'uri': 'spotify:playlist:3l0iA85qv43y9aMWztVIHu', }), dict({ - 'artist_id': '1LOB7jTeEV14pHai6EXSzF', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebc6b0d99b1a736712a1653d6a', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174c6b0d99b1a736712a1653d6a', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178c6b0d99b1a736712a1653d6a', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340', + 'width': 60, }), ]), - 'name': 'Cash Cash', - 'uri': 'spotify:artist:1LOB7jTeEV14pHai6EXSzF', + 'name': "January '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2jp4GK1k1l7I1X67f2EbmD', + 'public': True, + 'uri': 'spotify:playlist:2jp4GK1k1l7I1X67f2EbmD', }), dict({ - 'artist_id': '1QOHbhVRpDoNtRkz79si6b', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb403bad456309541432feb79b', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174403bad456309541432feb79b', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178403bad456309541432feb79b', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'width': 60, }), ]), - 'name': 'Karen Harding', - 'uri': 'spotify:artist:1QOHbhVRpDoNtRkz79si6b', + 'name': "December '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '027kb6scBKg9y9dE5nPPTv', + 'public': True, + 'uri': 'spotify:playlist:027kb6scBKg9y9dE5nPPTv', }), dict({ - 'artist_id': '1eK59pkylGGka9wRUEKVXt', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb7b6e73b581c807a49a146eb6', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051747b6e73b581c807a49a146eb6', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1787b6e73b581c807a49a146eb6', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'width': 60, }), ]), - 'name': 'Chris Brochu', - 'uri': 'spotify:artist:1eK59pkylGGka9wRUEKVXt', + 'name': "November '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '1lX3M3MvpNmQGzuh7tVi15', + 'public': True, + 'uri': 'spotify:playlist:1lX3M3MvpNmQGzuh7tVi15', }), dict({ - 'artist_id': '1ho3p0XM4jDk7n9NUOekbp', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6qGlky0reWcIeMAz70W8fd', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736d5999b6e7e2dd2fd19f88f8', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026d5999b6e7e2dd2fd19f88f8', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516d5999b6e7e2dd2fd19f88f8', - 'width': 64, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203', + 'width': 60, }), ]), - 'name': 'Inthelittlewood', - 'uri': 'spotify:artist:1ho3p0XM4jDk7n9NUOekbp', + 'name': "October '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '6qGlky0reWcIeMAz70W8fd', + 'public': True, + 'uri': 'spotify:playlist:6qGlky0reWcIeMAz70W8fd', }), dict({ - 'artist_id': '1kDGbuxWknIKx4FlgWxiSp', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0RyuPsj7lVf8NTQlLnH3j0', + }), 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57', - 'width': 320, - }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57', - 'width': 160, + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8412a6b60909be15810cf163c8', + 'width': None, }), ]), - 'name': 'Nothing But Thieves', - 'uri': 'spotify:artist:1kDGbuxWknIKx4FlgWxiSp', + 'name': 'Tones and I and I', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0RyuPsj7lVf8NTQlLnH3j0', + 'public': True, + 'uri': 'spotify:playlist:0RyuPsj7lVf8NTQlLnH3j0', }), dict({ - 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/7nXa5Ki4rYpTdkymKP9FaX', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927', + 'width': 60, }), ]), - 'name': 'Avicii', - 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + 'name': "September '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '7nXa5Ki4rYpTdkymKP9FaX', + 'public': True, + 'uri': 'spotify:playlist:7nXa5Ki4rYpTdkymKP9FaX', }), dict({ - 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0cr5tOok6jV1LbxRW3Q1N7', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebffa0888ff64a510cbf665855', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ffa0888ff64a510cbf665855', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ffa0888ff64a510cbf665855', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6', + 'width': 60, }), ]), - 'name': 'MK', - 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', + 'name': "August '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0cr5tOok6jV1LbxRW3Q1N7', + 'public': True, + 'uri': 'spotify:playlist:0cr5tOok6jV1LbxRW3Q1N7', }), dict({ - 'artist_id': '23fqKkggKUBHNkbKtXEls4', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2OCmZ2TQS3I1t03liWGkKS', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebe5ea1aa1404629c12ad86658', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174e5ea1aa1404629c12ad86658', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178e5ea1aa1404629c12ad86658', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23', + 'width': 60, + }), + ]), + 'name': "July '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2OCmZ2TQS3I1t03liWGkKS', + 'public': True, + 'uri': 'spotify:playlist:2OCmZ2TQS3I1t03liWGkKS', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/5O4UBQXD3A6FrZ9crDNfiC', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02722206ae6845cdbbb4ed5e44', + 'width': None, }), ]), - 'name': 'Kygo', - 'uri': 'spotify:artist:23fqKkggKUBHNkbKtXEls4', + 'name': "Juni '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '5O4UBQXD3A6FrZ9crDNfiC', + 'public': True, + 'uri': 'spotify:playlist:5O4UBQXD3A6FrZ9crDNfiC', }), dict({ - 'artist_id': '2NZMqINcyfepvLxQJdzcZk', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4ncsy40OjpUIDhbXzi7BR4', + }), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb96b6d4d0d0f43bd50216f22e', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2', 'width': 640, }), dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab6761610000517496b6d4d0d0f43bd50216f22e', - 'width': 320, + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2', + 'width': 300, }), dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f17896b6d4d0d0f43bd50216f22e', - 'width': 160, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2', + 'width': 60, }), ]), - 'name': 'Lensko', - 'uri': 'spotify:artist:2NZMqINcyfepvLxQJdzcZk', + 'name': "June '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4ncsy40OjpUIDhbXzi7BR4', + 'public': True, + 'uri': 'spotify:playlist:4ncsy40OjpUIDhbXzi7BR4', }), - ]) -# --- -# name: test_get_playback_state[playback_1.json] - dict({ - 'context': dict({ - 'context_type': , + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/collection/tracks', + 'spotify': 'https://open.spotify.com/playlist/6DSDjystyVtnkfdsoANXu0', }), - 'href': 'https://api.spotify.com/v1/me/tracks', - 'uri': 'spotify:user:1112264649:collection', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'DESKTOP-BKC5SIK', - 'supports_volume': True, - 'volume_percent': 69, + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c', + 'width': 60, + }), + ]), + 'name': 'Disco Vibes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '6DSDjystyVtnkfdsoANXu0', + 'public': True, + 'uri': 'spotify:playlist:6DSDjystyVtnkfdsoANXu0', }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '1iasbpTobDPa5BmsK0Rz1f', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', - 'name': 'Machinae Supremacy', - 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722', - 'width': 64, - }), - ]), - 'name': 'WARRIORS, Pt. 1 (Final Stage)', - 'release_date': '2023-10-20', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1iasbpTobDPa5BmsK0Rz1f', + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2jvlY5A7LXMtJjQFAZpkER', }), - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', - 'name': 'Machinae Supremacy', - 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769', + 'width': 60, }), ]), - 'disc_number': 1, - 'duration_ms': 268525, - 'explicit': False, + 'name': "May '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2jvlY5A7LXMtJjQFAZpkER', + 'public': True, + 'uri': 'spotify:playlist:2jvlY5A7LXMtJjQFAZpkER', + }), + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv', + 'spotify': 'https://open.spotify.com/playlist/7j2y0Baus5KEznyrb9P7Hh', }), - 'href': 'https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv', - 'is_local': False, - 'name': 'WARRIORS, Pt. 1 (Final Stage)', - 'track_id': '1FyXbzOlq3dkxaB6iRsETv', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:1FyXbzOlq3dkxaB6iRsETv', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148', + 'width': 60, + }), + ]), + 'name': 'funk wav bounces vol 2', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'angelarbarnes', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/angelarbarnes', + }), + 'href': 'https://api.spotify.com/v1/users/angelarbarnes', + 'object_type': 'user', + 'owner_id': 'angelarbarnes', + 'uri': 'spotify:user:angelarbarnes', + }), + 'playlist_id': '7j2y0Baus5KEznyrb9P7Hh', + 'public': True, + 'uri': 'spotify:playlist:7j2y0Baus5KEznyrb9P7Hh', }), - 'progress_ms': 225564, - 'repeat_mode': , - 'shuffle': False, - }) + ]) # --- -# name: test_get_playback_state[playback_2.json] - dict({ - 'context': dict({ - 'context_type': , +# name: test_get_current_users_playlists[current_user_playlist_2.json] + list([ + dict({ + 'collaborative': False, + 'description': 'You listened to freedom and vibing on Mondays in the morning. Here\'s some: melodic techno, house, fraternity, 130 bpm, doof doof and electric', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1', }), - 'href': 'https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm', - 'uri': 'spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': 'a19f7a03a25aff3e43f457a328a8ba67a8c44789', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Master Bathroom Speaker', - 'supports_volume': True, - 'volume_percent': 25, - }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '3nUNxSh2szhmN7iifAKv5i', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', - 'name': 'Rush', - 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983', - 'width': 64, - }), - ]), - 'name': 'Permanent Waves', - 'release_date': '1980-01-01', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:3nUNxSh2szhmN7iifAKv5i', - }), - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', - 'name': 'Rush', - 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', + 'height': None, + 'url': 'https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg', + 'width': None, }), ]), - 'disc_number': 1, - 'duration_ms': 296466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p', + 'name': 'daylist • melodic techno house monday morning', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', + }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), - 'href': 'https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p', - 'is_local': False, - 'name': 'The Spirit Of Radio', - 'track_id': '4e9hUiLsN4mx61ARosFi7p', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4e9hUiLsN4mx61ARosFi7p', + 'playlist_id': '37i9dQZF1EP6YuccBxUcC1', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EP6YuccBxUcC1', }), - 'progress_ms': 249367, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_3.json] - dict({ - 'context': dict({ - 'context_type': , + dict({ + 'collaborative': False, + 'description': 'A Blend of music for Joost and Cheyenne. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/collection/tracks', - }), - 'href': 'https://api.spotify.com/v1/me/tracks', - 'uri': 'spotify:user:1112264649:collection', - }), - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': None, - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': True, - 'name': 'Sonos Roam SL', - 'supports_volume': True, - 'volume_percent': 34, - }), - 'is_playing': True, - 'item': dict({ - 'album': dict({ - 'album_id': '3qCsGHHWG6t9izvmsE47jr', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6s5ubAp65wXoTZefE01RNR', - 'name': 'Joost', - 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c', - 'width': 64, - }), - ]), - 'name': 'Ome Robert', - 'release_date': '2018-04-26', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3qCsGHHWG6t9izvmsE47jr', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd', }), - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '6s5ubAp65wXoTZefE01RNR', - 'name': 'Joost', - 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + 'height': None, + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg', + 'width': None, }), ]), - 'disc_number': 1, - 'duration_ms': 152500, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z', - }), - 'href': 'https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z', - 'is_local': False, - 'name': 'Ome Robert', - 'track_id': '3TE49HXyoNczZk2IBhP87z', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:3TE49HXyoNczZk2IBhP87z', - }), - 'progress_ms': 7919, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_4.json] - dict({ - 'context': None, - 'currently_playing_type': 'track', - 'device': dict({ - 'device_id': 'aee274e4bbe6b44cf3b22ad3b68eca3a6954a701', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Joost’s MacBook Pro', - 'supports_volume': True, - 'volume_percent': 67, - }), - 'is_playing': True, - 'item': None, - 'progress_ms': 22215, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_audiobook_1.json] - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + 'name': 'Cheyenne + Joost', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', + }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), - 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', - }), - 'currently_playing_type': 'episode', - 'device': dict({ - 'device_id': '9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8', - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': False, - 'name': 'Nothing phone (1)', - 'supports_volume': False, - 'volume_percent': 100, + 'playlist_id': '37i9dQZF1EJvpyGjPopYtd', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJvpyGjPopYtd', }), - 'is_playing': True, - 'item': dict({ - 'description': '', - 'duration_ms': 249652, - 'episode_id': '3NW4BmIOG0qzQZgtLgsydR', - 'explicit': False, + dict({ + 'collaborative': False, + 'description': '100% good vibes.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh', }), - 'href': 'https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, + 'height': None, + 'url': 'https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2', + 'width': None, }), ]), - 'name': 'Track 1', - 'release_date': '0000', - 'release_date_precision': , - 'show': dict({ - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink -

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

-

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

-

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

-

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

-

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', + 'name': 'Serotonin', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'name': 'De nomade', - 'publisher': 'Anya Niewierra', - 'show_id': '58cFIY8IT7yGqR3kHnKqzV', - 'total_episodes': None, - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), - 'type': , - 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + 'playlist_id': '37i9dQZF1DWYMroOc5KTTh', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1DWYMroOc5KTTh', }), - 'progress_ms': 15611, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playback_state[playback_episode_1.json] - dict({ - 'context': dict({ - 'context_type': , + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + 'spotify': 'https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ', }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21', + 'width': None, + }), + ]), + 'name': 'Sweet', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '5t75uJ5vBvEdbbvs5uIqXJ', + 'public': True, + 'uri': 'spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ', }), - 'currently_playing_type': 'episode', - 'device': dict({ - 'device_id': None, - 'device_type': , - 'is_active': True, - 'is_private_session': False, - 'is_restricted': True, - 'name': 'Sonos Roam SL', - 'supports_volume': True, - 'volume_percent': 46, + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': None, + }), + ]), + 'name': 'Pain', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', + 'public': True, + 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', }), - 'is_playing': True, - 'item': dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3690161, - 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', - 'explicit': False, + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', + 'spotify': 'https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1', + 'width': None, + }), + ]), + 'name': 'Hyper', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4WkWJ0EjHEFASDevhM8oPw', + 'public': True, + 'uri': 'spotify:playlist:4WkWJ0EjHEFASDevhM8oPw', + }), + dict({ + 'collaborative': False, + 'description': 'A Blend of music for Joost and Christel. Updates daily.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg', + 'width': None, + }), + ]), + 'name': 'Christel + Joost', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', + }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1EJwDEkXAeJkCv', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJwDEkXAeJkCv', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d', }), - 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6', + 'width': 60, }), ]), - 'name': 'My Squirrel Has Brain Damage - Safety Third 119', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'show': dict({ - 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'name': 'Ain’t got shit on me', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Rensie', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + 'spotify': 'https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe', }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Safety Third', - 'publisher': 'Safety Third ', - 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 120, - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + 'href': 'https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe', + 'object_type': 'user', + 'owner_id': '317g2sbpe3ccycu45fes6lfr5lpe', + 'uri': 'spotify:user:317g2sbpe3ccycu45fes6lfr5lpe', }), - 'type': , - 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', - }), - 'progress_ms': 5410, - 'repeat_mode': , - 'shuffle': False, - }) -# --- -# name: test_get_playlist[playlist_1.json] - dict({ - 'collaborative': False, - 'description': 'A playlist for testing pourposes', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3cEYpjA9oz9GiPac4AsH4n', + 'playlist_id': '1RHirWgH1weMsBLi4KOK9d', + 'public': True, + 'uri': 'spotify:playlist:1RHirWgH1weMsBLi4KOK9d', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67706c0000da848d0ce13d55f634e290f744ba', - 'width': None, - }), - ]), - 'name': 'Spotify Web API Testing playlist', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'JMPerez²', + dict({ + 'collaborative': False, + 'description': 'A Blend of music for Joost and kosmik. Updates daily.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD', }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'object_type': 'user', - 'owner_id': 'jmperezperez', - 'uri': 'spotify:user:jmperezperez', - }), - 'playlist_id': '3cEYpjA9oz9GiPac4AsH4n', - 'public': True, - 'tracks': dict({ - 'items': list([ + 'images': list([ dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2pANdqPvxInB0YvcDiw4ko', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', - 'width': 64, - }), - ]), - 'name': 'Progressive Psy Trance Picks Vol.8', - 'release_date': '2012-04-02', - 'release_date_precision': , - 'total_tracks': 20, - 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', - }), - 'artists': list([ - dict({ - 'artist_id': '6eSdhw46riw2OUHgMwR8B5', - 'name': 'Odiseo', - 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 376000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', - }), - 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', - 'is_local': False, - 'name': 'Api', - 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', - }), + 'height': None, + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg', + 'width': None, }), - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '6nlfkk5GoXRL1nktlATNsy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', - 'width': 64, - }), - ]), - 'name': 'Wellness & Dreaming Source', - 'release_date': '2015-01-09', - 'release_date_precision': , - 'total_tracks': 25, - 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', - }), - 'artists': list([ - dict({ - 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', - 'name': 'Vlasta Marek', - 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 730066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', - }), - 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', - 'is_local': False, - 'name': 'Is', - 'track_id': '5o3jMYOSbaVz3tkgwhELSV', - 'track_number': 21, - 'type': , - 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', - }), + ]), + 'name': 'kosmik + Joost', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1EJDyIuS82b8FD', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJDyIuS82b8FD', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH', + }), + 'images': list([ dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', - 'width': 64, - }), - ]), - 'name': 'This Is Happening', - 'release_date': '2010-05-17', - 'release_date_precision': , - 'total_tracks': 9, - 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', - }), - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 401440, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', - 'is_local': False, - 'name': 'All I Want', - 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', - }), + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 640, }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2usKFntxa98WHMcyW6xJBz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', - 'width': 64, - }), - ]), - 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', - 'release_date': '2011-04-01', - 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', - }), - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'disc_number': 1, - 'duration_ms': 358760, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', - }), - 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', - 'is_local': False, - 'name': 'Endpoints', - 'track_id': '6hvFrZNocdt2FcKGCSY5NI', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', - }), + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 300, }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '0ivM6kSawaug0j3tZVusG2', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', - 'width': 64, - }), - ]), - 'name': 'All The Best (Spanish Version)', - 'release_date': '2007-01-01', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', - }), - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'disc_number': 1, - 'duration_ms': 176093, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', - }), - 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', - 'is_local': False, - 'name': 'You Are So Beautiful', - 'track_id': '2E2znCPaS8anQe21GLxcvJ', - 'track_number': 18, - 'type': , - 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', - }), + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705', + 'width': 60, }), ]), + 'name': 'Billie (interlude)', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2ZfissHhjQnhlmD54h6elH', + 'public': True, + 'uri': 'spotify:playlist:2ZfissHhjQnhlmD54h6elH', }), - 'uri': 'spotify:playlist:3cEYpjA9oz9GiPac4AsH4n', - }) -# --- -# name: test_get_playlist[playlist_2.json] - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af', - 'width': None, - }), - ]), - 'name': 'Starred', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'chadandcaren', + dict({ + 'collaborative': False, + 'description': 'Missing: Metrik - Techtonic; GAJATE - Baile Funk', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/chadandcaren', + 'spotify': 'https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo', }), - 'href': 'https://api.spotify.com/v1/users/chadandcaren', - 'object_type': 'user', - 'owner_id': 'chadandcaren', - 'uri': 'spotify:user:chadandcaren', - }), - 'playlist_id': '3toMXYM91T55pKzuysH5Ph', - 'public': True, - 'tracks': dict({ - 'items': list([ + 'images': list([ dict({ - 'added_at': datetime.datetime(2013, 1, 19, 22, 16, 8, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/chadandcaren', - }), - 'href': 'https://api.spotify.com/v1/users/chadandcaren', - 'uri': 'spotify:user:chadandcaren', - 'user_id': 'chadandcaren', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '3KVfMVtOmoVCgihLE4HoBr', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', - 'name': 'Ingrid Michaelson', - 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919', - 'width': 64, - }), - ]), - 'name': 'Be OK', - 'release_date': '2008-01-01', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:3KVfMVtOmoVCgihLE4HoBr', - }), - 'artists': list([ - dict({ - 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', - 'name': 'Ingrid Michaelson', - 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', - }), - ]), - 'disc_number': 1, - 'duration_ms': 148706, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP', - }), - 'href': 'https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP', - 'is_local': False, - 'name': 'You and I', - 'track_id': '4oeRfmp9XpKWym6YD1WvBP', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4oeRfmp9XpKWym6YD1WvBP', - }), + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb', + 'width': None, }), ]), - }), - 'uri': 'spotify:playlist:3toMXYM91T55pKzuysH5Ph', - }) -# --- -# name: test_get_playlist[playlist_3.json] - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': None, + 'name': 'Forza Horizon 5 Bass Arena', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'SylveonTribe', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/rwilming', + }), + 'href': 'https://api.spotify.com/v1/users/rwilming', + 'object_type': 'user', + 'owner_id': 'rwilming', + 'uri': 'spotify:user:rwilming', }), - ]), - 'name': 'Pain', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Joost Lekkerkerker', + 'playlist_id': '1vOHEgZ5UszkWycPjnG2Uo', + 'public': True, + 'uri': 'spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo', + }), + dict({ + 'collaborative': False, + 'description': '', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', + 'spotify': 'https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c', }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'object_type': 'user', - 'owner_id': '1112264649', - 'uri': 'spotify:user:1112264649', + 'images': list([ + ]), + 'name': 'My Playlist #63', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4hQFqB1AtOpzsAv01E8n6c', + 'public': True, + 'uri': 'spotify:playlist:4hQFqB1AtOpzsAv01E8n6c', }), - 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', - 'public': True, - 'tracks': dict({ - 'items': list([ + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv', + }), + 'images': list([ dict({ - 'added_at': datetime.datetime(2024, 5, 16, 20, 46, 24, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '5iuJo58XqIENkyviBJ4dil', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6DDZJCwSnNF361mUwPEm4G', - 'name': 'Saint Nomad', - 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8', - 'width': 64, - }), - ]), - 'name': 'Nothing To Lose', - 'release_date': '2020-05-01', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5iuJo58XqIENkyviBJ4dil', - }), - 'artists': list([ - dict({ - 'artist_id': '6DDZJCwSnNF361mUwPEm4G', - 'name': 'Saint Nomad', - 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', - }), - ]), - 'disc_number': 1, - 'duration_ms': 164453, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw', - }), - 'href': 'https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw', - 'is_local': False, - 'name': 'Nothing To Lose', - 'track_id': '4bEdcyI0l4zX2Ut5m5Xrhw', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw', - }), + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 640, }), dict({ - 'added_at': datetime.datetime(2024, 5, 16, 20, 53, 44, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4stVgm9xx3cSNYddv8oTcL', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', - 'name': 'Doko', - 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de', - 'width': 64, - }), - ]), - 'name': 'Borrowed Time', - 'release_date': '2019-06-28', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4stVgm9xx3cSNYddv8oTcL', - }), - 'artists': list([ - dict({ - 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', - 'name': 'Doko', - 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', - }), - ]), - 'disc_number': 1, - 'duration_ms': 198022, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8', - }), - 'href': 'https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8', - 'is_local': False, - 'name': 'Borrowed Time', - 'track_id': '2kmZop34md5KWP4gn7Zuj8', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2kmZop34md5KWP4gn7Zuj8', - }), + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 300, }), dict({ - 'added_at': datetime.datetime(2024, 11, 28, 10, 18, 44, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1112264649', - }), - 'href': 'https://api.spotify.com/v1/users/1112264649', - 'uri': 'spotify:user:1112264649', - 'user_id': '1112264649', - }), - 'track': dict({ - 'description': 'HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group!\xa0Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.', - 'duration_ms': 2071013, - 'episode_id': '5ytYkag3JZJ3GP2uuFAEBe', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe', - }), - 'href': 'https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', - 'width': 64, - }), - ]), - 'name': 'Toni Delivers Semen', - 'release_date': '2024-11-27', - 'release_date_precision': , - 'show': dict({ - 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', - }), - 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', - 'width': 64, - }), - ]), - 'name': 'Toni and Ryan', - 'publisher': 'Toni Lodge and Ryan Jon', - 'show_id': '5OzkclFjD6iAjtAuo7aIYt', - 'total_episodes': 780, - 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', - }), - 'type': , - 'uri': 'spotify:episode:5ytYkag3JZJ3GP2uuFAEBe', - }), + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b', + 'width': 60, }), ]), - }), - 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', - }) -# --- -# name: test_get_playlist_cover_image - list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba', - 'width': None, - }), - ]) -# --- -# name: test_get_playlist_tracks - list([ - dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 39, 22, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '2pANdqPvxInB0YvcDiw4ko', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc', - 'width': 64, - }), - ]), - 'name': 'Progressive Psy Trance Picks Vol.8', - 'release_date': '2012-04-02', - 'release_date_precision': , - 'total_tracks': 20, - 'uri': 'spotify:album:2pANdqPvxInB0YvcDiw4ko', - }), - 'artists': list([ - dict({ - 'artist_id': '6eSdhw46riw2OUHgMwR8B5', - 'name': 'Odiseo', - 'uri': 'spotify:artist:6eSdhw46riw2OUHgMwR8B5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 376000, - 'explicit': False, + 'name': 'Crème', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ', - 'is_local': False, - 'name': 'Api', - 'track_id': '4rzfv0JLZfVhOhbSQ8o5jZ', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '0Jgs7FxHX86twpgCDehAHv', + 'public': True, + 'uri': 'spotify:playlist:0Jgs7FxHX86twpgCDehAHv', }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 3, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', + 'collaborative': False, + 'description': 'Spotify Wrapped presents the songs that you loved most this year.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit', }), - 'track': dict({ - 'album': dict({ - 'album_id': '6nlfkk5GoXRL1nktlATNsy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0LyfQWJT6nXafLPZqxe9Of', - 'name': 'Various Artists', - 'uri': 'spotify:artist:0LyfQWJT6nXafLPZqxe9Of', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2', - 'width': 64, - }), - ]), - 'name': 'Wellness & Dreaming Source', - 'release_date': '2015-01-09', - 'release_date_precision': , - 'total_tracks': 25, - 'uri': 'spotify:album:6nlfkk5GoXRL1nktlATNsy', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg', + 'width': None, }), - 'artists': list([ - dict({ - 'artist_id': '5VQE4WOzPu9h3HnGLuBoA6', - 'name': 'Vlasta Marek', - 'uri': 'spotify:artist:5VQE4WOzPu9h3HnGLuBoA6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 730066, - 'explicit': False, + ]), + 'name': 'Your Top Songs 2022', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV', - 'is_local': False, - 'name': 'Is', - 'track_id': '5o3jMYOSbaVz3tkgwhELSV', - 'track_number': 21, - 'type': , - 'uri': 'spotify:track:5o3jMYOSbaVz3tkgwhELSV', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), + 'playlist_id': '37i9dQZF1F0sijgNaJdgit', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1F0sijgNaJdgit', }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 22, 30, tzinfo=datetime.timezone.utc), - 'added_by': dict({ + 'collaborative': False, + 'description': "The UK's biggest rock playlist. Cover: Circa Waves", + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464', + 'width': None, + }), + ]), + 'name': 'The Rock List', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', - }), - 'track': dict({ - 'album': dict({ - 'album_id': '4hnqM0JK4CM1phwfq1Ldyz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b', - 'width': 64, - }), - ]), - 'name': 'This Is Happening', - 'release_date': '2010-05-17', - 'release_date_precision': , - 'total_tracks': 9, - 'uri': 'spotify:album:4hnqM0JK4CM1phwfq1Ldyz', - }), - 'artists': list([ - dict({ - 'artist_id': '066X20Nz7iquqkkCW6Jxy6', - 'name': 'LCD Soundsystem', - 'uri': 'spotify:artist:066X20Nz7iquqkkCW6Jxy6', - }), - ]), - 'disc_number': 1, - 'duration_ms': 401440, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm', - }), - 'href': 'https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm', - 'is_local': False, - 'name': 'All I Want', - 'track_id': '4Cy0NHJ8Gh0xMdwyM9RkQm', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), + 'playlist_id': '37i9dQZF1DX4DZAVUAwHMT', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1DX4DZAVUAwHMT', }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 40, 35, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB', }), - 'track': dict({ - 'album': dict({ - 'album_id': '2usKFntxa98WHMcyW6xJBz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b', - 'width': 64, - }), - ]), - 'name': 'Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)', - 'release_date': '2011-04-01', - 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:2usKFntxa98WHMcyW6xJBz', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '272ArH9SUAlslQqsSgPJA2', - 'name': 'Glenn Horiuchi Trio', - 'uri': 'spotify:artist:272ArH9SUAlslQqsSgPJA2', - }), - ]), - 'disc_number': 1, - 'duration_ms': 358760, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c', + 'width': 60, + }), + ]), + 'name': 'My Shazam Tracks', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI', - 'is_local': False, - 'name': 'Endpoints', - 'track_id': '6hvFrZNocdt2FcKGCSY5NI', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:6hvFrZNocdt2FcKGCSY5NI', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '6fHmmdjd2Urd7DAhb4bqOB', + 'public': True, + 'uri': 'spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB', }), dict({ - 'added_at': datetime.datetime(2015, 1, 15, 12, 41, 10, tzinfo=datetime.timezone.utc), - 'added_by': dict({ - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/jmperezperez', - }), - 'href': 'https://api.spotify.com/v1/users/jmperezperez', - 'uri': 'spotify:user:jmperezperez', - 'user_id': 'jmperezperez', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD', }), - 'track': dict({ - 'album': dict({ - 'album_id': '0ivM6kSawaug0j3tZVusG2', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71', - 'width': 64, - }), - ]), - 'name': 'All The Best (Spanish Version)', - 'release_date': '2007-01-01', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:0ivM6kSawaug0j3tZVusG2', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '2KftmGt9sk1yLjsAoloC3M', - 'name': 'Zucchero', - 'uri': 'spotify:artist:2KftmGt9sk1yLjsAoloC3M', - }), - ]), - 'disc_number': 1, - 'duration_ms': 176093, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c', + 'width': 60, + }), + ]), + 'name': 'Likes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ', - 'is_local': False, - 'name': 'You Are So Beautiful', - 'track_id': '2E2znCPaS8anQe21GLxcvJ', - 'track_number': 18, - 'type': , - 'uri': 'spotify:track:2E2znCPaS8anQe21GLxcvJ', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '5H2U7tZb9dMSHPwi20XcuD', + 'public': True, + 'uri': 'spotify:playlist:5H2U7tZb9dMSHPwi20XcuD', }), - ]) -# --- -# name: test_get_recently_played_tracks - list([ dict({ - 'context': None, - 'played_at': datetime.datetime(2024, 10, 6, 18, 9, 18, 556000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6Ab1VSoMD5fvlagOW2QDOJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde', - 'width': 64, - }), - ]), - 'name': 'Super Breath', - 'release_date': '2024-07-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6Ab1VSoMD5fvlagOW2QDOJ', + 'collaborative': False, + 'description': 'Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==', + 'width': None, }), - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211800, - 'explicit': False, + ]), + 'name': 'Discover Weekly', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh', - 'is_local': False, - 'name': 'Super Breath', - 'track_id': '71dMjqJ8UJV700zYs5YZCh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:71dMjqJ8UJV700zYs5YZCh', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), + 'playlist_id': '37i9dQZEVXcGYKTerf9omc', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZEVXcGYKTerf9omc', }), dict({ - 'context': dict({ - 'context_type': , + 'collaborative': False, + 'description': 'Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en', + 'width': None, + }), + ]), + 'name': 'Release Radar', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', - }), - 'played_at': datetime.datetime(2024, 10, 6, 18, 5, 33, 902000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6Ab1VSoMD5fvlagOW2QDOJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde', - 'width': 64, - }), - ]), - 'name': 'Super Breath', - 'release_date': '2024-07-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6Ab1VSoMD5fvlagOW2QDOJ', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZEVXbsfxNSCNXcqe', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZEVXbsfxNSCNXcqe', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211800, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae', + 'width': 60, + }), + ]), + 'name': "March '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh', - 'is_local': False, - 'name': 'Super Breath', - 'track_id': '71dMjqJ8UJV700zYs5YZCh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:71dMjqJ8UJV700zYs5YZCh', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '709T4OzANnUi2lKQLlVkrE', + 'public': True, + 'uri': 'spotify:playlist:709T4OzANnUi2lKQLlVkrE', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC', }), - 'played_at': datetime.datetime(2024, 10, 6, 18, 2, 0, 146000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6Ab1VSoMD5fvlagOW2QDOJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde', - 'width': 64, - }), - ]), - 'name': 'Super Breath', - 'release_date': '2024-07-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6Ab1VSoMD5fvlagOW2QDOJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211800, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be', + 'width': 60, + }), + ]), + 'name': "February '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh', - 'is_local': False, - 'name': 'Super Breath', - 'track_id': '71dMjqJ8UJV700zYs5YZCh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:71dMjqJ8UJV700zYs5YZCh', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '57ZuuAVl0eAZvhisoFP3SC', + 'public': True, + 'uri': 'spotify:playlist:57ZuuAVl0eAZvhisoFP3SC', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 58, 21, 425000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6Ab1VSoMD5fvlagOW2QDOJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde', - 'width': 64, - }), - ]), - 'name': 'Super Breath', - 'release_date': '2024-07-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6Ab1VSoMD5fvlagOW2QDOJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211800, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d', + 'width': 60, + }), + ]), + 'name': "January '22", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh', - 'is_local': False, - 'name': 'Super Breath', - 'track_id': '71dMjqJ8UJV700zYs5YZCh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:71dMjqJ8UJV700zYs5YZCh', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '4OI1xDCLFlEcfgaeyowpEu', + 'public': True, + 'uri': 'spotify:playlist:4OI1xDCLFlEcfgaeyowpEu', }), dict({ - 'context': dict({ - 'context_type': , + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6', + 'width': 60, + }), + ]), + 'name': "December '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', - }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 54, 39, 34000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6Ab1VSoMD5fvlagOW2QDOJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde', - 'width': 64, - }), - ]), - 'name': 'Super Breath', - 'release_date': '2024-07-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6Ab1VSoMD5fvlagOW2QDOJ', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '4NsY2DKzQIjaajal5L25Kt', + 'public': True, + 'uri': 'spotify:playlist:4NsY2DKzQIjaajal5L25Kt', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '6emHCSoB4tJxTVXakbrpPz', - 'name': 'Karen O', - 'uri': 'spotify:artist:6emHCSoB4tJxTVXakbrpPz', - }), - dict({ - 'artist_id': '2dBj3prW7gP9bCCOIQeDUf', - 'name': 'Danger Mouse', - 'uri': 'spotify:artist:2dBj3prW7gP9bCCOIQeDUf', - }), - ]), - 'disc_number': 1, - 'duration_ms': 211800, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9', + 'width': 60, + }), + ]), + 'name': "November '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh', - 'is_local': False, - 'name': 'Super Breath', - 'track_id': '71dMjqJ8UJV700zYs5YZCh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:71dMjqJ8UJV700zYs5YZCh', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '5dV0IeLCysOP6qEDGzhHw0', + 'public': True, + 'uri': 'spotify:playlist:5dV0IeLCysOP6qEDGzhHw0', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 51, 7, 248000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5LASDBDtLLEt3QqVtgOoaM', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0vTVU0KH0CVzijsoKGsTPl', - 'name': "Barry Can't Swim", - 'uri': 'spotify:artist:0vTVU0KH0CVzijsoKGsTPl', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27316bc57c40991e6d3267765ab', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0216bc57c40991e6d3267765ab', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485116bc57c40991e6d3267765ab', - 'width': 64, - }), - ]), - 'name': 'When Will We Land?', - 'release_date': '2023-10-20', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:5LASDBDtLLEt3QqVtgOoaM', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '0vTVU0KH0CVzijsoKGsTPl', - 'name': "Barry Can't Swim", - 'uri': 'spotify:artist:0vTVU0KH0CVzijsoKGsTPl', - }), - ]), - 'disc_number': 1, - 'duration_ms': 138951, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe', + 'width': 60, + }), + ]), + 'name': "October '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3NZz7DWeVQesSOn6mO39F7', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/3NZz7DWeVQesSOn6mO39F7', - 'is_local': False, - 'name': 'How It Feels', - 'track_id': '3NZz7DWeVQesSOn6mO39F7', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:3NZz7DWeVQesSOn6mO39F7', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '40bvnxNQlivxZ02DmDzNxy', + 'public': True, + 'uri': 'spotify:playlist:40bvnxNQlivxZ02DmDzNxy', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 48, 48, 298000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '27vIEhBrsAL30xLMS41ZyA', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2D7akgJBXcsp8Y2FKdPJCh', - 'name': 'Jasper Tygner', - 'uri': 'spotify:artist:2D7akgJBXcsp8Y2FKdPJCh', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27344f6ff8137cffe1d614054ec', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0244f6ff8137cffe1d614054ec', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485144f6ff8137cffe1d614054ec', - 'width': 64, - }), - ]), - 'name': 'Things to Come', - 'release_date': '2024-07-05', - 'release_date_precision': , - 'total_tracks': 4, - 'uri': 'spotify:album:27vIEhBrsAL30xLMS41ZyA', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '2D7akgJBXcsp8Y2FKdPJCh', - 'name': 'Jasper Tygner', - 'uri': 'spotify:artist:2D7akgJBXcsp8Y2FKdPJCh', - }), - ]), - 'disc_number': 1, - 'duration_ms': 163944, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580', + 'width': 60, + }), + ]), + 'name': "September '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/23DvufvHJAr0OUPfrB7g2J', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/23DvufvHJAr0OUPfrB7g2J', - 'is_local': False, - 'name': 'All I Need', - 'track_id': '23DvufvHJAr0OUPfrB7g2J', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:23DvufvHJAr0OUPfrB7g2J', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '2ExZs1G4AOluuEwg3q5M1v', + 'public': True, + 'uri': 'spotify:playlist:2ExZs1G4AOluuEwg3q5M1v', }), dict({ - 'context': dict({ - 'context_type': , + 'collaborative': False, + 'description': 'de soms niet zo casual weird vibe playlist', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90', + 'width': 60, + }), + ]), + 'name': 'Slumpmässiga', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'xleanne_', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + 'spotify': 'https://open.spotify.com/user/xleanne_', }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'href': 'https://api.spotify.com/v1/users/xleanne_', + 'object_type': 'user', + 'owner_id': 'xleanne_', + 'uri': 'spotify:user:xleanne_', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 46, 4, 386000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1BuWrjAiFiHMHtCYHuUIKM', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6zsJjoCtL1WByG0VsuFWzR', - 'name': 'BLOND:ISH', - 'uri': 'spotify:artist:6zsJjoCtL1WByG0VsuFWzR', - }), - dict({ - 'artist_id': '5qMHOzLlXeOEjOncWYtRfZ', - 'name': 'Stevie Appleton', - 'uri': 'spotify:artist:5qMHOzLlXeOEjOncWYtRfZ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736d31b666cc828a16d3d54612', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026d31b666cc828a16d3d54612', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516d31b666cc828a16d3d54612', - 'width': 64, - }), - ]), - 'name': 'Never Walk Alone', - 'release_date': '2024-08-02', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1BuWrjAiFiHMHtCYHuUIKM', + 'playlist_id': '4jNUJLnkZJ32nuFE1PjkGu', + 'public': True, + 'uri': 'spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '6zsJjoCtL1WByG0VsuFWzR', - 'name': 'BLOND:ISH', - 'uri': 'spotify:artist:6zsJjoCtL1WByG0VsuFWzR', - }), - dict({ - 'artist_id': '5qMHOzLlXeOEjOncWYtRfZ', - 'name': 'Stevie Appleton', - 'uri': 'spotify:artist:5qMHOzLlXeOEjOncWYtRfZ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 188360, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d', + 'width': 60, + }), + ]), + 'name': "August '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4HB7ECLzrbgapiZyLlFbxz', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/4HB7ECLzrbgapiZyLlFbxz', - 'is_local': False, - 'name': 'Never Walk Alone', - 'track_id': '4HB7ECLzrbgapiZyLlFbxz', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4HB7ECLzrbgapiZyLlFbxz', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '700dVjBihCDj2HwyhYDTRp', + 'public': True, + 'uri': 'spotify:playlist:700dVjBihCDj2HwyhYDTRp', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 42, 56, 29000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5sGYMMmqW6bcKWdmC7Jd2S', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2kLa7JZu4Ijdz1Gle2khZh', - 'name': 'TSHA', - 'uri': 'spotify:artist:2kLa7JZu4Ijdz1Gle2khZh', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27307906cf33511dbe1b58f4872', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0207906cf33511dbe1b58f4872', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485107906cf33511dbe1b58f4872', - 'width': 64, - }), - ]), - 'name': 'Sad Girl', - 'release_date': '2024-09-27', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:5sGYMMmqW6bcKWdmC7Jd2S', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '2kLa7JZu4Ijdz1Gle2khZh', - 'name': 'TSHA', - 'uri': 'spotify:artist:2kLa7JZu4Ijdz1Gle2khZh', - }), - ]), - 'disc_number': 1, - 'duration_ms': 224606, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c', + 'width': 60, + }), + ]), + 'name': 'Discover Weekly Archive', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3Xz2ZcQlQRA7rqbj7tYsL3', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/3Xz2ZcQlQRA7rqbj7tYsL3', - 'is_local': False, - 'name': 'In The Night', - 'track_id': '3Xz2ZcQlQRA7rqbj7tYsL3', - 'track_number': 3, - 'type': , - 'uri': 'spotify:track:3Xz2ZcQlQRA7rqbj7tYsL3', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '6B5dmWX7pK2LHHtS6ph265', + 'public': True, + 'uri': 'spotify:playlist:6B5dmWX7pK2LHHtS6ph265', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 39, 11, 454000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '4nXpTQXjFGtB5n3vC76IBR', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5PlfkPxwCpRRWQJBxCa0By', - 'name': 'HUGEL', - 'uri': 'spotify:artist:5PlfkPxwCpRRWQJBxCa0By', - }), - dict({ - 'artist_id': '5fMUXHkw8R8eOP2RNVYEZX', - 'name': 'Diplo', - 'uri': 'spotify:artist:5fMUXHkw8R8eOP2RNVYEZX', - }), - dict({ - 'artist_id': '5mU7ohKXRejACFS8eZIixp', - 'name': 'Malou', - 'uri': 'spotify:artist:5mU7ohKXRejACFS8eZIixp', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27388e0a2ae3b138aad267aae2b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0288e0a2ae3b138aad267aae2b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485188e0a2ae3b138aad267aae2b', - 'width': 64, - }), - ]), - 'name': 'Forever (feat. Malou & Yuna)', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4nXpTQXjFGtB5n3vC76IBR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '5PlfkPxwCpRRWQJBxCa0By', - 'name': 'HUGEL', - 'uri': 'spotify:artist:5PlfkPxwCpRRWQJBxCa0By', - }), - dict({ - 'artist_id': '5fMUXHkw8R8eOP2RNVYEZX', - 'name': 'Diplo', - 'uri': 'spotify:artist:5fMUXHkw8R8eOP2RNVYEZX', - }), - dict({ - 'artist_id': '5mU7ohKXRejACFS8eZIixp', - 'name': 'Malou', - 'uri': 'spotify:artist:5mU7ohKXRejACFS8eZIixp', - }), - dict({ - 'artist_id': '3kHVioJpVxlazAAKQ64pC1', - 'name': 'Yuna', - 'uri': 'spotify:artist:3kHVioJpVxlazAAKQ64pC1', - }), - ]), - 'disc_number': 1, - 'duration_ms': 140500, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6', + 'width': 60, + }), + ]), + 'name': 'Dance vibes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0WS1qLcXKsCGt5e3dqq30S', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/0WS1qLcXKsCGt5e3dqq30S', - 'is_local': False, - 'name': 'Forever (feat. Malou & Yuna)', - 'track_id': '0WS1qLcXKsCGt5e3dqq30S', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:0WS1qLcXKsCGt5e3dqq30S', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '0ISThPpDv4JBNeHdptcK6i', + 'public': True, + 'uri': 'spotify:playlist:0ISThPpDv4JBNeHdptcK6i', }), dict({ - 'context': dict({ - 'context_type': , + 'collaborative': True, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab', + 'width': 60, + }), + ]), + 'name': 'goeien numertjs', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', - }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 36, 50, 942000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1xL7LvJtJlAjWPrtA7Aj0v', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0nnF48t4C8uqGS5HPnCN3F', - 'name': '49th & Main', - 'uri': 'spotify:artist:0nnF48t4C8uqGS5HPnCN3F', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2737be6c8bdc25b79bf8d95f0f0', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e027be6c8bdc25b79bf8d95f0f0', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048517be6c8bdc25b79bf8d95f0f0', - 'width': 64, - }), - ]), - 'name': 'Self Sabotage', - 'release_date': '2024-03-28', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1xL7LvJtJlAjWPrtA7Aj0v', - }), - 'artists': list([ - dict({ - 'artist_id': '0nnF48t4C8uqGS5HPnCN3F', - 'name': '49th & Main', - 'uri': 'spotify:artist:0nnF48t4C8uqGS5HPnCN3F', - }), - ]), - 'disc_number': 1, - 'duration_ms': 145074, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7yYur6YhUetXZj6b2CnWrE', - }), - 'href': 'https://api.spotify.com/v1/tracks/7yYur6YhUetXZj6b2CnWrE', - 'is_local': False, - 'name': 'Self Sabotage', - 'track_id': '7yYur6YhUetXZj6b2CnWrE', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:7yYur6YhUetXZj6b2CnWrE', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '2ElmM8s9Um1XSP07hADX9s', + 'public': True, + 'uri': 'spotify:playlist:2ElmM8s9Um1XSP07hADX9s', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 34, 25, 873000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '3UT1EXRpoX808v8dtCz172', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0vTVU0KH0CVzijsoKGsTPl', - 'name': "Barry Can't Swim", - 'uri': 'spotify:artist:0vTVU0KH0CVzijsoKGsTPl', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2730d8d33cfa46fce3e1bbf66e4', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e020d8d33cfa46fce3e1bbf66e4', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048510d8d33cfa46fce3e1bbf66e4', - 'width': 64, - }), - ]), - 'name': 'Still Riding', - 'release_date': '2024-09-24', - 'release_date_precision': , - 'total_tracks': 3, - 'uri': 'spotify:album:3UT1EXRpoX808v8dtCz172', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '0vTVU0KH0CVzijsoKGsTPl', - 'name': "Barry Can't Swim", - 'uri': 'spotify:artist:0vTVU0KH0CVzijsoKGsTPl', - }), - ]), - 'disc_number': 1, - 'duration_ms': 219152, - 'explicit': True, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a', + 'width': 60, + }), + ]), + 'name': 'Summer vibes', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1DQYCwZG5DOXXSTXluYQam', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/1DQYCwZG5DOXXSTXluYQam', - 'is_local': False, - 'name': 'Still Riding', - 'track_id': '1DQYCwZG5DOXXSTXluYQam', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:1DQYCwZG5DOXXSTXluYQam', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '0DRUBqBUSFJH1a7FvBIsGg', + 'public': True, + 'uri': 'spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 30, 46, 715000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '2Q4FR4Ss0mh6EvbiQBHEOU', - 'name': 'Oona Doherty', - 'uri': 'spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU', - }), - ]), - 'disc_number': 1, - 'duration_ms': 337414, - 'explicit': True, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356', + 'width': 60, + }), + ]), + 'name': "July '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI', - 'is_local': False, - 'name': 'Falling Together', - 'track_id': '08Jhu8OZ6gCIGWQn6vP3uI', - 'track_number': 12, - 'type': , - 'uri': 'spotify:track:08Jhu8OZ6gCIGWQn6vP3uI', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '4PSXSX9WhxdjAzSjU175od', + 'public': True, + 'uri': 'spotify:playlist:4PSXSX9WhxdjAzSjU175od', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': 'A Blend of music for Joost and xleanne_. Updates daily.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 25, 10, 544000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg', + 'width': None, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 71680, - 'explicit': False, + ]), + 'name': 'xleanne_ + Joost', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN', - 'is_local': False, - 'name': 'Every Single Weekend - Interlude', - 'track_id': '1wpcJ6TCrKpH6KdBmrp9yN', - 'track_number': 11, - 'type': , - 'uri': 'spotify:track:1wpcJ6TCrKpH6KdBmrp9yN', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), + 'playlist_id': '37i9dQZF1EJADo3CBlOCly', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJADo3CBlOCly', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 23, 57, 950000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '3C8RpaI3Go0yFF9whvKoED', - 'name': 'The Avalanches', - 'uri': 'spotify:artist:3C8RpaI3Go0yFF9whvKoED', - }), - ]), - 'disc_number': 1, - 'duration_ms': 254142, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8', + 'width': 60, + }), + ]), + 'name': "June '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu', - 'is_local': False, - 'name': 'All You Children', - 'track_id': '3cfgisz6DhZmooQk08P4Eu', - 'track_number': 10, - 'type': , - 'uri': 'spotify:track:3cfgisz6DhZmooQk08P4Eu', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '1XKSZRcsYP6VTkObunDIjQ', + 'public': True, + 'uri': 'spotify:playlist:1XKSZRcsYP6VTkObunDIjQ', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': 'This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 19, 43, 477000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c', + 'width': None, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 376918, - 'explicit': False, + ]), + 'name': 'GTA Cayo Perico Beach Party: Keinemusik Set', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Austin Martinez', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6', + 'spotify': 'https://open.spotify.com/user/127651589', }), - 'href': 'https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6', - 'is_local': False, - 'name': 'Breather', - 'track_id': '6pOzbdJKEr4hvXkX7VkfY6', - 'track_number': 9, - 'type': , - 'uri': 'spotify:track:6pOzbdJKEr4hvXkX7VkfY6', + 'href': 'https://api.spotify.com/v1/users/127651589', + 'object_type': 'user', + 'owner_id': '127651589', + 'uri': 'spotify:user:127651589', }), + 'playlist_id': '3uCD1EyW3JRx8SV1QnA3Zm', + 'public': True, + 'uri': 'spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': 'A Blend of music for Joost and Marc. Updates daily.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 13, 26, 609000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': None, + 'url': 'https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg', + 'width': None, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 222365, - 'explicit': False, + ]), + 'name': 'Marc + Joost', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5', + 'spotify': 'https://open.spotify.com/user/spotify', }), - 'href': 'https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5', - 'is_local': False, - 'name': 'The Feeling I Get From You', - 'track_id': '7gb0pekqHQYTGo6NWLBvT5', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:7gb0pekqHQYTGo6NWLBvT5', + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', }), + 'playlist_id': '37i9dQZF1EJBr22FUQwTGS', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EJBr22FUQwTGS', }), dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', - }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 9, 44, 240000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '6UE7nl9mha6s8z0wFQFIZ2', - 'name': 'Robyn', - 'uri': 'spotify:artist:6UE7nl9mha6s8z0wFQFIZ2', - }), - ]), - 'disc_number': 1, - 'duration_ms': 202648, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ', + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ', - 'is_local': False, - 'name': 'Life', - 'track_id': '0pMj03SiaZ9bkFlXQWNhtZ', - 'track_number': 7, - 'type': , - 'uri': 'spotify:track:0pMj03SiaZ9bkFlXQWNhtZ', - }), - }), - dict({ - 'context': dict({ - 'context_type': , - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5', + 'width': 60, }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + ]), + 'name': "May '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 6, 21, 659000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'playlist_id': '3yPujxZ9OiB4By8COZaxaK', + 'public': True, + 'uri': 'spotify:playlist:3yPujxZ9OiB4By8COZaxaK', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 205638, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19', + 'width': 60, + }), + ]), + 'name': "April '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto', - 'is_local': False, - 'name': 'Still Summer', - 'track_id': '27D9YN3uHPD3PTXvzNtbto', - 'track_number': 6, - 'type': , - 'uri': 'spotify:track:27D9YN3uHPD3PTXvzNtbto', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '4A31OO75jaLCV2r7bvbQUa', + 'public': True, + 'uri': 'spotify:playlist:4A31OO75jaLCV2r7bvbQUa', }), dict({ - 'context': dict({ - 'context_type': , + 'collaborative': False, + 'description': 'HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c', + 'width': None, + }), + ]), + 'name': 'BASS BOOSTED CAR MUSIC 2023', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'LIZOT', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP', + 'spotify': 'https://open.spotify.com/user/max.kleinschmidt', }), - 'href': 'https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP', - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'href': 'https://api.spotify.com/v1/users/max.kleinschmidt', + 'object_type': 'user', + 'owner_id': 'max.kleinschmidt', + 'uri': 'spotify:user:max.kleinschmidt', }), - 'played_at': datetime.datetime(2024, 10, 6, 17, 2, 56, 22000, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'playlist_id': '6JbGAAe70bKTA3yfddjWTK', + 'public': True, + 'uri': 'spotify:playlist:6JbGAAe70bKTA3yfddjWTK', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'width': 640, }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '0fEfMW5bypHZ0A8eLnhwj5', - 'name': 'Kelsey Lu', - 'uri': 'spotify:artist:0fEfMW5bypHZ0A8eLnhwj5', - }), - dict({ - 'artist_id': '0FNfiTQCR5o3ounOlWzm1d', - 'name': 'John Glacier', - 'uri': 'spotify:artist:0FNfiTQCR5o3ounOlWzm1d', - }), - dict({ - 'artist_id': '1R84VlXnFFULOsWWV8IrCQ', - 'name': 'Panda Bear', - 'uri': 'spotify:artist:1R84VlXnFFULOsWWV8IrCQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 212339, - 'explicit': False, + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057', + 'width': 60, + }), + ]), + 'name': "March '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2', + 'spotify': 'https://open.spotify.com/user/1112264649', }), - 'href': 'https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2', - 'is_local': False, - 'name': 'Dafodil', - 'track_id': '1gRMKwvMvp6LcQVMpMXQg2', - 'track_number': 5, - 'type': , - 'uri': 'spotify:track:1gRMKwvMvp6LcQVMpMXQg2', + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', }), + 'playlist_id': '6lVbphMrnxl1vIlfPhdA8i', + 'public': True, + 'uri': 'spotify:playlist:6lVbphMrnxl1vIlfPhdA8i', }), - ]) -# --- -# name: test_get_saved_albums - list([ dict({ - 'added_at': datetime.datetime(2024, 9, 19, 22, 0, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', - 'width': 64, - }), - ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 12, - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 135835, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p', - }), - 'href': 'https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p', - 'is_local': False, - 'name': 'Wanna', - 'track_id': '7uLBdV19ad7kAjU2oB1l6p', - 'track_number': 1, - 'uri': 'spotify:track:7uLBdV19ad7kAjU2oB1l6p', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 240580, - 'explicit': False, + 'collaborative': False, + 'description': "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337', + 'width': None, + }), + ]), + 'name': 'ADE Guest List', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', + }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1DX3FNkD0kDpDV', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1DX3FNkD0kDpDV', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07', + 'width': 60, + }), + ]), + 'name': "February '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '3l0iA85qv43y9aMWztVIHu', + 'public': True, + 'uri': 'spotify:playlist:3l0iA85qv43y9aMWztVIHu', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7', + 'width': 60, + }), + ]), + 'name': "January '21", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '2jp4GK1k1l7I1X67f2EbmD', + 'public': True, + 'uri': 'spotify:playlist:2jp4GK1k1l7I1X67f2EbmD', + }), + dict({ + 'collaborative': False, + 'description': 'The songs you loved most this year, all wrapped up.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg', + 'width': None, + }), + ]), + 'name': 'Your Top Songs 2020', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Spotify', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/spotify', + }), + 'href': 'https://api.spotify.com/v1/users/spotify', + 'object_type': 'user', + 'owner_id': 'spotify', + 'uri': 'spotify:user:spotify', + }), + 'playlist_id': '37i9dQZF1EM9phQOPnbiB6', + 'public': True, + 'uri': 'spotify:playlist:37i9dQZF1EM9phQOPnbiB6', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c', + 'width': 60, + }), + ]), + 'name': "December '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '027kb6scBKg9y9dE5nPPTv', + 'public': True, + 'uri': 'spotify:playlist:027kb6scBKg9y9dE5nPPTv', + }), + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15', + }), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'width': 300, + }), + dict({ + 'height': 60, + 'url': 'https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02', + 'width': 60, + }), + ]), + 'name': "November '20", + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '1lX3M3MvpNmQGzuh7tVi15', + 'public': True, + 'uri': 'spotify:playlist:1lX3M3MvpNmQGzuh7tVi15', + }), + ]) +# --- +# name: test_get_devices + list([ + dict({ + 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', + 'device_type': , + 'is_active': False, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'DESKTOP-BKC5SIK', + 'supports_volume': True, + 'volume_percent': 69, + }), + ]) +# --- +# name: test_get_episode + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3690161, + 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', + }), + 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'My Squirrel Has Brain Damage - Safety Third 119', + 'release_date': '2024-07-26', + 'release_date_precision': , + 'show': dict({ + 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'Safety Third', + 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', + 'total_episodes': 159, + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'type': , + 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', + }) +# --- +# name: test_get_following_artists + list([ + dict({ + 'artist_id': '49RPyTk0BluLrg3scWFCOw', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6c0e10129c7d490c1b2f43a1', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746c0e10129c7d490c1b2f43a1', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786c0e10129c7d490c1b2f43a1', + 'width': 160, + }), + ]), + 'name': 'The Excellent Man from Minneapolis', + 'uri': 'spotify:artist:49RPyTk0BluLrg3scWFCOw', + }), + dict({ + 'artist_id': '0r6IrOHMBaKiiZPV1zeIu2', + 'images': list([ + dict({ + 'height': 1000, + 'url': 'https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204', + 'width': 1000, + }), + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783', + 'width': 640, + }), + dict({ + 'height': 200, + 'url': 'https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9', + 'width': 200, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4', + 'width': 64, + }), + ]), + 'name': 'Follow The Cipher', + 'uri': 'spotify:artist:0r6IrOHMBaKiiZPV1zeIu2', + }), + dict({ + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16', + 'width': 160, + }), + ]), + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + }), + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb', + 'width': 160, + }), + ]), + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567', + 'width': 160, + }), + ]), + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '25sJFKMqDENdsTF7zRXoif', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7', + 'width': 160, + }), + ]), + 'name': 'Klaas', + 'uri': 'spotify:artist:25sJFKMqDENdsTF7zRXoif', + }), + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb7525b42a023687841595bbd3', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051747525b42a023687841595bbd3', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1787525b42a023687841595bbd3', + 'width': 160, + }), + ]), + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + dict({ + 'artist_id': '5UlJRJmlRLhQJX8lJuerVq', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4', + 'width': 160, + }), + ]), + 'name': 'Telenova', + 'uri': 'spotify:artist:5UlJRJmlRLhQJX8lJuerVq', + }), + dict({ + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb', + 'width': 160, + }), + ]), + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + }), + dict({ + 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eba38b7b74df480f484747aa5e', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174a38b7b74df480f484747aa5e', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178a38b7b74df480f484747aa5e', + 'width': 160, + }), + ]), + 'name': 'Onkruid', + 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', + }), + dict({ + 'artist_id': '66FZq0wsY6770bc4O9Dlig', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb86c24ac383ac8bac2abf3490', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517486c24ac383ac8bac2abf3490', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17886c24ac383ac8bac2abf3490', + 'width': 160, + }), + ]), + 'name': 'Vieze Asbak', + 'uri': 'spotify:artist:66FZq0wsY6770bc4O9Dlig', + }), + dict({ + 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6bc3053447db6b61f3fe444c', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746bc3053447db6b61f3fe444c', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786bc3053447db6b61f3fe444c', + 'width': 160, + }), + ]), + 'name': 'Röyksopp', + 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', + }), + dict({ + 'artist_id': '2vhrwzjf9H3icunkVFi9tq', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe3bfc7d382ee69ad39301bf3', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e3bfc7d382ee69ad39301bf3', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e3bfc7d382ee69ad39301bf3', + 'width': 160, + }), + ]), + 'name': 'Smash Into Pieces', + 'uri': 'spotify:artist:2vhrwzjf9H3icunkVFi9tq', + }), + dict({ + 'artist_id': '17IDrizGUiveZm4P77Kkio', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb865270a866f29852ee53fa3f', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174865270a866f29852ee53fa3f', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178865270a866f29852ee53fa3f', + 'width': 160, + }), + ]), + 'name': 'Icarus', + 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', + }), + dict({ + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd', + 'width': 160, + }), + ]), + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + }), + dict({ + 'artist_id': '7FdBcGYvnLdBA3thdl1jpO', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb08d114a81d91a2a9c9fe54c4', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517408d114a81d91a2a9c9fe54c4', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17808d114a81d91a2a9c9fe54c4', + 'width': 160, + }), + ]), + 'name': 'Scarjen', + 'uri': 'spotify:artist:7FdBcGYvnLdBA3thdl1jpO', + }), + dict({ + 'artist_id': '1QOHbhVRpDoNtRkz79si6b', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb17117582d67a9817d018ba55', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517417117582d67a9817d018ba55', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17817117582d67a9817d018ba55', + 'width': 160, + }), + ]), + 'name': 'Karen Harding', + 'uri': 'spotify:artist:1QOHbhVRpDoNtRkz79si6b', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274', + 'width': 160, + }), + ]), + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1DbXVMdQqNejIYLU2xsIMi', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8', + 'width': 160, + }), + ]), + 'name': 'Ryan Ritual', + 'uri': 'spotify:artist:1DbXVMdQqNejIYLU2xsIMi', + }), + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933', + 'width': 160, + }), + ]), + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + dict({ + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778', + 'width': 160, + }), + ]), + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + }), + dict({ + 'artist_id': '5wF7Cde0abKtrbCj1Gcow7', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb30aaa02dea97e4836793acfa', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517430aaa02dea97e4836793acfa', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17830aaa02dea97e4836793acfa', + 'width': 160, + }), + ]), + 'name': 'Only Seven Left', + 'uri': 'spotify:artist:5wF7Cde0abKtrbCj1Gcow7', + }), + dict({ + 'artist_id': '56X1AGaHZthmkHfMZTcvnY', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6e47926f9b3da6014495b505', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746e47926f9b3da6014495b505', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786e47926f9b3da6014495b505', + 'width': 160, + }), + ]), + 'name': 'Lustrum Albertus Magnus', + 'uri': 'spotify:artist:56X1AGaHZthmkHfMZTcvnY', + }), + dict({ + 'artist_id': '2pH3wEn4eYlMMIIQyKPbVR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b', + 'width': 160, + }), + ]), + 'name': 'DragonForce', + 'uri': 'spotify:artist:2pH3wEn4eYlMMIIQyKPbVR', + }), + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457', + 'width': 160, + }), + ]), + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + dict({ + 'artist_id': '4IF11U0nzFhAaLDGZH3vSx', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb2fd30c40ef0995f9e884121c', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051742fd30c40ef0995f9e884121c', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1782fd30c40ef0995f9e884121c', + 'width': 160, + }), + ]), + 'name': 'RichaadEB', + 'uri': 'spotify:artist:4IF11U0nzFhAaLDGZH3vSx', + }), + dict({ + 'artist_id': '10GT4yz8c6xjjnPGtGPI1l', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb96a091a0f6f5b83e6c0ce41e', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517496a091a0f6f5b83e6c0ce41e', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17896a091a0f6f5b83e6c0ce41e', + 'width': 160, + }), + ]), + 'name': 'Franc Moody', + 'uri': 'spotify:artist:10GT4yz8c6xjjnPGtGPI1l', + }), + dict({ + 'artist_id': '1kDGbuxWknIKx4FlgWxiSp', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57', + 'width': 160, + }), + ]), + 'name': 'Nothing But Thieves', + 'uri': 'spotify:artist:1kDGbuxWknIKx4FlgWxiSp', + }), + dict({ + 'artist_id': '0uBVyPbLZRDNEBiA4fZUlp', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb88e1735fe7e1b00d7203e13a', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517488e1735fe7e1b00d7203e13a', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17888e1735fe7e1b00d7203e13a', + 'width': 160, + }), + ]), + 'name': 'Froukje', + 'uri': 'spotify:artist:0uBVyPbLZRDNEBiA4fZUlp', + }), + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85', + 'width': 160, + }), + ]), + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + dict({ + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb988f5c8a44e2ecf58ee7b282', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174988f5c8a44e2ecf58ee7b282', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178988f5c8a44e2ecf58ee7b282', + 'width': 160, + }), + ]), + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', + }), + dict({ + 'artist_id': '7EuzcvdfScUqksgKfyN7J0', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebc9fd64f340405adebbabbbb1', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174c9fd64f340405adebbabbbb1', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178c9fd64f340405adebbabbbb1', + 'width': 160, + }), + ]), + 'name': 'Fyr Og Flamme', + 'uri': 'spotify:artist:7EuzcvdfScUqksgKfyN7J0', + }), + dict({ + 'artist_id': '37yradccJvSdTTA2Ol112q', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb02705fb156e30c3e086a9a17', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517402705fb156e30c3e086a9a17', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17802705fb156e30c3e086a9a17', + 'width': 160, + }), + ]), + 'name': 'Brett Domino', + 'uri': 'spotify:artist:37yradccJvSdTTA2Ol112q', + }), + dict({ + 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb', + 'width': 160, + }), + ]), + 'name': 'Beast In Black', + 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', + }), + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf', + 'width': 160, + }), + ]), + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + dict({ + 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7', + 'width': 160, + }), + ]), + 'name': 'Purple Disco Machine', + 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', + }), + dict({ + 'artist_id': '6Dd3NScHWwnW6obMFbl1BH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe79374211456f3edbb005e2c', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e79374211456f3edbb005e2c', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e79374211456f3edbb005e2c', + 'width': 160, + }), + ]), + 'name': 'Daya', + 'uri': 'spotify:artist:6Dd3NScHWwnW6obMFbl1BH', + }), + dict({ + 'artist_id': '7s666LjS611IPQ63Clon0r', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb40afab9ab091f76e7948ea16', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517440afab9ab091f76e7948ea16', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17840afab9ab091f76e7948ea16', + 'width': 160, + }), + ]), + 'name': 'Sunday Avenue', + 'uri': 'spotify:artist:7s666LjS611IPQ63Clon0r', + }), + dict({ + 'artist_id': '760CXsrIDEEqLxeF2x4tRO', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb102dde38e9c72ced7033d34d', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174102dde38e9c72ced7033d34d', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178102dde38e9c72ced7033d34d', + 'width': 160, + }), + ]), + 'name': 'Maestro Ziikos', + 'uri': 'spotify:artist:760CXsrIDEEqLxeF2x4tRO', + }), + dict({ + 'artist_id': '7Egoy0UuRKksBWzmGYzd68', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb83b9ffb1f6cd3975392af7f7', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517483b9ffb1f6cd3975392af7f7', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17883b9ffb1f6cd3975392af7f7', + 'width': 160, + }), + ]), + 'name': 'YENO', + 'uri': 'spotify:artist:7Egoy0UuRKksBWzmGYzd68', + }), + dict({ + 'artist_id': '751YCAfHx8dQSUbAN8Q9dl', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb253147018c2d40ef1c0cdacd', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174253147018c2d40ef1c0cdacd', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178253147018c2d40ef1c0cdacd', + 'width': 160, + }), + ]), + 'name': 'Nicolas Kanza', + 'uri': 'spotify:artist:751YCAfHx8dQSUbAN8Q9dl', + }), + dict({ + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb73c480b64dd16ef5d6396265', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517473c480b64dd16ef5d6396265', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17873c480b64dd16ef5d6396265', + 'width': 160, + }), + ]), + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', + }), + dict({ + 'artist_id': '4AQrqVz6BYwy29iMxcGtx7', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb05858f274692344c6f5ee13a', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517405858f274692344c6f5ee13a', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17805858f274692344c6f5ee13a', + 'width': 160, + }), + ]), + 'name': 'Roosevelt', + 'uri': 'spotify:artist:4AQrqVz6BYwy29iMxcGtx7', + }), + dict({ + 'artist_id': '6jDwZUFYUH1dC4xWzOd8QU', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebfc761f5e2d8f6db4dfaaa5ca', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174fc761f5e2d8f6db4dfaaa5ca', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178fc761f5e2d8f6db4dfaaa5ca', + 'width': 160, + }), + ]), + 'name': 'Caleb Hyles', + 'uri': 'spotify:artist:6jDwZUFYUH1dC4xWzOd8QU', + }), + dict({ + 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe85ae0ce3fe84474211ef54b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e85ae0ce3fe84474211ef54b', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e85ae0ce3fe84474211ef54b', + 'width': 160, + }), + ]), + 'name': 'MK', + 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', + }), + dict({ + 'artist_id': '6Gk5hoM7eW8NSCYhICMDHw', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebf30f0f0e7f93877befa196af', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174f30f0f0e7f93877befa196af', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178f30f0f0e7f93877befa196af', + 'width': 160, + }), + ]), + 'name': 'Zak Abel', + 'uri': 'spotify:artist:6Gk5hoM7eW8NSCYhICMDHw', + }), + dict({ + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebd6f6bf343b8bf12f12dc1a25', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174d6f6bf343b8bf12f12dc1a25', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178d6f6bf343b8bf12f12dc1a25', + 'width': 160, + }), + ]), + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '7CajNmpbOovFoOoasH2HaY', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb8ebba5e60113b48de8c11f6b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051748ebba5e60113b48de8c11f6b', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1788ebba5e60113b48de8c11f6b', + 'width': 160, + }), + ]), + 'name': 'Calvin Harris', + 'uri': 'spotify:artist:7CajNmpbOovFoOoasH2HaY', + }), + ]) +# --- +# name: test_get_playback_state[playback_1.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/collection/tracks', + }), + 'href': 'https://api.spotify.com/v1/me/tracks', + 'uri': 'spotify:user:1112264649:collection', + }), + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': '21dac6b0e0a1f181870fdc9749b2656466557687', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'DESKTOP-BKC5SIK', + 'supports_volume': True, + 'volume_percent': 69, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '1iasbpTobDPa5BmsK0Rz1f', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722', + 'width': 64, + }), + ]), + 'name': 'WARRIORS, Pt. 1 (Final Stage)', + 'release_date': '2023-10-20', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1iasbpTobDPa5BmsK0Rz1f', + }), + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 268525, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv', + }), + 'href': 'https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv', + 'is_local': False, + 'name': 'WARRIORS, Pt. 1 (Final Stage)', + 'track_id': '1FyXbzOlq3dkxaB6iRsETv', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1FyXbzOlq3dkxaB6iRsETv', + }), + 'progress_ms': 225564, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_2.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm', + }), + 'href': 'https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm', + 'uri': 'spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm', + }), + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': 'a19f7a03a25aff3e43f457a328a8ba67a8c44789', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'Master Bathroom Speaker', + 'supports_volume': True, + 'volume_percent': 25, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '3nUNxSh2szhmN7iifAKv5i', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', + 'name': 'Rush', + 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983', + 'width': 64, + }), + ]), + 'name': 'Permanent Waves', + 'release_date': '1980-01-01', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:3nUNxSh2szhmN7iifAKv5i', + }), + 'artists': list([ + dict({ + 'artist_id': '2Hkut4rAAyrQxRdof7FVJq', + 'name': 'Rush', + 'uri': 'spotify:artist:2Hkut4rAAyrQxRdof7FVJq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 296466, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p', + }), + 'href': 'https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p', + 'is_local': False, + 'name': 'The Spirit Of Radio', + 'track_id': '4e9hUiLsN4mx61ARosFi7p', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4e9hUiLsN4mx61ARosFi7p', + }), + 'progress_ms': 249367, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_3.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/collection/tracks', + }), + 'href': 'https://api.spotify.com/v1/me/tracks', + 'uri': 'spotify:user:1112264649:collection', + }), + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': None, + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': True, + 'name': 'Sonos Roam SL', + 'supports_volume': True, + 'volume_percent': 34, + }), + 'is_playing': True, + 'item': dict({ + 'album': dict({ + 'album_id': '3qCsGHHWG6t9izvmsE47jr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c', + 'width': 64, + }), + ]), + 'name': 'Ome Robert', + 'release_date': '2018-04-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3qCsGHHWG6t9izvmsE47jr', + }), + 'artists': list([ + dict({ + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + }), + ]), + 'disc_number': 1, + 'duration_ms': 152500, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z', + }), + 'href': 'https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z', + 'is_local': False, + 'name': 'Ome Robert', + 'track_id': '3TE49HXyoNczZk2IBhP87z', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3TE49HXyoNczZk2IBhP87z', + }), + 'progress_ms': 7919, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_4.json] + dict({ + 'context': None, + 'currently_playing_type': 'track', + 'device': dict({ + 'device_id': 'aee274e4bbe6b44cf3b22ad3b68eca3a6954a701', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'Joost’s MacBook Pro', + 'supports_volume': True, + 'volume_percent': 67, + }), + 'is_playing': True, + 'item': None, + 'progress_ms': 22215, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_audiobook_1.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + }), + 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + 'currently_playing_type': 'episode', + 'device': dict({ + 'device_id': '9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8', + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': False, + 'name': 'Nothing phone (1)', + 'supports_volume': False, + 'volume_percent': 100, + }), + 'is_playing': True, + 'item': dict({ + 'description': '', + 'duration_ms': 249652, + 'episode_id': '3NW4BmIOG0qzQZgtLgsydR', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR', + }), + 'href': 'https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, + }), + ]), + 'name': 'Track 1', + 'release_date': '0000', + 'release_date_precision': , + 'show': dict({ + 'description': 'Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.


‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
Rob Cobben, cultuurverslaggever Dagblad De Limburger

', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + }), + 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', + 'width': 64, + }), + ]), + 'name': 'De nomade', + 'show_id': '58cFIY8IT7yGqR3kHnKqzV', + 'total_episodes': None, + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + 'type': , + 'uri': 'spotify:episode:3NW4BmIOG0qzQZgtLgsydR', + }), + 'progress_ms': 15611, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playback_state[playback_episode_1.json] + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'currently_playing_type': 'episode', + 'device': dict({ + 'device_id': None, + 'device_type': , + 'is_active': True, + 'is_private_session': False, + 'is_restricted': True, + 'name': 'Sonos Roam SL', + 'supports_volume': True, + 'volume_percent': 46, + }), + 'is_playing': True, + 'item': dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3690161, + 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', + }), + 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'My Squirrel Has Brain Damage - Safety Third 119', + 'release_date': '2024-07-26', + 'release_date_precision': , + 'show': dict({ + 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'Safety Third', + 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', + 'total_episodes': 120, + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'type': , + 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', + }), + 'progress_ms': 5410, + 'repeat_mode': , + 'shuffle': False, + }) +# --- +# name: test_get_playlist[playlist_1.json] + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4', + 'width': None, + }), + ]), + 'items': dict({ + 'items': list([ + dict({ + 'added_at': datetime.datetime(2025, 7, 29, 21, 11, 55, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '7cynQpUNbqg7ZqYQu11Yng', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', + 'name': 'Maribou State', + 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', + }), + dict({ + 'artist_id': '6SKEuFZYhaTytrhtJjgnO2', + 'name': 'Andreya Triana', + 'uri': 'spotify:artist:6SKEuFZYhaTytrhtJjgnO2', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4', + 'width': 64, + }), + ]), + 'name': 'All I Need', + 'release_date': '2025-01-13', + 'release_date_precision': , + 'total_tracks': 5, + 'uri': 'spotify:album:7cynQpUNbqg7ZqYQu11Yng', + }), + 'artists': list([ + dict({ + 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', + 'name': 'Maribou State', + 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', + }), + dict({ + 'artist_id': '6SKEuFZYhaTytrhtJjgnO2', + 'name': 'Andreya Triana', + 'uri': 'spotify:artist:6SKEuFZYhaTytrhtJjgnO2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 227934, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ', + 'is_local': False, + 'name': 'All I Need', + 'track_id': '3ZL9gPzeCnKG9l5SB1SlcZ', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ', + }), + }), + ]), + }), + 'name': 'To find', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '1Cp6VQCKf2VL4sP09jN9oX', + 'public': True, + 'uri': 'spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX', + }) +# --- +# name: test_get_playlist[playlist_2.json] + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af', + 'width': None, + }), + ]), + 'items': dict({ + 'items': list([ + dict({ + 'added_at': datetime.datetime(2013, 1, 19, 22, 16, 8, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/chadandcaren', + }), + 'href': 'https://api.spotify.com/v1/users/chadandcaren', + 'uri': 'spotify:user:chadandcaren', + 'user_id': 'chadandcaren', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '3KVfMVtOmoVCgihLE4HoBr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', + 'name': 'Ingrid Michaelson', + 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919', + 'width': 64, + }), + ]), + 'name': 'Be OK', + 'release_date': '2008-01-01', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:3KVfMVtOmoVCgihLE4HoBr', + }), + 'artists': list([ + dict({ + 'artist_id': '2vm8GdHyrJh2O2MfbQFYG0', + 'name': 'Ingrid Michaelson', + 'uri': 'spotify:artist:2vm8GdHyrJh2O2MfbQFYG0', + }), + ]), + 'disc_number': 1, + 'duration_ms': 148706, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP', + }), + 'href': 'https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP', + 'is_local': False, + 'name': 'You and I', + 'track_id': '4oeRfmp9XpKWym6YD1WvBP', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:4oeRfmp9XpKWym6YD1WvBP', + }), + }), + ]), + }), + 'name': 'Starred', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'chadandcaren', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/chadandcaren', + }), + 'href': 'https://api.spotify.com/v1/users/chadandcaren', + 'object_type': 'user', + 'owner_id': 'chadandcaren', + 'uri': 'spotify:user:chadandcaren', + }), + 'playlist_id': '3toMXYM91T55pKzuysH5Ph', + 'public': True, + 'uri': 'spotify:playlist:3toMXYM91T55pKzuysH5Ph', + }) +# --- +# name: test_get_playlist[playlist_3.json] + dict({ + 'collaborative': False, + 'description': '', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1', + }), + 'images': list([ + dict({ + 'height': None, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': None, + }), + ]), + 'items': dict({ + 'items': list([ + dict({ + 'added_at': datetime.datetime(2024, 5, 16, 20, 46, 24, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '5iuJo58XqIENkyviBJ4dil', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6DDZJCwSnNF361mUwPEm4G', + 'name': 'Saint Nomad', + 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8', + 'width': 64, + }), + ]), + 'name': 'Nothing To Lose', + 'release_date': '2020-05-01', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5iuJo58XqIENkyviBJ4dil', + }), + 'artists': list([ + dict({ + 'artist_id': '6DDZJCwSnNF361mUwPEm4G', + 'name': 'Saint Nomad', + 'uri': 'spotify:artist:6DDZJCwSnNF361mUwPEm4G', + }), + ]), + 'disc_number': 1, + 'duration_ms': 164453, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw', + }), + 'href': 'https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw', + 'is_local': False, + 'name': 'Nothing To Lose', + 'track_id': '4bEdcyI0l4zX2Ut5m5Xrhw', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 5, 16, 20, 53, 44, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '4stVgm9xx3cSNYddv8oTcL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', + 'name': 'Doko', + 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de', + 'width': 64, + }), + ]), + 'name': 'Borrowed Time', + 'release_date': '2019-06-28', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:4stVgm9xx3cSNYddv8oTcL', + }), + 'artists': list([ + dict({ + 'artist_id': '6GFq3n0UYhpfzYPprpmD4K', + 'name': 'Doko', + 'uri': 'spotify:artist:6GFq3n0UYhpfzYPprpmD4K', + }), + ]), + 'disc_number': 1, + 'duration_ms': 198022, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8', + }), + 'href': 'https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8', + 'is_local': False, + 'name': 'Borrowed Time', + 'track_id': '2kmZop34md5KWP4gn7Zuj8', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2kmZop34md5KWP4gn7Zuj8', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 11, 28, 10, 18, 44, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'description': 'HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group!\xa0Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.', + 'duration_ms': 2071013, + 'episode_id': '5ytYkag3JZJ3GP2uuFAEBe', + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe', + }), + 'href': 'https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', + 'width': 64, + }), + ]), + 'name': 'Toni Delivers Semen', + 'release_date': '2024-11-27', + 'release_date_precision': , + 'show': dict({ + 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', + }), + 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', + 'width': 64, + }), + ]), + 'name': 'Toni and Ryan', + 'show_id': '5OzkclFjD6iAjtAuo7aIYt', + 'total_episodes': 780, + 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', + }), + 'type': , + 'uri': 'spotify:episode:5ytYkag3JZJ3GP2uuFAEBe', + }), + }), + ]), + }), + 'name': 'Pain', + 'object_type': 'playlist', + 'owner': dict({ + 'display_name': 'Joost Lekkerkerker', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'object_type': 'user', + 'owner_id': '1112264649', + 'uri': 'spotify:user:1112264649', + }), + 'playlist_id': '0pM0KTMXM7K5qr3sL2DPw1', + 'public': True, + 'uri': 'spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1', + }) +# --- +# name: test_get_playlist_cover_image + list([ + dict({ + 'height': None, + 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba', + 'width': None, + }), + ]) +# --- +# name: test_get_playlist_items + list([ + dict({ + 'added_at': datetime.datetime(2025, 7, 29, 21, 11, 55, tzinfo=datetime.timezone.utc), + 'added_by': dict({ + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/user/1112264649', + }), + 'href': 'https://api.spotify.com/v1/users/1112264649', + 'uri': 'spotify:user:1112264649', + 'user_id': '1112264649', + }), + 'track': dict({ + 'album': dict({ + 'album_id': '7cynQpUNbqg7ZqYQu11Yng', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', + 'name': 'Maribou State', + 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', + }), + dict({ + 'artist_id': '6SKEuFZYhaTytrhtJjgnO2', + 'name': 'Andreya Triana', + 'uri': 'spotify:artist:6SKEuFZYhaTytrhtJjgnO2', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4', + 'width': 64, + }), + ]), + 'name': 'All I Need', + 'release_date': '2025-01-13', + 'release_date_precision': , + 'total_tracks': 5, + 'uri': 'spotify:album:7cynQpUNbqg7ZqYQu11Yng', + }), + 'artists': list([ + dict({ + 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', + 'name': 'Maribou State', + 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', + }), + dict({ + 'artist_id': '6SKEuFZYhaTytrhtJjgnO2', + 'name': 'Andreya Triana', + 'uri': 'spotify:artist:6SKEuFZYhaTytrhtJjgnO2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 227934, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ', + 'is_local': False, + 'name': 'All I Need', + 'track_id': '3ZL9gPzeCnKG9l5SB1SlcZ', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ', + }), + }), + ]) +# --- +# name: test_get_recently_played_tracks + list([ + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 20, 15, 20, 497000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4Jb37p32ZFIhRO3bKUnUZ9', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5NzDpcAuGAxvsyqqaUEFw1', + 'name': 'Enchanted Steel', + 'uri': 'spotify:artist:5NzDpcAuGAxvsyqqaUEFw1', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e784490e65cc1f1465653e52', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e784490e65cc1f1465653e52', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e784490e65cc1f1465653e52', + 'width': 64, + }), + ]), + 'name': 'Might and Magic', + 'release_date': '2025-01-02', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:4Jb37p32ZFIhRO3bKUnUZ9', + }), + 'artists': list([ + dict({ + 'artist_id': '5NzDpcAuGAxvsyqqaUEFw1', + 'name': 'Enchanted Steel', + 'uri': 'spotify:artist:5NzDpcAuGAxvsyqqaUEFw1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 211333, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3HRuSJ7VheXVBmjlAXaREd', + }), + 'href': 'https://api.spotify.com/v1/tracks/3HRuSJ7VheXVBmjlAXaREd', + 'is_local': False, + 'name': "We'll Fight! - Re-recorded", + 'track_id': '3HRuSJ7VheXVBmjlAXaREd', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:3HRuSJ7VheXVBmjlAXaREd', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 20, 10, 38, 537000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3yPZUsYXU6dW8IfsDfFxUc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220', + 'width': 64, + }), + ]), + 'name': 'Reborn To Light', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:3yPZUsYXU6dW8IfsDfFxUc', + }), + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'disc_number': 1, + 'duration_ms': 273661, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a', + 'is_local': False, + 'name': 'The Sacred Union (Amduat), Pt.2', + 'track_id': '0Py136Z4oe4FmUFru0115a', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:0Py136Z4oe4FmUFru0115a', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 20, 6, 4, 321000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '31cUZAVZ1R6pwgpFXjZ3Vo', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413', + 'width': 64, + }), + ]), + 'name': 'Power Train', + 'release_date': '2025-02-07', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo', + }), + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'disc_number': 1, + 'duration_ms': 186000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp', + }), + 'href': 'https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp', + 'is_local': False, + 'name': 'Thunder Power', + 'track_id': '3tfDO5eV8kZ4yAk9sUCffp', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3tfDO5eV8kZ4yAk9sUCffp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 20, 2, 58, 94000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5UPcpe5RMaDUcXjTvh5LEg', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3', + 'width': 64, + }), + ]), + 'name': 'Break The Silence', + 'release_date': '2026-01-09', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:5UPcpe5RMaDUcXjTvh5LEg', + }), + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226164, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp', + }), + 'href': 'https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp', + 'is_local': False, + 'name': 'Let There Be Rain', + 'track_id': '4EL8MX1m73qecwy3ECBOSp', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:4EL8MX1m73qecwy3ECBOSp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 19, 59, 11, 278000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '42IHJll6dkoZg9lcat1Gb8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1', + 'width': 64, + }), + ]), + 'name': 'One', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:42IHJll6dkoZg9lcat1Gb8', + }), + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'disc_number': 1, + 'duration_ms': 268360, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T', + }), + 'href': 'https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T', + 'is_local': False, + 'name': 'One', + 'track_id': '4kr0TJoXUl2FHU8WSBcB8T', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4kr0TJoXUl2FHU8WSBcB8T', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 19, 54, 42, 223000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 53, 53, 471000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '41XrkRQLSBThNGddZTKxiN', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273130fddfb4e4da4e5e83dd829', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02130fddfb4e4da4e5e83dd829', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851130fddfb4e4da4e5e83dd829', + 'width': 64, + }), + ]), + 'name': 'Wake Up The Wicked (Deluxe Version)', + 'release_date': '2024-07-26', + 'release_date_precision': , + 'total_tracks': 33, + 'uri': 'spotify:album:41XrkRQLSBThNGddZTKxiN', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 200931, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7D2UpWgfgxzGNzmcIoWd9l', + }), + 'href': 'https://api.spotify.com/v1/tracks/7D2UpWgfgxzGNzmcIoWd9l', + 'is_local': False, + 'name': 'Joan of Arc', + 'track_id': '7D2UpWgfgxzGNzmcIoWd9l', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:7D2UpWgfgxzGNzmcIoWd9l', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 50, 32, 269000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7mOeU7C1am6Ww10bYuOxe7', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6MfUFhthUp7MKoqNEfdwN5', + 'name': 'Krilloan', + 'uri': 'spotify:artist:6MfUFhthUp7MKoqNEfdwN5', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2735e06e09e22062957ae4d010f', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e025e06e09e22062957ae4d010f', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048515e06e09e22062957ae4d010f', + 'width': 64, + }), + ]), + 'name': 'Return Of The Heralds', + 'release_date': '2024-09-20', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:7mOeU7C1am6Ww10bYuOxe7', + }), + 'artists': list([ + dict({ + 'artist_id': '6MfUFhthUp7MKoqNEfdwN5', + 'name': 'Krilloan', + 'uri': 'spotify:artist:6MfUFhthUp7MKoqNEfdwN5', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219666, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/097iQWiJYG0DTSgslNuVGZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/097iQWiJYG0DTSgslNuVGZ', + 'is_local': False, + 'name': 'Atlantean Sword', + 'track_id': '097iQWiJYG0DTSgslNuVGZ', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:097iQWiJYG0DTSgslNuVGZ', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 47, 15, 919000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2b5sxuklqsGdTBgFSidkVR', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6COmyouHXwCeIGS1IFd1PA', + 'name': 'Iron Savior', + 'uri': 'spotify:artist:6COmyouHXwCeIGS1IFd1PA', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273de10a7f0de53283089dd3021', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02de10a7f0de53283089dd3021', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851de10a7f0de53283089dd3021', + 'width': 64, + }), + ]), + 'name': 'Take On Me', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:2b5sxuklqsGdTBgFSidkVR', + }), + 'artists': list([ + dict({ + 'artist_id': '6COmyouHXwCeIGS1IFd1PA', + 'name': 'Iron Savior', + 'uri': 'spotify:artist:6COmyouHXwCeIGS1IFd1PA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 232493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4McyElZJ5DHu8VOMQ8psiR', + }), + 'href': 'https://api.spotify.com/v1/tracks/4McyElZJ5DHu8VOMQ8psiR', + 'is_local': False, + 'name': 'Take On Me', + 'track_id': '4McyElZJ5DHu8VOMQ8psiR', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4McyElZJ5DHu8VOMQ8psiR', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 42, 58, 582000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3yPZUsYXU6dW8IfsDfFxUc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220', + 'width': 64, + }), + ]), + 'name': 'Reborn To Light', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:3yPZUsYXU6dW8IfsDfFxUc', + }), + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'disc_number': 1, + 'duration_ms': 273661, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a', + 'is_local': False, + 'name': 'The Sacred Union (Amduat), Pt.2', + 'track_id': '0Py136Z4oe4FmUFru0115a', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:0Py136Z4oe4FmUFru0115a', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 38, 25, 792000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '31cUZAVZ1R6pwgpFXjZ3Vo', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413', + 'width': 64, + }), + ]), + 'name': 'Power Train', + 'release_date': '2025-02-07', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo', + }), + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'disc_number': 1, + 'duration_ms': 186000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp', + }), + 'href': 'https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp', + 'is_local': False, + 'name': 'Thunder Power', + 'track_id': '3tfDO5eV8kZ4yAk9sUCffp', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3tfDO5eV8kZ4yAk9sUCffp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 35, 18, 461000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5UPcpe5RMaDUcXjTvh5LEg', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3', + 'width': 64, + }), + ]), + 'name': 'Break The Silence', + 'release_date': '2026-01-09', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:5UPcpe5RMaDUcXjTvh5LEg', + }), + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226164, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp', + }), + 'href': 'https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp', + 'is_local': False, + 'name': 'Let There Be Rain', + 'track_id': '4EL8MX1m73qecwy3ECBOSp', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:4EL8MX1m73qecwy3ECBOSp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 31, 31, 660000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '42IHJll6dkoZg9lcat1Gb8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1', + 'width': 64, + }), + ]), + 'name': 'One', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:42IHJll6dkoZg9lcat1Gb8', + }), + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'disc_number': 1, + 'duration_ms': 268360, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T', + }), + 'href': 'https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T', + 'is_local': False, + 'name': 'One', + 'track_id': '4kr0TJoXUl2FHU8WSBcB8T', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4kr0TJoXUl2FHU8WSBcB8T', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 27, 4, 528000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 21, 21, 695000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3yPZUsYXU6dW8IfsDfFxUc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220', + 'width': 64, + }), + ]), + 'name': 'Reborn To Light', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:3yPZUsYXU6dW8IfsDfFxUc', + }), + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'disc_number': 1, + 'duration_ms': 273661, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a', + 'is_local': False, + 'name': 'The Sacred Union (Amduat), Pt.2', + 'track_id': '0Py136Z4oe4FmUFru0115a', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:0Py136Z4oe4FmUFru0115a', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 17, 3, 863000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '31cUZAVZ1R6pwgpFXjZ3Vo', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413', + 'width': 64, + }), + ]), + 'name': 'Power Train', + 'release_date': '2025-02-07', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo', + }), + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'disc_number': 1, + 'duration_ms': 186000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp', + }), + 'href': 'https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp', + 'is_local': False, + 'name': 'Thunder Power', + 'track_id': '3tfDO5eV8kZ4yAk9sUCffp', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3tfDO5eV8kZ4yAk9sUCffp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 13, 47, 215000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5UPcpe5RMaDUcXjTvh5LEg', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3', + 'width': 64, + }), + ]), + 'name': 'Break The Silence', + 'release_date': '2026-01-09', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:5UPcpe5RMaDUcXjTvh5LEg', + }), + 'artists': list([ + dict({ + 'artist_id': '6swnqiL41Bd4gO2fnAXXrf', + 'name': 'Beyond The Black', + 'uri': 'spotify:artist:6swnqiL41Bd4gO2fnAXXrf', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226164, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp', + }), + 'href': 'https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp', + 'is_local': False, + 'name': 'Let There Be Rain', + 'track_id': '4EL8MX1m73qecwy3ECBOSp', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:4EL8MX1m73qecwy3ECBOSp', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 9, 55, 804000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '42IHJll6dkoZg9lcat1Gb8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1', + 'width': 64, + }), + ]), + 'name': 'One', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:42IHJll6dkoZg9lcat1Gb8', + }), + 'artists': list([ + dict({ + 'artist_id': '1yfiDL3YUEJlQCgb5Pun6g', + 'name': 'Primal Fear', + 'uri': 'spotify:artist:1yfiDL3YUEJlQCgb5Pun6g', + }), + ]), + 'disc_number': 1, + 'duration_ms': 268360, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T', + }), + 'href': 'https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T', + 'is_local': False, + 'name': 'One', + 'track_id': '4kr0TJoXUl2FHU8WSBcB8T', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4kr0TJoXUl2FHU8WSBcB8T', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 5, 25, 871000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 17, 2, 6, 802000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 58, 45, 239000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 52, 8, 748000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 46, 27, 97000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5qsTZqfEj8tQ7IPAMw5z52', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725', + 'width': 64, + }), + ]), + 'name': 'Nvidia, Fuck Yeah!', + 'release_date': '2026-02-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5qsTZqfEj8tQ7IPAMw5z52', + }), + 'artists': list([ + dict({ + 'artist_id': '2mKV7sPvlBvzyPLeZhzT6q', + 'name': 'Skyebrows', + 'uri': 'spotify:artist:2mKV7sPvlBvzyPLeZhzT6q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191328, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc', + 'is_local': False, + 'name': 'Nvidia, Fuck Yeah!', + 'track_id': '4lPgN2pFIg6J0jnVdoursc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4lPgN2pFIg6J0jnVdoursc', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 42, 59, 879000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1LivdNtkmpzAK3BH4gMVd8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6rVZNRKhwhm7DYuJrMARb4', + 'name': 'Venus 5', + 'uri': 'spotify:artist:6rVZNRKhwhm7DYuJrMARb4', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273944e58629e9afa57f03375c0', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02944e58629e9afa57f03375c0', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851944e58629e9afa57f03375c0', + 'width': 64, + }), + ]), + 'name': 'March Of The Venus 5', + 'release_date': '2026-02-16', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:1LivdNtkmpzAK3BH4gMVd8', + }), + 'artists': list([ + dict({ + 'artist_id': '6rVZNRKhwhm7DYuJrMARb4', + 'name': 'Venus 5', + 'uri': 'spotify:artist:6rVZNRKhwhm7DYuJrMARb4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 236363, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0rcdT26GpaUiuvlubml3UC', + }), + 'href': 'https://api.spotify.com/v1/tracks/0rcdT26GpaUiuvlubml3UC', + 'is_local': False, + 'name': 'March Of The Venus 5', + 'track_id': '0rcdT26GpaUiuvlubml3UC', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0rcdT26GpaUiuvlubml3UC', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 39, 3, 152000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3yPZUsYXU6dW8IfsDfFxUc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220', + 'width': 64, + }), + ]), + 'name': 'Reborn To Light', + 'release_date': '2026-02-20', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:3yPZUsYXU6dW8IfsDfFxUc', + }), + 'artists': list([ + dict({ + 'artist_id': '44UN8gFHRwBnPWYaxEsNRV', + 'name': 'AEON GODS', + 'uri': 'spotify:artist:44UN8gFHRwBnPWYaxEsNRV', + }), + ]), + 'disc_number': 1, + 'duration_ms': 225164, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4PiYMb2KSVj6l0aj2t3ldI', + }), + 'href': 'https://api.spotify.com/v1/tracks/4PiYMb2KSVj6l0aj2t3ldI', + 'is_local': False, + 'name': 'Feather Or Heart', + 'track_id': '4PiYMb2KSVj6l0aj2t3ldI', + 'track_number': 7, + 'type': , + 'uri': 'spotify:track:4PiYMb2KSVj6l0aj2t3ldI', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 35, 17, 225000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '31cUZAVZ1R6pwgpFXjZ3Vo', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413', + 'width': 64, + }), + ]), + 'name': 'Power Train', + 'release_date': '2025-02-07', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo', + }), + 'artists': list([ + dict({ + 'artist_id': '52lkxAYfC9ypaPJ2EB22ki', + 'name': 'Majestica', + 'uri': 'spotify:artist:52lkxAYfC9ypaPJ2EB22ki', + }), + ]), + 'disc_number': 1, + 'duration_ms': 247333, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/17P6zEF92HDfAjRa4MHJgT', + }), + 'href': 'https://api.spotify.com/v1/tracks/17P6zEF92HDfAjRa4MHJgT', + 'is_local': False, + 'name': 'Victorious', + 'track_id': '17P6zEF92HDfAjRa4MHJgT', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:17P6zEF92HDfAjRa4MHJgT', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 28, 34, 631000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 341982, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC', + }), + 'href': 'https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC', + 'is_local': False, + 'name': 'Werewolves Of Armenia - Live in Oberhausen', + 'track_id': '5xrdC0inGkRHrNCBuqBshC', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:5xrdC0inGkRHrNCBuqBshC', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 23, 10, 705000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 254541, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa', + }), + 'href': 'https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa', + 'is_local': False, + 'name': 'We Drink Your Blood - Live in Oberhausen', + 'track_id': '05TkrrnzKlPYjNLDHXNDEa', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:05TkrrnzKlPYjNLDHXNDEa', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 18, 38, 297000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 320861, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN', + }), + 'href': 'https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN', + 'is_local': False, + 'name': 'Sanctified With Dynamite - Live in Oberhausen', + 'track_id': '3LjlgiECjVO4nHr8PB4jcN', + 'track_number': 7, + 'type': , + 'uri': 'spotify:track:3LjlgiECjVO4nHr8PB4jcN', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 13, 17, 513000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 321678, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm', + }), + 'href': 'https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm', + 'is_local': False, + 'name': 'Let There Be Night - Live in Oberhausen', + 'track_id': '3S4JWuySEykWr90GmYlJCm', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3S4JWuySEykWr90GmYlJCm', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 7, 56, 148000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 210306, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb', + }), + 'href': 'https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb', + 'is_local': False, + 'name': 'Blood For Blood - Live in Oberhausen', + 'track_id': '6CaQoHtJ8wEWakucGeXvPb', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:6CaQoHtJ8wEWakucGeXvPb', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 4, 25, 328000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 207505, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8', + }), + 'href': 'https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8', + 'is_local': False, + 'name': 'Army Of The Night - Live in Oberhausen', + 'track_id': '5PbsjG7nIPqZyB5BXzAfp8', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:5PbsjG7nIPqZyB5BXzAfp8', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 16, 0, 57, 660000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 225089, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6', + }), + 'href': 'https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6', + 'is_local': False, + 'name': 'Sainted By The Storm - Live in Oberhausen', + 'track_id': '2zEJBb3w3M9iwOUbZBnqi6', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:2zEJBb3w3M9iwOUbZBnqi6', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 15, 57, 12, 848000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 262502, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z', + }), + 'href': 'https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z', + 'is_local': False, + 'name': 'Where The Wild Wolves Have Gone - Live in Oberhausen', + 'track_id': '680LAwbwucfKwdFD0ckH6Z', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:680LAwbwucfKwdFD0ckH6Z', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 15, 1, 41, 61000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 278426, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM', + }), + 'href': 'https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM', + 'is_local': False, + 'name': 'Fire & Forgive - Live in Oberhausen', + 'track_id': '2fpG2Ljj8uOfUkWeMq6bCM', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2fpG2Ljj8uOfUkWeMq6bCM', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 57, 4, 121000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 238926, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5', + }), + 'href': 'https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5', + 'is_local': False, + 'name': "Demons Are A Girl's Best Friend - Live in Oberhausen", + 'track_id': '6XIslQQvDKW05iHpvKNeN5', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:6XIslQQvDKW05iHpvKNeN5', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 53, 4, 85000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 257618, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl', + }), + 'href': 'https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl', + 'is_local': False, + 'name': 'Stossgebet - Live in Oberhausen', + 'track_id': '1T0Q02fjBgWF5unjyLdvCl', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:1T0Q02fjBgWF5unjyLdvCl', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 48, 45, 497000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 215831, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093', + }), + 'href': 'https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093', + 'is_local': False, + 'name': 'Beast Of Gevaudan - Live in Oberhausen', + 'track_id': '1UeAy4qXjU2F1Te3LLi093', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:1UeAy4qXjU2F1Te3LLi093', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 45, 10, 692000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 341037, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk', + }), + 'href': 'https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk', + 'is_local': False, + 'name': 'Armata Strigoi - Live in Oberhausen', + 'track_id': '4nXgDCakmY9iyrhc9HBSMk', + 'track_number': 7, + 'type': , + 'uri': 'spotify:track:4nXgDCakmY9iyrhc9HBSMk', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 39, 28, 572000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 258749, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v', + }), + 'href': 'https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v', + 'is_local': False, + 'name': 'Dancing With The Dead - Live in Oberhausen', + 'track_id': '4KoPXvj6k4AK4vXh5Q5g7v', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:4KoPXvj6k4AK4vXh5Q5g7v', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 35, 10, 21000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 253902, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1', + }), + 'href': 'https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1', + 'is_local': False, + 'name': 'Amen & Attack - Live in Oberhausen', + 'track_id': '0ec5OZMe4ScfAD72s8mVM1', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:0ec5OZMe4ScfAD72s8mVM1', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 30, 55, 846000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 248570, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf', + }), + 'href': 'https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf', + 'is_local': False, + 'name': 'Cardinal Sin - Live in Oberhausen', + 'track_id': '51Y1Kt48noq3XNkeI5dFxf', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:51Y1Kt48noq3XNkeI5dFxf', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 26, 47, 473000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 243397, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q', + }), + 'href': 'https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q', + 'is_local': False, + 'name': 'Incense & Iron - Live in Oberhausen', + 'track_id': '5psVbswivNzLwqGgUeWP4Q', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:5psVbswivNzLwqGgUeWP4Q', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 22, 43, 956000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 220808, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N', + }), + 'href': 'https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N', + 'is_local': False, + 'name': 'Faster Than the Flame - Live in Oberhausen', + 'track_id': '71AgXarsHEpHOARRho6A6N', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:71AgXarsHEpHOARRho6A6N', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 19, 2, 936000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 102166, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ', + 'is_local': False, + 'name': 'Intro - Monumental Mass Theme - Live in Oberhausen', + 'track_id': '4L1GfsUwq1xswmKAEZgVLJ', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4L1GfsUwq1xswmKAEZgVLJ', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 17, 20, 608000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 413253, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS', + }), + 'href': 'https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS', + 'is_local': False, + 'name': 'Werewolves of Armenia - Live At Olympiahalle', + 'track_id': '07tRsrNFa3LpSUVcHDTBmS', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:07tRsrNFa3LpSUVcHDTBmS', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 10, 29, 349000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 256980, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx', + }), + 'href': 'https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx', + 'is_local': False, + 'name': 'We Drink Your Blood - Live At Olympiahalle', + 'track_id': '2x4iJOct9B6ylf6urCbgyx', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:2x4iJOct9B6ylf6urCbgyx', + }), + }), + dict({ + 'context': dict({ + 'context_type': , + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm', + }), + 'href': 'https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm', + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'played_at': datetime.datetime(2026, 2, 25, 14, 6, 10, 58000, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 407493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea', + }), + 'href': 'https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea', + 'is_local': False, + 'name': 'Sanctified With Dynamite - Live At Olympiahalle', + 'track_id': '18ps73idU6ezwEzvAHNRea', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:18ps73idU6ezwEzvAHNRea', + }), + }), + ]) +# --- +# name: test_get_saved_albums + list([ + dict({ + 'added_at': datetime.datetime(2026, 2, 12, 23, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0sYsti82VA37zLESxDYVsm', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77', + 'width': 64, + }), + ]), + 'name': 'Wildlive (Live at Olympiahalle) [Deluxe Version]', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 39, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 83427, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3VzB3NVfTrFrXUvB2Gc4KO', + }), + 'href': 'https://api.spotify.com/v1/tracks/3VzB3NVfTrFrXUvB2Gc4KO', + 'is_local': False, + 'name': 'Intro - Monumental Mass Theme - Live At Olympiahalle', + 'track_id': '3VzB3NVfTrFrXUvB2Gc4KO', + 'track_number': 1, + 'uri': 'spotify:track:3VzB3NVfTrFrXUvB2Gc4KO', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 208422, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2imCw1cnnx5SJhHnfxl0IR', + }), + 'href': 'https://api.spotify.com/v1/tracks/2imCw1cnnx5SJhHnfxl0IR', + 'is_local': False, + 'name': 'Bless´em With the Blade - Live At Olympiahalle', + 'track_id': '2imCw1cnnx5SJhHnfxl0IR', + 'track_number': 2, + 'uri': 'spotify:track:2imCw1cnnx5SJhHnfxl0IR', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246097, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2ybxvxOs3bc6w97Hb1su25', + }), + 'href': 'https://api.spotify.com/v1/tracks/2ybxvxOs3bc6w97Hb1su25', + 'is_local': False, + 'name': 'Incense & Iron - Live At Olympiahalle', + 'track_id': '2ybxvxOs3bc6w97Hb1su25', + 'track_number': 3, + 'uri': 'spotify:track:2ybxvxOs3bc6w97Hb1su25', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219129, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5SUrST3ZvTiOqbqsmbLxWz', + }), + 'href': 'https://api.spotify.com/v1/tracks/5SUrST3ZvTiOqbqsmbLxWz', + 'is_local': False, + 'name': 'Army of the Night - Live At Olympiahalle', + 'track_id': '5SUrST3ZvTiOqbqsmbLxWz', + 'track_number': 4, + 'uri': 'spotify:track:5SUrST3ZvTiOqbqsmbLxWz', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 200888, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6OFTaJVq3DwCOrbJ9vltPa', + }), + 'href': 'https://api.spotify.com/v1/tracks/6OFTaJVq3DwCOrbJ9vltPa', + 'is_local': False, + 'name': 'Sinners of the Seven Seas - Live At Olympiahalle', + 'track_id': '6OFTaJVq3DwCOrbJ9vltPa', + 'track_number': 5, + 'uri': 'spotify:track:6OFTaJVq3DwCOrbJ9vltPa', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 250496, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1X2s7jaBKer3rh5skUDVqi', + }), + 'href': 'https://api.spotify.com/v1/tracks/1X2s7jaBKer3rh5skUDVqi', + 'is_local': False, + 'name': 'Amen & Attack - Live At Olympiahalle', + 'track_id': '1X2s7jaBKer3rh5skUDVqi', + 'track_number': 6, + 'uri': 'spotify:track:1X2s7jaBKer3rh5skUDVqi', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 250959, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/211d8QaBJ3ptMIQ9NDjs43', + }), + 'href': 'https://api.spotify.com/v1/tracks/211d8QaBJ3ptMIQ9NDjs43', + 'is_local': False, + 'name': 'Dancing With the Dead - Live At Olympiahalle', + 'track_id': '211d8QaBJ3ptMIQ9NDjs43', + 'track_number': 7, + 'uri': 'spotify:track:211d8QaBJ3ptMIQ9NDjs43', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 395090, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6gW1rK5HmWtTf1wU3dqmAs', + }), + 'href': 'https://api.spotify.com/v1/tracks/6gW1rK5HmWtTf1wU3dqmAs', + 'is_local': False, + 'name': 'Armata Strigoi - Live At Olympiahalle', + 'track_id': '6gW1rK5HmWtTf1wU3dqmAs', + 'track_number': 8, + 'uri': 'spotify:track:6gW1rK5HmWtTf1wU3dqmAs', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 386157, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2OdhUgpqkuj5vAo7gbs07r', + }), + 'href': 'https://api.spotify.com/v1/tracks/2OdhUgpqkuj5vAo7gbs07r', + 'is_local': False, + 'name': '1589 - Live At Olympiahalle', + 'track_id': '2OdhUgpqkuj5vAo7gbs07r', + 'track_number': 9, + 'uri': 'spotify:track:2OdhUgpqkuj5vAo7gbs07r', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 1, + 'duration_ms': 328431, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5RpfDfyTZK8qt3Z6nKw5Sn', + }), + 'href': 'https://api.spotify.com/v1/tracks/5RpfDfyTZK8qt3Z6nKw5Sn', + 'is_local': False, + 'name': "Demons Are A Girl's Best Friend - Live At Olympiahalle", + 'track_id': '5RpfDfyTZK8qt3Z6nKw5Sn', + 'track_number': 10, + 'uri': 'spotify:track:5RpfDfyTZK8qt3Z6nKw5Sn', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 245176, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/06xAvw7RiY2QIMdha4MXZs', + }), + 'href': 'https://api.spotify.com/v1/tracks/06xAvw7RiY2QIMdha4MXZs', + 'is_local': False, + 'name': 'Stossgebet - Live At Olympiahalle', + 'track_id': '06xAvw7RiY2QIMdha4MXZs', + 'track_number': 1, + 'uri': 'spotify:track:06xAvw7RiY2QIMdha4MXZs', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 320081, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/78684m1lvJmX0fGtKVBz5t', + }), + 'href': 'https://api.spotify.com/v1/tracks/78684m1lvJmX0fGtKVBz5t', + 'is_local': False, + 'name': 'Fire & Forgive - Live At Olympiahalle', + 'track_id': '78684m1lvJmX0fGtKVBz5t', + 'track_number': 2, + 'uri': 'spotify:track:78684m1lvJmX0fGtKVBz5t', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 202024, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3jC6F9Q2cZptUxiw7OKqlU', + }), + 'href': 'https://api.spotify.com/v1/tracks/3jC6F9Q2cZptUxiw7OKqlU', + 'is_local': False, + 'name': "We Don't Wanna Be No Saints - Live At Olympiahalle", + 'track_id': '3jC6F9Q2cZptUxiw7OKqlU', + 'track_number': 3, + 'uri': 'spotify:track:3jC6F9Q2cZptUxiw7OKqlU', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 278407, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2CGBOwADdYdmrCf5RyMDm7', + }), + 'href': 'https://api.spotify.com/v1/tracks/2CGBOwADdYdmrCf5RyMDm7', + 'is_local': False, + 'name': 'Alive or Undead - Live At Olympiahalle', + 'track_id': '2CGBOwADdYdmrCf5RyMDm7', + 'track_number': 4, + 'uri': 'spotify:track:2CGBOwADdYdmrCf5RyMDm7', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 217362, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/00iwTfqhPIwB1UD0BsYTTr', + }), + 'href': 'https://api.spotify.com/v1/tracks/00iwTfqhPIwB1UD0BsYTTr', + 'is_local': False, + 'name': 'Heretic Hunters - Live At Olympiahalle', + 'track_id': '00iwTfqhPIwB1UD0BsYTTr', + 'track_number': 5, + 'uri': 'spotify:track:00iwTfqhPIwB1UD0BsYTTr', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 234453, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7uQDoCpxcQ2j8ZoQDfhySL', + }), + 'href': 'https://api.spotify.com/v1/tracks/7uQDoCpxcQ2j8ZoQDfhySL', + 'is_local': False, + 'name': 'Sainted by the Storm - Live At Olympiahalle', + 'track_id': '7uQDoCpxcQ2j8ZoQDfhySL', + 'track_number': 6, + 'uri': 'spotify:track:7uQDoCpxcQ2j8ZoQDfhySL', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 240948, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5tW5uVk6WrGkfbojR4CthL', + }), + 'href': 'https://api.spotify.com/v1/tracks/5tW5uVk6WrGkfbojR4CthL', + 'is_local': False, + 'name': 'Blood for Blood (Faoladh) - Live At Olympiahalle', + 'track_id': '5tW5uVk6WrGkfbojR4CthL', + 'track_number': 7, + 'uri': 'spotify:track:5tW5uVk6WrGkfbojR4CthL', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 407493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea', + }), + 'href': 'https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea', + 'is_local': False, + 'name': 'Sanctified With Dynamite - Live At Olympiahalle', + 'track_id': '18ps73idU6ezwEzvAHNRea', + 'track_number': 8, + 'uri': 'spotify:track:18ps73idU6ezwEzvAHNRea', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 256980, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx', + }), + 'href': 'https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx', + 'is_local': False, + 'name': 'We Drink Your Blood - Live At Olympiahalle', + 'track_id': '2x4iJOct9B6ylf6urCbgyx', + 'track_number': 9, + 'uri': 'spotify:track:2x4iJOct9B6ylf6urCbgyx', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 2, + 'duration_ms': 413253, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS', + }), + 'href': 'https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS', + 'is_local': False, + 'name': 'Werewolves of Armenia - Live At Olympiahalle', + 'track_id': '07tRsrNFa3LpSUVcHDTBmS', + 'track_number': 10, + 'uri': 'spotify:track:07tRsrNFa3LpSUVcHDTBmS', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 102166, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ', + 'is_local': False, + 'name': 'Intro - Monumental Mass Theme - Live in Oberhausen', + 'track_id': '4L1GfsUwq1xswmKAEZgVLJ', + 'track_number': 1, + 'uri': 'spotify:track:4L1GfsUwq1xswmKAEZgVLJ', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 220808, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N', + }), + 'href': 'https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N', + 'is_local': False, + 'name': 'Faster Than the Flame - Live in Oberhausen', + 'track_id': '71AgXarsHEpHOARRho6A6N', + 'track_number': 2, + 'uri': 'spotify:track:71AgXarsHEpHOARRho6A6N', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 243397, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q', + }), + 'href': 'https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q', + 'is_local': False, + 'name': 'Incense & Iron - Live in Oberhausen', + 'track_id': '5psVbswivNzLwqGgUeWP4Q', + 'track_number': 3, + 'uri': 'spotify:track:5psVbswivNzLwqGgUeWP4Q', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 248570, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf', + }), + 'href': 'https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf', + 'is_local': False, + 'name': 'Cardinal Sin - Live in Oberhausen', + 'track_id': '51Y1Kt48noq3XNkeI5dFxf', + 'track_number': 4, + 'uri': 'spotify:track:51Y1Kt48noq3XNkeI5dFxf', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 253902, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1', + }), + 'href': 'https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1', + 'is_local': False, + 'name': 'Amen & Attack - Live in Oberhausen', + 'track_id': '0ec5OZMe4ScfAD72s8mVM1', + 'track_number': 5, + 'uri': 'spotify:track:0ec5OZMe4ScfAD72s8mVM1', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 258749, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v', + }), + 'href': 'https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v', + 'is_local': False, + 'name': 'Dancing With The Dead - Live in Oberhausen', + 'track_id': '4KoPXvj6k4AK4vXh5Q5g7v', + 'track_number': 6, + 'uri': 'spotify:track:4KoPXvj6k4AK4vXh5Q5g7v', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 341037, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk', + }), + 'href': 'https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk', + 'is_local': False, + 'name': 'Armata Strigoi - Live in Oberhausen', + 'track_id': '4nXgDCakmY9iyrhc9HBSMk', + 'track_number': 7, + 'uri': 'spotify:track:4nXgDCakmY9iyrhc9HBSMk', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 215831, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093', + }), + 'href': 'https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093', + 'is_local': False, + 'name': 'Beast Of Gevaudan - Live in Oberhausen', + 'track_id': '1UeAy4qXjU2F1Te3LLi093', + 'track_number': 8, + 'uri': 'spotify:track:1UeAy4qXjU2F1Te3LLi093', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 257618, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl', + }), + 'href': 'https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl', + 'is_local': False, + 'name': 'Stossgebet - Live in Oberhausen', + 'track_id': '1T0Q02fjBgWF5unjyLdvCl', + 'track_number': 9, + 'uri': 'spotify:track:1T0Q02fjBgWF5unjyLdvCl', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 3, + 'duration_ms': 238926, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5', + }), + 'href': 'https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5', + 'is_local': False, + 'name': "Demons Are A Girl's Best Friend - Live in Oberhausen", + 'track_id': '6XIslQQvDKW05iHpvKNeN5', + 'track_number': 10, + 'uri': 'spotify:track:6XIslQQvDKW05iHpvKNeN5', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 278426, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM', + }), + 'href': 'https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM', + 'is_local': False, + 'name': 'Fire & Forgive - Live in Oberhausen', + 'track_id': '2fpG2Ljj8uOfUkWeMq6bCM', + 'track_number': 1, + 'uri': 'spotify:track:2fpG2Ljj8uOfUkWeMq6bCM', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 262502, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z', + }), + 'href': 'https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z', + 'is_local': False, + 'name': 'Where The Wild Wolves Have Gone - Live in Oberhausen', + 'track_id': '680LAwbwucfKwdFD0ckH6Z', + 'track_number': 2, + 'uri': 'spotify:track:680LAwbwucfKwdFD0ckH6Z', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 225089, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6', + }), + 'href': 'https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6', + 'is_local': False, + 'name': 'Sainted By The Storm - Live in Oberhausen', + 'track_id': '2zEJBb3w3M9iwOUbZBnqi6', + 'track_number': 3, + 'uri': 'spotify:track:2zEJBb3w3M9iwOUbZBnqi6', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 207505, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8', + }), + 'href': 'https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8', + 'is_local': False, + 'name': 'Army Of The Night - Live in Oberhausen', + 'track_id': '5PbsjG7nIPqZyB5BXzAfp8', + 'track_number': 4, + 'uri': 'spotify:track:5PbsjG7nIPqZyB5BXzAfp8', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 210306, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb', + }), + 'href': 'https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb', + 'is_local': False, + 'name': 'Blood For Blood - Live in Oberhausen', + 'track_id': '6CaQoHtJ8wEWakucGeXvPb', + 'track_number': 5, + 'uri': 'spotify:track:6CaQoHtJ8wEWakucGeXvPb', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 321678, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm', + }), + 'href': 'https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm', + 'is_local': False, + 'name': 'Let There Be Night - Live in Oberhausen', + 'track_id': '3S4JWuySEykWr90GmYlJCm', + 'track_number': 6, + 'uri': 'spotify:track:3S4JWuySEykWr90GmYlJCm', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 320861, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN', + }), + 'href': 'https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN', + 'is_local': False, + 'name': 'Sanctified With Dynamite - Live in Oberhausen', + 'track_id': '3LjlgiECjVO4nHr8PB4jcN', + 'track_number': 7, + 'uri': 'spotify:track:3LjlgiECjVO4nHr8PB4jcN', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 254541, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa', + }), + 'href': 'https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa', + 'is_local': False, + 'name': 'We Drink Your Blood - Live in Oberhausen', + 'track_id': '05TkrrnzKlPYjNLDHXNDEa', + 'track_number': 8, + 'uri': 'spotify:track:05TkrrnzKlPYjNLDHXNDEa', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + ]), + 'disc_number': 4, + 'duration_ms': 341982, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC', + }), + 'href': 'https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC', + 'is_local': False, + 'name': 'Werewolves Of Armenia - Live in Oberhausen', + 'track_id': '5xrdC0inGkRHrNCBuqBshC', + 'track_number': 9, + 'uri': 'spotify:track:5xrdC0inGkRHrNCBuqBshC', + }), + ]), + 'uri': 'spotify:album:0sYsti82VA37zLESxDYVsm', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 9, 19, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '57MSBg5pBQZH5bfLVDmeuP', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27314b5583615b195556a3882ac', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0214b5583615b195556a3882ac', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485114b5583615b195556a3882ac', + 'width': 64, + }), + ]), + 'name': 'In Waves', + 'release_date': '2024-09-20', + 'release_date_precision': , + 'total_tracks': 12, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 135835, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p', + }), + 'href': 'https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p', + 'is_local': False, + 'name': 'Wanna', + 'track_id': '7uLBdV19ad7kAjU2oB1l6p', + 'track_number': 1, + 'uri': 'spotify:track:7uLBdV19ad7kAjU2oB1l6p', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 240580, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC', + }), + 'href': 'https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC', + 'is_local': False, + 'name': 'Treat Each Other Right', + 'track_id': '3pjX4hC8adabkXGu3X9GTC', + 'track_number': 2, + 'uri': 'spotify:track:3pjX4hC8adabkXGu3X9GTC', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', + 'name': 'Romy', + 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + }), + dict({ + 'artist_id': '4KDu9uqzqseVCpQXMa8Pvm', + 'name': 'Oliver Sim', + 'uri': 'spotify:artist:4KDu9uqzqseVCpQXMa8Pvm', + }), + dict({ + 'artist_id': '3iOvXCl6edW5Um0fXEBRXy', + 'name': 'The xx', + 'uri': 'spotify:artist:3iOvXCl6edW5Um0fXEBRXy', + }), + ]), + 'disc_number': 1, + 'duration_ms': 208334, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD', + }), + 'href': 'https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD', + 'is_local': False, + 'name': 'Waited All Night', + 'track_id': '4gBniy3TwR9o2JDBx48TlD', + 'track_number': 3, + 'uri': 'spotify:track:4gBniy3TwR9o2JDBx48TlD', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '0XfQBWgzisaS9ltDV9bXAS', + 'name': 'Honey Dijon', + 'uri': 'spotify:artist:0XfQBWgzisaS9ltDV9bXAS', + }), + ]), + 'disc_number': 1, + 'duration_ms': 222315, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz', + }), + 'href': 'https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz', + 'is_local': False, + 'name': 'Baddy On The Floor', + 'track_id': '79gWc6dZ1dXH7rC67DTunz', + 'track_number': 4, + 'uri': 'spotify:track:79gWc6dZ1dXH7rC67DTunz', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '0fEfMW5bypHZ0A8eLnhwj5', + 'name': 'Kelsey Lu', + 'uri': 'spotify:artist:0fEfMW5bypHZ0A8eLnhwj5', + }), + dict({ + 'artist_id': '0FNfiTQCR5o3ounOlWzm1d', + 'name': 'John Glacier', + 'uri': 'spotify:artist:0FNfiTQCR5o3ounOlWzm1d', + }), + dict({ + 'artist_id': '1R84VlXnFFULOsWWV8IrCQ', + 'name': 'Panda Bear', + 'uri': 'spotify:artist:1R84VlXnFFULOsWWV8IrCQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212339, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2', + }), + 'href': 'https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2', + 'is_local': False, + 'name': 'Dafodil', + 'track_id': '1gRMKwvMvp6LcQVMpMXQg2', + 'track_number': 5, + 'uri': 'spotify:track:1gRMKwvMvp6LcQVMpMXQg2', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 205638, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto', + }), + 'href': 'https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto', + 'is_local': False, + 'name': 'Still Summer', + 'track_id': '27D9YN3uHPD3PTXvzNtbto', + 'track_number': 6, + 'uri': 'spotify:track:27D9YN3uHPD3PTXvzNtbto', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '6UE7nl9mha6s8z0wFQFIZ2', + 'name': 'Robyn', + 'uri': 'spotify:artist:6UE7nl9mha6s8z0wFQFIZ2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 202648, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ', + 'is_local': False, + 'name': 'Life', + 'track_id': '0pMj03SiaZ9bkFlXQWNhtZ', + 'track_number': 7, + 'uri': 'spotify:track:0pMj03SiaZ9bkFlXQWNhtZ', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 222365, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5', + }), + 'href': 'https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5', + 'is_local': False, + 'name': 'The Feeling I Get From You', + 'track_id': '7gb0pekqHQYTGo6NWLBvT5', + 'track_number': 8, + 'uri': 'spotify:track:7gb0pekqHQYTGo6NWLBvT5', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 376918, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6', + }), + 'href': 'https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6', + 'is_local': False, + 'name': 'Breather', + 'track_id': '6pOzbdJKEr4hvXkX7VkfY6', + 'track_number': 9, + 'uri': 'spotify:track:6pOzbdJKEr4hvXkX7VkfY6', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '3C8RpaI3Go0yFF9whvKoED', + 'name': 'The Avalanches', + 'uri': 'spotify:artist:3C8RpaI3Go0yFF9whvKoED', + }), + ]), + 'disc_number': 1, + 'duration_ms': 254142, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu', + }), + 'href': 'https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu', + 'is_local': False, + 'name': 'All You Children', + 'track_id': '3cfgisz6DhZmooQk08P4Eu', + 'track_number': 10, + 'uri': 'spotify:track:3cfgisz6DhZmooQk08P4Eu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 71680, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN', + }), + 'href': 'https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN', + 'is_local': False, + 'name': 'Every Single Weekend - Interlude', + 'track_id': '1wpcJ6TCrKpH6KdBmrp9yN', + 'track_number': 11, + 'uri': 'spotify:track:1wpcJ6TCrKpH6KdBmrp9yN', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '2Q4FR4Ss0mh6EvbiQBHEOU', + 'name': 'Oona Doherty', + 'uri': 'spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU', + }), + ]), + 'disc_number': 1, + 'duration_ms': 337414, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI', + }), + 'href': 'https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI', + 'is_local': False, + 'name': 'Falling Together', + 'track_id': '08Jhu8OZ6gCIGWQn6vP3uI', + 'track_number': 12, + 'uri': 'spotify:track:08Jhu8OZ6gCIGWQn6vP3uI', + }), + ]), + 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 10, 16, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1jjx7U3tayhJTytJVBj0WY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74', + 'width': 64, + }), + ]), + 'name': 'Legends', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 11, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 294000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0MxqiUhIbMwIEOYTgdNbxb', + }), + 'href': 'https://api.spotify.com/v1/tracks/0MxqiUhIbMwIEOYTgdNbxb', + 'is_local': False, + 'name': 'Templars', + 'track_id': '0MxqiUhIbMwIEOYTgdNbxb', + 'track_number': 1, + 'uri': 'spotify:track:0MxqiUhIbMwIEOYTgdNbxb', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 223000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/275EXSVi2oyj4S5SPMo9qx', + }), + 'href': 'https://api.spotify.com/v1/tracks/275EXSVi2oyj4S5SPMo9qx', + 'is_local': False, + 'name': 'Hordes of Khan', + 'track_id': '275EXSVi2oyj4S5SPMo9qx', + 'track_number': 2, + 'uri': 'spotify:track:275EXSVi2oyj4S5SPMo9qx', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/34EZIGTN4CqPd2CqAfEIzz', + }), + 'href': 'https://api.spotify.com/v1/tracks/34EZIGTN4CqPd2CqAfEIzz', + 'is_local': False, + 'name': 'A Tiger Among Dragons', + 'track_id': '34EZIGTN4CqPd2CqAfEIzz', + 'track_number': 3, + 'uri': 'spotify:track:34EZIGTN4CqPd2CqAfEIzz', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 209000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6WyfybAgLz1EceoumvVSun', + }), + 'href': 'https://api.spotify.com/v1/tracks/6WyfybAgLz1EceoumvVSun', + 'is_local': False, + 'name': 'Crossing the Rubicon', + 'track_id': '6WyfybAgLz1EceoumvVSun', + 'track_number': 4, + 'uri': 'spotify:track:6WyfybAgLz1EceoumvVSun', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 255973, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM', + }), + 'href': 'https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM', + 'is_local': False, + 'name': 'I, Emperor', + 'track_id': '3CZDkpmq245kzvCe44P2hM', + 'track_number': 5, + 'uri': 'spotify:track:3CZDkpmq245kzvCe44P2hM', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 197000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1t1g8mx2GQLX2UUk5azWAu', + }), + 'href': 'https://api.spotify.com/v1/tracks/1t1g8mx2GQLX2UUk5azWAu', + 'is_local': False, + 'name': 'Maid of Steel', + 'track_id': '1t1g8mx2GQLX2UUk5azWAu', + 'track_number': 6, + 'uri': 'spotify:track:1t1g8mx2GQLX2UUk5azWAu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 284413, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/170Q9dEUIPy8imNb9p5DYu', + }), + 'href': 'https://api.spotify.com/v1/tracks/170Q9dEUIPy8imNb9p5DYu', + 'is_local': False, + 'name': 'Impaler', + 'track_id': '170Q9dEUIPy8imNb9p5DYu', + 'track_number': 7, + 'uri': 'spotify:track:170Q9dEUIPy8imNb9p5DYu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 252000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4upSkMUkdiXaSz3sQKy34W', + }), + 'href': 'https://api.spotify.com/v1/tracks/4upSkMUkdiXaSz3sQKy34W', + 'is_local': False, + 'name': 'Lightning at the Gates', + 'track_id': '4upSkMUkdiXaSz3sQKy34W', + 'track_number': 8, + 'uri': 'spotify:track:4upSkMUkdiXaSz3sQKy34W', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 235000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2mz3lcK6rYGTlNUtkgZm4f', + }), + 'href': 'https://api.spotify.com/v1/tracks/2mz3lcK6rYGTlNUtkgZm4f', + 'is_local': False, + 'name': 'The Duelist', + 'track_id': '2mz3lcK6rYGTlNUtkgZm4f', + 'track_number': 9, + 'uri': 'spotify:track:2mz3lcK6rYGTlNUtkgZm4f', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 339213, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2BCSABdmxlLx0hJwuvcRBj', + }), + 'href': 'https://api.spotify.com/v1/tracks/2BCSABdmxlLx0hJwuvcRBj', + 'is_local': False, + 'name': 'The Cycle of Songs', + 'track_id': '2BCSABdmxlLx0hJwuvcRBj', + 'track_number': 10, + 'uri': 'spotify:track:2BCSABdmxlLx0hJwuvcRBj', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + ]), + 'disc_number': 1, + 'duration_ms': 207733, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7xrNu3NxSQ0zAnB8ZSqUgq', + }), + 'href': 'https://api.spotify.com/v1/tracks/7xrNu3NxSQ0zAnB8ZSqUgq', + 'is_local': False, + 'name': 'Till Seger', + 'track_id': '7xrNu3NxSQ0zAnB8ZSqUgq', + 'track_number': 11, + 'uri': 'spotify:track:7xrNu3NxSQ0zAnB8ZSqUgq', + }), + ]), + 'uri': 'spotify:album:1jjx7U3tayhJTytJVBj0WY', + }), + }), + dict({ + 'added_at': datetime.datetime(2016, 12, 19, 7, 45, 50, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '6TaTItT907XHlVx7axCGeS', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273c880c3fce14935c405c7503e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02c880c3fce14935c405c7503e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c880c3fce14935c405c7503e', + 'width': 64, + }), + ]), + 'name': 'Into the Night World', + 'release_date': '2016-12-16', + 'release_date_precision': , + 'total_tracks': 10, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226855, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3', + }), + 'href': 'https://api.spotify.com/v1/tracks/6z0imbQJzYJyJFbvrHszJk', + 'is_local': False, + 'name': 'My Dragons Will Decimate', + 'track_id': '6z0imbQJzYJyJFbvrHszJk', + 'track_number': 1, + 'uri': 'spotify:track:6z0imbQJzYJyJFbvrHszJk', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 201248, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/3x1kSnCnLbF2fWZHsZivO5', + 'is_local': False, + 'name': 'Into the Night World', + 'track_id': '3x1kSnCnLbF2fWZHsZivO5', + 'track_number': 2, + 'uri': 'spotify:track:3x1kSnCnLbF2fWZHsZivO5', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 256806, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8', + }), + 'href': 'https://api.spotify.com/v1/tracks/5GLkchRnw7kp0yqL7kTti2', + 'is_local': False, + 'name': 'Twe27ySeven', + 'track_id': '5GLkchRnw7kp0yqL7kTti2', + 'track_number': 3, + 'uri': 'spotify:track:5GLkchRnw7kp0yqL7kTti2', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 340771, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/7LHDs3o9bHYjTJa7srPNUC', + 'is_local': False, + 'name': 'Remember Me', + 'track_id': '7LHDs3o9bHYjTJa7srPNUC', + 'track_number': 4, + 'uri': 'spotify:track:7LHDs3o9bHYjTJa7srPNUC', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212191, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe', + }), + 'href': 'https://api.spotify.com/v1/tracks/7LTkzzkE3ddGgyOQI8ukkq', + 'is_local': False, + 'name': 'Space Boat', + 'track_id': '7LTkzzkE3ddGgyOQI8ukkq', + 'track_number': 5, + 'uri': 'spotify:track:7LTkzzkE3ddGgyOQI8ukkq', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212892, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ', + }), + 'href': 'https://api.spotify.com/v1/tracks/2ZTbF8kWYHilM7GnZ4sgKt', + 'is_local': False, + 'name': 'Stars Had to Die so That You Could Live', + 'track_id': '2ZTbF8kWYHilM7GnZ4sgKt', + 'track_number': 6, + 'uri': 'spotify:track:2ZTbF8kWYHilM7GnZ4sgKt', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 290405, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO', + }), + 'href': 'https://api.spotify.com/v1/tracks/33Ms7ZnkfyTXzP38gK9FO3', + 'is_local': False, + 'name': 'Beast Engine', + 'track_id': '33Ms7ZnkfyTXzP38gK9FO3', + 'track_number': 7, + 'uri': 'spotify:track:33Ms7ZnkfyTXzP38gK9FO3', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 206633, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2', + }), + 'href': 'https://api.spotify.com/v1/tracks/7xmfFvYqN4QyoFmtLZN6Nc', + 'is_local': False, + 'name': 'Dream Sequence', + 'track_id': '7xmfFvYqN4QyoFmtLZN6Nc', + 'track_number': 8, + 'uri': 'spotify:track:7xmfFvYqN4QyoFmtLZN6Nc', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 158200, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu', + }), + 'href': 'https://api.spotify.com/v1/tracks/1zlbUrfRzrdEt6eSO2DKug', + 'is_local': False, + 'name': 'Sid Metal Legacy', + 'track_id': '1zlbUrfRzrdEt6eSO2DKug', + 'track_number': 9, + 'uri': 'spotify:track:1zlbUrfRzrdEt6eSO2DKug', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 288591, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/1i8m8MJa894P53JRTlgtom', + 'is_local': False, + 'name': 'The Last March of the Undead', + 'track_id': '1i8m8MJa894P53JRTlgtom', + 'track_number': 10, + 'uri': 'spotify:track:1i8m8MJa894P53JRTlgtom', + }), + ]), + 'uri': 'spotify:album:6TaTItT907XHlVx7axCGeS', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 12, 11, 23, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1Lhv9Fe2KRk0NW3I14HsVY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e4808df0cc63188f7a1dc2d2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e4808df0cc63188f7a1dc2d2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e4808df0cc63188f7a1dc2d2', + 'width': 64, + }), + ]), + 'name': 'USB', + 'release_date': '2025-12-12', + 'release_date_precision': , + 'total_tracks': 34, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '7whpXJXNCFQ1iJeL4f3Fam', + 'name': 'Wallfacer', + 'uri': 'spotify:artist:7whpXJXNCFQ1iJeL4f3Fam', + }), + ]), + 'disc_number': 1, + 'duration_ms': 197999, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es', + }), + 'href': 'https://api.spotify.com/v1/tracks/3rTF0gzMSYSmeRkSzTpO7B', + 'is_local': False, + 'name': 'I Luv U', + 'track_id': '3rTF0gzMSYSmeRkSzTpO7B', + 'track_number': 1, + 'uri': 'spotify:track:3rTF0gzMSYSmeRkSzTpO7B', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5FxsPS1K61fHEVB3FNZw6Y', + 'name': 'Blanco', + 'uri': 'spotify:artist:5FxsPS1K61fHEVB3FNZw6Y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 292071, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL', + }), + 'href': 'https://api.spotify.com/v1/tracks/1jZ08JOmqiwOuZ1Hr54oQm', + 'is_local': False, + 'name': 'solo', + 'track_id': '1jZ08JOmqiwOuZ1Hr54oQm', + 'track_number': 2, + 'uri': 'spotify:track:1jZ08JOmqiwOuZ1Hr54oQm', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6veh5zbFpm31XsPdjBgPER', + 'name': 'BIA', + 'uri': 'spotify:artist:6veh5zbFpm31XsPdjBgPER', + }), + ]), + 'disc_number': 1, + 'duration_ms': 232727, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN', + }), + 'href': 'https://api.spotify.com/v1/tracks/0dxcj2yS97TlvnNvEHL8cl', + 'is_local': False, + 'name': 'ICEY..', + 'track_id': '0dxcj2yS97TlvnNvEHL8cl', + 'track_number': 3, + 'uri': 'spotify:track:0dxcj2yS97TlvnNvEHL8cl', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6veh5zbFpm31XsPdjBgPER', + 'name': 'BIA', + 'uri': 'spotify:artist:6veh5zbFpm31XsPdjBgPER', + }), + ]), + 'disc_number': 1, + 'duration_ms': 171764, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA', + }), + 'href': 'https://api.spotify.com/v1/tracks/7wfz2GOmuDxKztNfTfXQvu', + 'is_local': False, + 'name': '..FEISTY', + 'track_id': '7wfz2GOmuDxKztNfTfXQvu', + 'track_number': 4, + 'uri': 'spotify:track:7wfz2GOmuDxKztNfTfXQvu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1GuqTQbuixFHD6eBkFwVcb', + 'name': 'Sammy Virji', + 'uri': 'spotify:artist:1GuqTQbuixFHD6eBkFwVcb', + }), + dict({ + 'artist_id': '6QjsZEGqDMbzKvCdfFN5nz', + 'name': 'Winny', + 'uri': 'spotify:artist:6QjsZEGqDMbzKvCdfFN5nz', + }), + ]), + 'disc_number': 1, + 'duration_ms': 264666, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW', + }), + 'href': 'https://api.spotify.com/v1/tracks/3Kr8iTBk81R5Y2p0tzHzp9', + 'is_local': False, + 'name': 'Winny', + 'track_id': '3Kr8iTBk81R5Y2p0tzHzp9', + 'track_number': 5, + 'uri': 'spotify:track:3Kr8iTBk81R5Y2p0tzHzp9', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6I8TDGeUmmLom8auKPzMdX', + 'name': 'CA7RIEL & Paco Amoroso', + 'uri': 'spotify:artist:6I8TDGeUmmLom8auKPzMdX', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226222, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL', + }), + 'href': 'https://api.spotify.com/v1/tracks/08BPZBE9E82KpRBBsYFfTQ', + 'is_local': False, + 'name': 'Beto’s Horns - fred remix', + 'track_id': '08BPZBE9E82KpRBBsYFfTQ', + 'track_number': 6, + 'uri': 'spotify:track:08BPZBE9E82KpRBBsYFfTQ', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1GuqTQbuixFHD6eBkFwVcb', + 'name': 'Sammy Virji', + 'uri': 'spotify:artist:1GuqTQbuixFHD6eBkFwVcb', + }), + dict({ + 'artist_id': '0kJOr4qkmePXKFVm9OBK0X', + 'name': 'Reggie', + 'uri': 'spotify:artist:0kJOr4qkmePXKFVm9OBK0X', + }), + ]), + 'disc_number': 1, + 'duration_ms': 193846, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5', + }), + 'href': 'https://api.spotify.com/v1/tracks/2lBhjQtKFfpCtTyln9RX3M', + 'is_local': False, + 'name': 'Talk of the Town', + 'track_id': '2lBhjQtKFfpCtTyln9RX3M', + 'track_number': 7, + 'uri': 'spotify:track:2lBhjQtKFfpCtTyln9RX3M', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3an9rnsXKPCAMlZgH4A0n4', + 'name': 'KETTAMA', + 'uri': 'spotify:artist:3an9rnsXKPCAMlZgH4A0n4', + }), + dict({ + 'artist_id': '5fEdUhbIAf9JlPhlc3swPx', + 'name': 'Shady Nasty', + 'uri': 'spotify:artist:5fEdUhbIAf9JlPhlc3swPx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 286285, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y', + }), + 'href': 'https://api.spotify.com/v1/tracks/3CdOgv5Bz3kSGb79jHahkJ', + 'is_local': False, + 'name': 'HARDSTYLE 2', + 'track_id': '3CdOgv5Bz3kSGb79jHahkJ', + 'track_number': 8, + 'uri': 'spotify:track:3CdOgv5Bz3kSGb79jHahkJ', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2AR42Ur9PcchQDtEdwkv4L', + 'name': 'Floating Points', + 'uri': 'spotify:artist:2AR42Ur9PcchQDtEdwkv4L', + }), + ]), + 'disc_number': 1, + 'duration_ms': 451666, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0', + }), + 'href': 'https://api.spotify.com/v1/tracks/1RM4ibzYZYXzCGonhMh5Gc', + 'is_local': False, + 'name': 'Ambery', + 'track_id': '1RM4ibzYZYXzCGonhMh5Gc', + 'track_number': 9, + 'uri': 'spotify:track:1RM4ibzYZYXzCGonhMh5Gc', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '4aEnNH9PuU1HF3TsZTru54', + 'name': 'Caribou', + 'uri': 'spotify:artist:4aEnNH9PuU1HF3TsZTru54', + }), + dict({ + 'artist_id': '3uxTvUjeRTQDfrB59A1zWb', + 'name': 'Menor Teteu', + 'uri': 'spotify:artist:3uxTvUjeRTQDfrB59A1zWb', + }), + ]), + 'disc_number': 1, + 'duration_ms': 257435, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9', + }), + 'href': 'https://api.spotify.com/v1/tracks/3CiUl8blqDsFhWxHLsgiJ0', + 'is_local': False, + 'name': 'Facilita', + 'track_id': '3CiUl8blqDsFhWxHLsgiJ0', + 'track_number': 10, + 'uri': 'spotify:track:3CiUl8blqDsFhWxHLsgiJ0', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5mnxMXIM6BNhVVTXnBatKa', + 'name': 'Skin On Skin', + 'uri': 'spotify:artist:5mnxMXIM6BNhVVTXnBatKa', + }), + dict({ + 'artist_id': '46MWeeHNVMYRIIofQBEX98', + 'name': 'BEAM', + 'uri': 'spotify:artist:46MWeeHNVMYRIIofQBEX98', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 341250, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/08panpchw721lgwPyM7V2k', + }), + 'href': 'https://api.spotify.com/v1/tracks/4zGwSKGXnfpBNHkavKnyIf', + 'is_local': False, + 'name': 'the floor - fred remix', + 'track_id': '4zGwSKGXnfpBNHkavKnyIf', + 'track_number': 11, + 'uri': 'spotify:track:4zGwSKGXnfpBNHkavKnyIf', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '7aA592KWirLsnfb5ulGWvU', + 'name': 'Danny Brown', + 'uri': 'spotify:artist:7aA592KWirLsnfb5ulGWvU', + }), + dict({ + 'artist_id': '46MWeeHNVMYRIIofQBEX98', + 'name': 'BEAM', + 'uri': 'spotify:artist:46MWeeHNVMYRIIofQBEX98', + }), + dict({ + 'artist_id': '1UJfZU4rQx3bJ3tGypRuAT', + 'name': 'PARISI', + 'uri': 'spotify:artist:1UJfZU4rQx3bJ3tGypRuAT', + }), + dict({ + 'artist_id': '6yJ6QQ3Y5l0s0tn7b0arrO', + 'name': 'JPEGMAFIA', + 'uri': 'spotify:artist:6yJ6QQ3Y5l0s0tn7b0arrO', + }), + ]), + 'disc_number': 1, + 'duration_ms': 206197, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP', + }), + 'href': 'https://api.spotify.com/v1/tracks/2mU0xUC1kamLn20YPKuH3S', + 'is_local': False, + 'name': 'OK OK', + 'track_id': '2mU0xUC1kamLn20YPKuH3S', + 'track_number': 12, + 'uri': 'spotify:track:2mU0xUC1kamLn20YPKuH3S', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3NqV2DJoAWsjl787bWaHW7', + 'name': 'Amyl and The Sniffers', + 'uri': 'spotify:artist:3NqV2DJoAWsjl787bWaHW7', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219130, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E', + }), + 'href': 'https://api.spotify.com/v1/tracks/47ESN2iezMvHBKmecjgG11', + 'is_local': False, + 'name': "you're a star", + 'track_id': '47ESN2iezMvHBKmecjgG11', + 'track_number': 13, + 'uri': 'spotify:track:47ESN2iezMvHBKmecjgG11', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 225897, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/78igz8PCqqNYLVyhhSh0z5', + 'is_local': False, + 'name': 'Last 1s Left', + 'track_id': '78igz8PCqqNYLVyhhSh0z5', + 'track_number': 14, + 'uri': 'spotify:track:78igz8PCqqNYLVyhhSh0z5', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 187411, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15', + }), + 'href': 'https://api.spotify.com/v1/tracks/3JTzfCw32PeAQLjtadHvtM', + 'is_local': False, + 'name': 'Back 2 Back', + 'track_id': '3JTzfCw32PeAQLjtadHvtM', + 'track_number': 15, + 'uri': 'spotify:track:3JTzfCw32PeAQLjtadHvtM', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '79NDEw5QWlDC9KaIbogNhS', + 'name': 'Plaqueboymax', + 'uri': 'spotify:artist:79NDEw5QWlDC9KaIbogNhS', + }), + ]), + 'disc_number': 1, + 'duration_ms': 165857, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI', + }), + 'href': 'https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP', + 'is_local': False, + 'name': 'Victory Lap', + 'track_id': '1lbNgoJ5iMrMluCyhI4OQP', + 'track_number': 16, + 'uri': 'spotify:track:1lbNgoJ5iMrMluCyhI4OQP', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '0aIpJqqTLf683ojWREc5lg', + 'name': 'Joy Orbison', + 'uri': 'spotify:artist:0aIpJqqTLf683ojWREc5lg', + }), + dict({ + 'artist_id': '6icQOAFXDZKsumw3YXyusw', + 'name': 'Lil Yachty', + 'uri': 'spotify:artist:6icQOAFXDZKsumw3YXyusw', + }), + dict({ + 'artist_id': '1RyvyyTE3xzB2ZywiAwp0i', + 'name': 'Future', + 'uri': 'spotify:artist:1RyvyyTE3xzB2ZywiAwp0i', + }), + dict({ + 'artist_id': '699OTQXzgjhIYAHMy9RyPD', + 'name': 'Playboi Carti', + 'uri': 'spotify:artist:699OTQXzgjhIYAHMy9RyPD', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246909, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt', + }), + 'href': 'https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9', + 'is_local': False, + 'name': 'flex fm (freddit)', + 'track_id': '7qpZh0yIXeZzXZk3mE6Fj9', + 'track_number': 17, + 'uri': 'spotify:track:7qpZh0yIXeZzXZk3mE6Fj9', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', + 'name': 'Anderson .Paak', + 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + }), + dict({ + 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', + 'name': 'CHIKA', + 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + }), + dict({ + 'artist_id': '4VsVLz3Uw6d0fdM6gFtLfo', + 'name': 'MESSIE', + 'uri': 'spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219310, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV', + }), + 'href': 'https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV', + 'is_local': False, + 'name': 'places to be - MESSIE remix', + 'track_id': '73s1r3Jfn8pqXJv9ahKfNV', + 'track_number': 18, + 'uri': 'spotify:track:73s1r3Jfn8pqXJv9ahKfNV', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1fDV6gCETmlkCUugBxq59g', + 'name': 'Duoteque', + 'uri': 'spotify:artist:1fDV6gCETmlkCUugBxq59g', + }), + dict({ + 'artist_id': '2efrqekWSHlvhATD50AG3m', + 'name': 'Orion Sun', + 'uri': 'spotify:artist:2efrqekWSHlvhATD50AG3m', + }), + ]), + 'disc_number': 1, + 'duration_ms': 327508, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU', + }), + 'href': 'https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o', + 'is_local': False, + 'name': 'ItsNotREEAALLLLLLLL', + 'track_id': '2la8LWSxedRoulmz0UHE7o', + 'track_number': 19, + 'uri': 'spotify:track:2la8LWSxedRoulmz0UHE7o', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5zatdvej2AxogC5pbu2msR', + 'name': 'BERWYN', + 'uri': 'spotify:artist:5zatdvej2AxogC5pbu2msR', + }), + ]), + 'disc_number': 1, + 'duration_ms': 123607, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc', + }), + 'href': 'https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv', + 'is_local': False, + 'name': 'BerwynGesaffNeighbours', + 'track_id': '59DFl0vh8FoBmmD43ruznv', + 'track_number': 20, + 'uri': 'spotify:track:59DFl0vh8FoBmmD43ruznv', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6icQOAFXDZKsumw3YXyusw', + 'name': 'Lil Yachty', + 'uri': 'spotify:artist:6icQOAFXDZKsumw3YXyusw', + }), + dict({ + 'artist_id': '01PnN11ovfen6xUOHfNpn3', + 'name': 'Overmono', + 'uri': 'spotify:artist:01PnN11ovfen6xUOHfNpn3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 274925, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8', + }), + 'href': 'https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj', + 'is_local': False, + 'name': 'stayinit', + 'track_id': '2iUMh8RrpUiakMnneanOPj', + 'track_number': 21, + 'uri': 'spotify:track:2iUMh8RrpUiakMnneanOPj', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5SXuuuRpukkTvsLuUknva1', + 'name': 'Baby Keem', + 'uri': 'spotify:artist:5SXuuuRpukkTvsLuUknva1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 222784, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF', + }), + 'href': 'https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c', + 'is_local': False, + 'name': 'leavemealone', + 'track_id': '2tSP95IyUkPv5Wj83xWh1c', + 'track_number': 22, + 'uri': 'spotify:track:2tSP95IyUkPv5Wj83xWh1c', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5he5w2lnU9x7JFhnwcekXX', + 'name': 'Skrillex', + 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', + }), + dict({ + 'artist_id': '7Eu1txygG6nJttLHbZdQOh', + 'name': 'Four Tet', + 'uri': 'spotify:artist:7Eu1txygG6nJttLHbZdQOh', + }), + ]), + 'disc_number': 1, + 'duration_ms': 319963, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa', + }), + 'href': 'https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI', + 'is_local': False, + 'name': 'Baby again..', + 'track_id': '6EpIDF3GW1dRBujSp4bJxI', + 'track_number': 23, + 'uri': 'spotify:track:6EpIDF3GW1dRBujSp4bJxI', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '5he5w2lnU9x7JFhnwcekXX', + 'name': 'Skrillex', + 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '07CimrZi5vs9iEao47TNQ4', + 'name': 'Flowdan', + 'uri': 'spotify:artist:07CimrZi5vs9iEao47TNQ4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 146571, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO', + }), + 'href': 'https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD', + 'is_local': False, + 'name': 'Rumble', + 'track_id': '74fmYjFwt9CqEFAh8ybeBD', + 'track_number': 24, + 'uri': 'spotify:track:74fmYjFwt9CqEFAh8ybeBD', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1h6Cn3P4NGzXbaXidqURXs', + 'name': 'Swedish House Mafia', + 'uri': 'spotify:artist:1h6Cn3P4NGzXbaXidqURXs', + }), + dict({ + 'artist_id': '1RyvyyTE3xzB2ZywiAwp0i', + 'name': 'Future', + 'uri': 'spotify:artist:1RyvyyTE3xzB2ZywiAwp0i', + }), + ]), + 'disc_number': 1, + 'duration_ms': 267946, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP', + }), + 'href': 'https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe', + 'is_local': False, + 'name': 'Turn On The Lights again.. (feat. Future)', + 'track_id': '2E6peXBRbjUmGkkR3dUNGe', + 'track_number': 25, + 'uri': 'spotify:track:2E6peXBRbjUmGkkR3dUNGe', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 198805, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg', + }), + 'href': 'https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c', + 'is_local': False, + 'name': 'Jungle', + 'track_id': '3BKkroNdTKfNijLG9oHW7c', + 'track_number': 26, + 'uri': 'spotify:track:3BKkroNdTKfNijLG9oHW7c', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5RMLpCv3ic2KtGnqJ7eMG4', + 'name': 'I. JORDAN', + 'uri': 'spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 385074, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j', + }), + 'href': 'https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z', + 'is_local': False, + 'name': 'Admit It (u dont want 2)', + 'track_id': '7c0DlxLjlEEK2VKQJIIU1Z', + 'track_number': 27, + 'uri': 'spotify:track:7c0DlxLjlEEK2VKQJIIU1Z', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', + 'name': 'Romy', + 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + }), + dict({ + 'artist_id': '0pkLgeB9j465x1QB2kRoy4', + 'name': 'HAAi', + 'uri': 'spotify:artist:0pkLgeB9j465x1QB2kRoy4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 288348, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM', + }), + 'href': 'https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX', + 'is_local': False, + 'name': 'Lights Out', + 'track_id': '1RlBD9ays0WfNHSVzxHiKX', + 'track_number': 28, + 'uri': 'spotify:track:1RlBD9ays0WfNHSVzxHiKX', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '46MWeeHNVMYRIIofQBEX98', + 'name': 'BEAM', + 'uri': 'spotify:artist:46MWeeHNVMYRIIofQBEX98', + }), + dict({ + 'artist_id': '5mnxMXIM6BNhVVTXnBatKa', + 'name': 'Skin On Skin', + 'uri': 'spotify:artist:5mnxMXIM6BNhVVTXnBatKa', + }), + ]), + 'disc_number': 1, + 'duration_ms': 234428, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV', + }), + 'href': 'https://api.spotify.com/v1/tracks/3tqiBJfctALrFQbv1wltlr', + 'is_local': False, + 'name': 'the floor - skin on skin remix', + 'track_id': '3tqiBJfctALrFQbv1wltlr', + 'track_number': 29, + 'uri': 'spotify:track:3tqiBJfctALrFQbv1wltlr', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '79NDEw5QWlDC9KaIbogNhS', + 'name': 'Plaqueboymax', + 'uri': 'spotify:artist:79NDEw5QWlDC9KaIbogNhS', + }), + dict({ + 'artist_id': '6fxyWrfmjcbj5d12gXeiNV', + 'name': 'Denzel Curry', + 'uri': 'spotify:artist:6fxyWrfmjcbj5d12gXeiNV', + }), + dict({ + 'artist_id': '4nVa6XlBFlIkF6msW57PHp', + 'name': 'Hanumankind', + 'uri': 'spotify:artist:4nVa6XlBFlIkF6msW57PHp', + }), + dict({ + 'artist_id': '3BAgmPNIK5IJl7zMK1wvMA', + 'name': 'That Mexican OT', + 'uri': 'spotify:artist:3BAgmPNIK5IJl7zMK1wvMA', + }), + dict({ + 'artist_id': '6bwkMlweHsBCpI2a0C5nnN', + 'name': 'D Double E', + 'uri': 'spotify:artist:6bwkMlweHsBCpI2a0C5nnN', + }), + dict({ + 'artist_id': '7xqIp1044Z2vd9v9ZphjLa', + 'name': 'LYNY', + 'uri': 'spotify:artist:7xqIp1044Z2vd9v9ZphjLa', + }), + ]), + 'disc_number': 1, + 'duration_ms': 344571, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3', + }), + 'href': 'https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg', + 'is_local': False, + 'name': 'Victory Lap Five', + 'track_id': '3bsAYGy83D6sl1a5otGuUg', + 'track_number': 30, + 'uri': 'spotify:track:3bsAYGy83D6sl1a5otGuUg', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', + 'name': 'Anderson .Paak', + 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + }), + dict({ + 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', + 'name': 'CHIKA', + 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + }), + dict({ + 'artist_id': '6b0TSaLAeLXilOPoId8udE', + 'name': 'CLIPZ', + 'uri': 'spotify:artist:6b0TSaLAeLXilOPoId8udE', + }), + ]), + 'disc_number': 1, + 'duration_ms': 184827, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z', + }), + 'href': 'https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK', + 'is_local': False, + 'name': 'places to be - CLIPZ remix', + 'track_id': '4n4VUdx6tr7MylOySvDhPK', + 'track_number': 31, + 'uri': 'spotify:track:4n4VUdx6tr7MylOySvDhPK', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5SXuuuRpukkTvsLuUknva1', + 'name': 'Baby Keem', + 'uri': 'spotify:artist:5SXuuuRpukkTvsLuUknva1', + }), + dict({ + 'artist_id': '7BMR0fwtEvzGtK4rNGdoiQ', + 'name': 'Nia Archives', + 'uri': 'spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 179441, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ', + }), + 'href': 'https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK', + 'is_local': False, + 'name': 'leavemealone - Nia Archives Remix', + 'track_id': '5u84pGbxFomiV66Uk2kOQK', + 'track_number': 32, + 'uri': 'spotify:track:5u84pGbxFomiV66Uk2kOQK', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2OaHYHb2XcFPvqL3VsyPzU', + 'name': 'Rico Nasty', + 'uri': 'spotify:artist:2OaHYHb2XcFPvqL3VsyPzU', + }), + ]), + 'disc_number': 1, + 'duration_ms': 213133, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx', + }), + 'href': 'https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms', + 'is_local': False, + 'name': 'Jungle - Rico Nasty Remix', + 'track_id': '3ycgBFWvzxjLtY2YJuQMms', + 'track_number': 33, + 'uri': 'spotify:track:3ycgBFWvzxjLtY2YJuQMms', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', + 'name': 'Romy', + 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + }), + dict({ + 'artist_id': '0pkLgeB9j465x1QB2kRoy4', + 'name': 'HAAi', + 'uri': 'spotify:artist:0pkLgeB9j465x1QB2kRoy4', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 375087, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz', + }), + 'href': 'https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ', + 'is_local': False, + 'name': 'Lights Out (feat. Fred again..) - HAAi Remix', + 'track_id': '5HZJuJphtUWc6wuTHt50oQ', + 'track_number': 34, + 'uri': 'spotify:track:5HZJuJphtUWc6wuTHt50oQ', + }), + ]), + 'uri': 'spotify:album:1Lhv9Fe2KRk0NW3I14HsVY', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 10, 23, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '37P2qivB9weEafn1Y2VeF8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24', + 'width': 64, + }), + ]), + 'name': 'There’s Always More That I Could Say', + 'release_date': '2025-10-24', + 'release_date_precision': , + 'total_tracks': 10, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 171991, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3rgZPrOQn2E3sw90NgI6f6', + }), + 'href': 'https://api.spotify.com/v1/tracks/3rgZPrOQn2E3sw90NgI6f6', + 'is_local': False, + 'name': "I'll Always Be Your Girl", + 'track_id': '3rgZPrOQn2E3sw90NgI6f6', + 'track_number': 1, + 'uri': 'spotify:track:3rgZPrOQn2E3sw90NgI6f6', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 186435, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2VEIppsUhk7inhi5TB4J0C', + }), + 'href': 'https://api.spotify.com/v1/tracks/2VEIppsUhk7inhi5TB4J0C', + 'is_local': False, + 'name': 'Jellyfish', + 'track_id': '2VEIppsUhk7inhi5TB4J0C', + 'track_number': 2, + 'uri': 'spotify:track:2VEIppsUhk7inhi5TB4J0C', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 173251, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH', + }), + 'href': 'https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH', + 'is_local': False, + 'name': 'Do It Again', + 'track_id': '4qM72D1GHUQRXwnmLZUcMH', + 'track_number': 3, + 'uri': 'spotify:track:4qM72D1GHUQRXwnmLZUcMH', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 158680, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2KCEJHfKLqZ90YL4EmE0cM', + }), + 'href': 'https://api.spotify.com/v1/tracks/2KCEJHfKLqZ90YL4EmE0cM', + 'is_local': False, + 'name': 'Kiss The Sky', + 'track_id': '2KCEJHfKLqZ90YL4EmE0cM', + 'track_number': 4, + 'uri': 'spotify:track:2KCEJHfKLqZ90YL4EmE0cM', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 172889, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h', + }), + 'href': 'https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h', + 'is_local': False, + 'name': 'Two Years', + 'track_id': '67WAthizRvsLDjgzIZs27h', + 'track_number': 5, + 'uri': 'spotify:track:67WAthizRvsLDjgzIZs27h', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 164303, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/72eTbGnzmu9e5FsjSoy57j', + }), + 'href': 'https://api.spotify.com/v1/tracks/72eTbGnzmu9e5FsjSoy57j', + 'is_local': False, + 'name': 'Hush Baby, Hurry Slowly', + 'track_id': '72eTbGnzmu9e5FsjSoy57j', + 'track_number': 6, + 'uri': 'spotify:track:72eTbGnzmu9e5FsjSoy57j', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 198756, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7uAkVdp16PTpzx2HFfz96O', + }), + 'href': 'https://api.spotify.com/v1/tracks/7uAkVdp16PTpzx2HFfz96O', + 'is_local': False, + 'name': 'Fort Knox', + 'track_id': '7uAkVdp16PTpzx2HFfz96O', + 'track_number': 7, + 'uri': 'spotify:track:7uAkVdp16PTpzx2HFfz96O', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 161636, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4Qb0Oghb0nwsZ7rHV4yi2T', + }), + 'href': 'https://api.spotify.com/v1/tracks/4Qb0Oghb0nwsZ7rHV4yi2T', + 'is_local': False, + 'name': 'There’s Always More That I Could Say', + 'track_id': '4Qb0Oghb0nwsZ7rHV4yi2T', + 'track_number': 8, + 'uri': 'spotify:track:4Qb0Oghb0nwsZ7rHV4yi2T', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 261219, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4MvmZRkUIDZMrn6T9ECiFu', + }), + 'href': 'https://api.spotify.com/v1/tracks/4MvmZRkUIDZMrn6T9ECiFu', + 'is_local': False, + 'name': 'Have You Heard This Song Before', + 'track_id': '4MvmZRkUIDZMrn6T9ECiFu', + 'track_number': 9, + 'uri': 'spotify:track:4MvmZRkUIDZMrn6T9ECiFu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212352, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4EdCYJlPARFqoQDBYPFY9A', + }), + 'href': 'https://api.spotify.com/v1/tracks/4EdCYJlPARFqoQDBYPFY9A', + 'is_local': False, + 'name': 'Eternal Sunshine', + 'track_id': '4EdCYJlPARFqoQDBYPFY9A', + 'track_number': 10, + 'uri': 'spotify:track:4EdCYJlPARFqoQDBYPFY9A', + }), + ]), + 'uri': 'spotify:album:37P2qivB9weEafn1Y2VeF8', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 10, 9, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '37qGqumC22Ibkey11xnvHC', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2731ab02b6570ef64749f4557a4', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e021ab02b6570ef64749f4557a4', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048511ab02b6570ef64749f4557a4', + 'width': 64, + }), + ]), + 'name': 'Under The Covers, Vol. IV', + 'release_date': '2025-10-10', + 'release_date_precision': , + 'total_tracks': 12, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 215775, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1yKw8iYZgzg15nAbrZORyF', + }), + 'href': 'https://api.spotify.com/v1/tracks/1yKw8iYZgzg15nAbrZORyF', + 'is_local': False, + 'name': 'The Power of Love', + 'track_id': '1yKw8iYZgzg15nAbrZORyF', + 'track_number': 1, + 'uri': 'spotify:track:1yKw8iYZgzg15nAbrZORyF', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226383, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3rRo6VIxlhm1ZJaMBfyeTl', + }), + 'href': 'https://api.spotify.com/v1/tracks/3rRo6VIxlhm1ZJaMBfyeTl', + 'is_local': False, + 'name': 'Just What I Needed', + 'track_id': '3rRo6VIxlhm1ZJaMBfyeTl', + 'track_number': 2, + 'uri': 'spotify:track:3rRo6VIxlhm1ZJaMBfyeTl', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 289288, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6s1mVSOmPlv3qUOktjshpP', + }), + 'href': 'https://api.spotify.com/v1/tracks/6s1mVSOmPlv3qUOktjshpP', + 'is_local': False, + 'name': 'Rosanna', + 'track_id': '6s1mVSOmPlv3qUOktjshpP', + 'track_number': 3, + 'uri': 'spotify:track:6s1mVSOmPlv3qUOktjshpP', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 273046, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/336Z6KZ0kXYaNBX0mJoHzy', + }), + 'href': 'https://api.spotify.com/v1/tracks/336Z6KZ0kXYaNBX0mJoHzy', + 'is_local': False, + 'name': "Don't You (Forget About Me)", + 'track_id': '336Z6KZ0kXYaNBX0mJoHzy', + 'track_number': 4, + 'uri': 'spotify:track:336Z6KZ0kXYaNBX0mJoHzy', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 226283, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2HjeZ9kKEBN1BOjeAsIrNr', + }), + 'href': 'https://api.spotify.com/v1/tracks/2HjeZ9kKEBN1BOjeAsIrNr', + 'is_local': False, + 'name': 'Walk the Dinosaur', + 'track_id': '2HjeZ9kKEBN1BOjeAsIrNr', + 'track_number': 5, + 'uri': 'spotify:track:2HjeZ9kKEBN1BOjeAsIrNr', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 217035, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5wwV3PvcLQO0XSBRlrjKrq', + }), + 'href': 'https://api.spotify.com/v1/tracks/5wwV3PvcLQO0XSBRlrjKrq', + 'is_local': False, + 'name': 'Alone', + 'track_id': '5wwV3PvcLQO0XSBRlrjKrq', + 'track_number': 6, + 'uri': 'spotify:track:5wwV3PvcLQO0XSBRlrjKrq', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 208133, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2YwHAy6qJ9ziRQJA6WaZhy', + }), + 'href': 'https://api.spotify.com/v1/tracks/2YwHAy6qJ9ziRQJA6WaZhy', + 'is_local': False, + 'name': 'What a Fool Believes', + 'track_id': '2YwHAy6qJ9ziRQJA6WaZhy', + 'track_number': 7, + 'uri': 'spotify:track:2YwHAy6qJ9ziRQJA6WaZhy', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 201082, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7qGkyuUNwlxVhczm70tRpG', + }), + 'href': 'https://api.spotify.com/v1/tracks/7qGkyuUNwlxVhczm70tRpG', + 'is_local': False, + 'name': 'Invisible Touch', + 'track_id': '7qGkyuUNwlxVhczm70tRpG', + 'track_number': 8, + 'uri': 'spotify:track:7qGkyuUNwlxVhczm70tRpG', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 278562, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6nvpIkMrowN0GyW1RT9wkY', + }), + 'href': 'https://api.spotify.com/v1/tracks/6nvpIkMrowN0GyW1RT9wkY', + 'is_local': False, + 'name': "Can't Fight This Feeling", + 'track_id': '6nvpIkMrowN0GyW1RT9wkY', + 'track_number': 9, + 'uri': 'spotify:track:6nvpIkMrowN0GyW1RT9wkY', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 252937, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC', + 'spotify': 'https://open.spotify.com/track/3fqnfaOvNzKEO2dHlI7REr', }), - 'href': 'https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC', + 'href': 'https://api.spotify.com/v1/tracks/3fqnfaOvNzKEO2dHlI7REr', 'is_local': False, - 'name': 'Treat Each Other Right', - 'track_id': '3pjX4hC8adabkXGu3X9GTC', + 'name': "Life's What You Make It", + 'track_id': '3fqnfaOvNzKEO2dHlI7REr', + 'track_number': 10, + 'uri': 'spotify:track:3fqnfaOvNzKEO2dHlI7REr', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 201071, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0P8ZlN0PNMmpoi76mkDYqG', + }), + 'href': 'https://api.spotify.com/v1/tracks/0P8ZlN0PNMmpoi76mkDYqG', + 'is_local': False, + 'name': 'SOS', + 'track_id': '0P8ZlN0PNMmpoi76mkDYqG', + 'track_number': 11, + 'uri': 'spotify:track:0P8ZlN0PNMmpoi76mkDYqG', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 286545, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6e8wyDGesxbluq8lYLtM5C', + }), + 'href': 'https://api.spotify.com/v1/tracks/6e8wyDGesxbluq8lYLtM5C', + 'is_local': False, + 'name': 'Hey Jude', + 'track_id': '6e8wyDGesxbluq8lYLtM5C', + 'track_number': 12, + 'uri': 'spotify:track:6e8wyDGesxbluq8lYLtM5C', + }), + ]), + 'uri': 'spotify:album:37qGqumC22Ibkey11xnvHC', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 9, 11, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1rSbjr5U9J9rQ9sE7RxHFl', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d076abbd008ad3c6d65112eb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d076abbd008ad3c6d65112eb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d076abbd008ad3c6d65112eb', + 'width': 64, + }), + ]), + 'name': 'LOVED', + 'release_date': '2025-09-12', + 'release_date_precision': , + 'total_tracks': 12, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 245904, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7cSLD89y304ZvX4mVhYVfw', + }), + 'href': 'https://api.spotify.com/v1/tracks/7cSLD89y304ZvX4mVhYVfw', + 'is_local': False, + 'name': 'Tobeloved', + 'track_id': '7cSLD89y304ZvX4mVhYVfw', + 'track_number': 1, + 'uri': 'spotify:track:7cSLD89y304ZvX4mVhYVfw', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 241608, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6cjALjYTubXSbLRXrnCNgY', + }), + 'href': 'https://api.spotify.com/v1/tracks/6cjALjYTubXSbLRXrnCNgY', + 'is_local': False, + 'name': 'Ifyoucall', + 'track_id': '6cjALjYTubXSbLRXrnCNgY', 'track_number': 2, - 'uri': 'spotify:track:3pjX4hC8adabkXGu3X9GTC', + 'uri': 'spotify:track:6cjALjYTubXSbLRXrnCNgY', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 276347, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0k6WMNaYENiEhseD7MAi4N', + }), + 'href': 'https://api.spotify.com/v1/tracks/0k6WMNaYENiEhseD7MAi4N', + 'is_local': False, + 'name': 'Safeandsound', + 'track_id': '0k6WMNaYENiEhseD7MAi4N', + 'track_number': 3, + 'uri': 'spotify:track:0k6WMNaYENiEhseD7MAi4N', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 197703, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/02KWhwsDjIX8ZXgBgK9kOP', + }), + 'href': 'https://api.spotify.com/v1/tracks/02KWhwsDjIX8ZXgBgK9kOP', + 'is_local': False, + 'name': 'Sorry', + 'track_id': '02KWhwsDjIX8ZXgBgK9kOP', + 'track_number': 4, + 'uri': 'spotify:track:02KWhwsDjIX8ZXgBgK9kOP', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 183462, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1eGYO1RzVRdphhWT86DSr9', + }), + 'href': 'https://api.spotify.com/v1/tracks/1eGYO1RzVRdphhWT86DSr9', + 'is_local': False, + 'name': 'Yougotmefeeling', + 'track_id': '1eGYO1RzVRdphhWT86DSr9', + 'track_number': 5, + 'uri': 'spotify:track:1eGYO1RzVRdphhWT86DSr9', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 221343, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/07HZTpShoHhClfwKDEsvN5', + }), + 'href': 'https://api.spotify.com/v1/tracks/07HZTpShoHhClfwKDEsvN5', + 'is_local': False, + 'name': 'Leaves', + 'track_id': '07HZTpShoHhClfwKDEsvN5', + 'track_number': 6, + 'uri': 'spotify:track:07HZTpShoHhClfwKDEsvN5', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 218683, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0B36Bnz5XYl4plV4MpXSAg', + }), + 'href': 'https://api.spotify.com/v1/tracks/0B36Bnz5XYl4plV4MpXSAg', + 'is_local': False, + 'name': 'Everybodyelse', + 'track_id': '0B36Bnz5XYl4plV4MpXSAg', + 'track_number': 7, + 'uri': 'spotify:track:0B36Bnz5XYl4plV4MpXSAg', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 271047, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7r4NrHM4w6tJystfMbse4C', + }), + 'href': 'https://api.spotify.com/v1/tracks/7r4NrHM4w6tJystfMbse4C', + 'is_local': False, + 'name': 'Summerinlove', + 'track_id': '7r4NrHM4w6tJystfMbse4C', + 'track_number': 8, + 'uri': 'spotify:track:7r4NrHM4w6tJystfMbse4C', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 231490, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0NeYhtI2vLqaIpvYRQ7E5Y', + }), + 'href': 'https://api.spotify.com/v1/tracks/0NeYhtI2vLqaIpvYRQ7E5Y', + 'is_local': False, + 'name': 'Leaveyourlove', + 'track_id': '0NeYhtI2vLqaIpvYRQ7E5Y', + 'track_number': 9, + 'uri': 'spotify:track:0NeYhtI2vLqaIpvYRQ7E5Y', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 171575, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7hiuxAwDEBlEil538YGffi', + }), + 'href': 'https://api.spotify.com/v1/tracks/7hiuxAwDEBlEil538YGffi', + 'is_local': False, + 'name': 'Thinkaboutit', + 'track_id': '7hiuxAwDEBlEil538YGffi', + 'track_number': 10, + 'uri': 'spotify:track:7hiuxAwDEBlEil538YGffi', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191925, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1Ded9EOaAthYQVOs9MwtCp', + }), + 'href': 'https://api.spotify.com/v1/tracks/1Ded9EOaAthYQVOs9MwtCp', + 'is_local': False, + 'name': 'Finallyover', + 'track_id': '1Ded9EOaAthYQVOs9MwtCp', + 'track_number': 11, + 'uri': 'spotify:track:1Ded9EOaAthYQVOs9MwtCp', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + ]), + 'disc_number': 1, + 'duration_ms': 302895, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4LpNkTXEHMktM6cj6DV12i', + }), + 'href': 'https://api.spotify.com/v1/tracks/4LpNkTXEHMktM6cj6DV12i', + 'is_local': False, + 'name': 'Iwanttobeyourlightagain', + 'track_id': '4LpNkTXEHMktM6cj6DV12i', + 'track_number': 12, + 'uri': 'spotify:track:4LpNkTXEHMktM6cj6DV12i', + }), + ]), + 'uri': 'spotify:album:1rSbjr5U9J9rQ9sE7RxHFl', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 6, 5, 11, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '3My0taql4cY6yHpY1bZILJ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273c4d3f5ed3a7a2f3e8854e76c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02c4d3f5ed3a7a2f3e8854e76c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c4d3f5ed3a7a2f3e8854e76c', + 'width': 64, + }), + ]), + 'name': 'Revelation', + 'release_date': '2025-06-06', + 'release_date_precision': , + 'total_tracks': 9, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', + }), + ]), + 'disc_number': 1, + 'duration_ms': 253862, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6TCOOuqsger70LEZUXGrFG', + }), + 'href': 'https://api.spotify.com/v1/tracks/6TCOOuqsger70LEZUXGrFG', + 'is_local': False, + 'name': 'Revelation', + 'track_id': '6TCOOuqsger70LEZUXGrFG', + 'track_number': 1, + 'uri': 'spotify:track:6TCOOuqsger70LEZUXGrFG', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', }), dict({ - 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', - 'name': 'Romy', - 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), + ]), + 'disc_number': 1, + 'duration_ms': 205611, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Upay8wgPd30hQPjeWXHOC', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Upay8wgPd30hQPjeWXHOC', + 'is_local': False, + 'name': 'Love Me Alive', + 'track_id': '0Upay8wgPd30hQPjeWXHOC', + 'track_number': 2, + 'uri': 'spotify:track:0Upay8wgPd30hQPjeWXHOC', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '4KDu9uqzqseVCpQXMa8Pvm', - 'name': 'Oliver Sim', - 'uri': 'spotify:artist:4KDu9uqzqseVCpQXMa8Pvm', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', }), dict({ - 'artist_id': '3iOvXCl6edW5Um0fXEBRXy', - 'name': 'The xx', - 'uri': 'spotify:artist:3iOvXCl6edW5Um0fXEBRXy', + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 208334, + 'duration_ms': 161862, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD', + 'spotify': 'https://open.spotify.com/track/5eX3Laj9b0V3HjkEBwrXmq', }), - 'href': 'https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD', + 'href': 'https://api.spotify.com/v1/tracks/5eX3Laj9b0V3HjkEBwrXmq', 'is_local': False, - 'name': 'Waited All Night', - 'track_id': '4gBniy3TwR9o2JDBx48TlD', + 'name': 'Foolish Pleasure', + 'track_id': '5eX3Laj9b0V3HjkEBwrXmq', 'track_number': 3, - 'uri': 'spotify:track:4gBniy3TwR9o2JDBx48TlD', + 'uri': 'spotify:track:5eX3Laj9b0V3HjkEBwrXmq', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', }), dict({ - 'artist_id': '0XfQBWgzisaS9ltDV9bXAS', - 'name': 'Honey Dijon', - 'uri': 'spotify:artist:0XfQBWgzisaS9ltDV9bXAS', + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 222315, - 'explicit': True, + 'duration_ms': 227493, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz', + 'spotify': 'https://open.spotify.com/track/6yE7Ch3CLPFvMl9m9ZqAYK', }), - 'href': 'https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz', + 'href': 'https://api.spotify.com/v1/tracks/6yE7Ch3CLPFvMl9m9ZqAYK', 'is_local': False, - 'name': 'Baddy On The Floor', - 'track_id': '79gWc6dZ1dXH7rC67DTunz', + 'name': 'The Hero', + 'track_id': '6yE7Ch3CLPFvMl9m9ZqAYK', 'track_number': 4, - 'uri': 'spotify:track:79gWc6dZ1dXH7rC67DTunz', + 'uri': 'spotify:track:6yE7Ch3CLPFvMl9m9ZqAYK', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '0fEfMW5bypHZ0A8eLnhwj5', - 'name': 'Kelsey Lu', - 'uri': 'spotify:artist:0fEfMW5bypHZ0A8eLnhwj5', - }), - dict({ - 'artist_id': '0FNfiTQCR5o3ounOlWzm1d', - 'name': 'John Glacier', - 'uri': 'spotify:artist:0FNfiTQCR5o3ounOlWzm1d', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', }), dict({ - 'artist_id': '1R84VlXnFFULOsWWV8IrCQ', - 'name': 'Panda Bear', - 'uri': 'spotify:artist:1R84VlXnFFULOsWWV8IrCQ', + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 212339, + 'duration_ms': 85001, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2', + 'spotify': 'https://open.spotify.com/track/1OZ2Fh8I2xKWgQgk9DNi6L', }), - 'href': 'https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2', + 'href': 'https://api.spotify.com/v1/tracks/1OZ2Fh8I2xKWgQgk9DNi6L', 'is_local': False, - 'name': 'Dafodil', - 'track_id': '1gRMKwvMvp6LcQVMpMXQg2', + 'name': 'Keynote', + 'track_id': '1OZ2Fh8I2xKWgQgk9DNi6L', 'track_number': 5, - 'uri': 'spotify:track:1gRMKwvMvp6LcQVMpMXQg2', + 'uri': 'spotify:track:1OZ2Fh8I2xKWgQgk9DNi6L', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 205638, + 'duration_ms': 198496, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto', + 'spotify': 'https://open.spotify.com/track/12txrzwhdCu0DhlEMrKBxw', }), - 'href': 'https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto', + 'href': 'https://api.spotify.com/v1/tracks/12txrzwhdCu0DhlEMrKBxw', 'is_local': False, - 'name': 'Still Summer', - 'track_id': '27D9YN3uHPD3PTXvzNtbto', + 'name': 'Friday Night', + 'track_id': '12txrzwhdCu0DhlEMrKBxw', 'track_number': 6, - 'uri': 'spotify:track:27D9YN3uHPD3PTXvzNtbto', + 'uri': 'spotify:track:12txrzwhdCu0DhlEMrKBxw', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', }), dict({ - 'artist_id': '6UE7nl9mha6s8z0wFQFIZ2', - 'name': 'Robyn', - 'uri': 'spotify:artist:6UE7nl9mha6s8z0wFQFIZ2', + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 202648, - 'explicit': True, + 'duration_ms': 189347, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ', + 'spotify': 'https://open.spotify.com/track/4wjxlsdGrze9UxCWngBfHS', }), - 'href': 'https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ', + 'href': 'https://api.spotify.com/v1/tracks/4wjxlsdGrze9UxCWngBfHS', 'is_local': False, - 'name': 'Life', - 'track_id': '0pMj03SiaZ9bkFlXQWNhtZ', + 'name': 'Dreams', + 'track_id': '4wjxlsdGrze9UxCWngBfHS', 'track_number': 7, - 'uri': 'spotify:track:0pMj03SiaZ9bkFlXQWNhtZ', + 'uri': 'spotify:track:4wjxlsdGrze9UxCWngBfHS', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 222365, + 'duration_ms': 201440, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5', + 'spotify': 'https://open.spotify.com/track/60wP1IkIYps6MS3tS6Usl3', }), - 'href': 'https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5', + 'href': 'https://api.spotify.com/v1/tracks/60wP1IkIYps6MS3tS6Usl3', 'is_local': False, - 'name': 'The Feeling I Get From You', - 'track_id': '7gb0pekqHQYTGo6NWLBvT5', + 'name': 'Thorn', + 'track_id': '60wP1IkIYps6MS3tS6Usl3', 'track_number': 8, - 'uri': 'spotify:track:7gb0pekqHQYTGo6NWLBvT5', + 'uri': 'spotify:track:60wP1IkIYps6MS3tS6Usl3', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '4GLJPBj5Cdr9AgLKvLWM4n', + 'name': 'Dragonette', + 'uri': 'spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n', }), ]), 'disc_number': 1, - 'duration_ms': 376918, + 'duration_ms': 181645, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6', + 'spotify': 'https://open.spotify.com/track/63GJGxmjnfkBkdqgbH7gE2', }), - 'href': 'https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6', + 'href': 'https://api.spotify.com/v1/tracks/63GJGxmjnfkBkdqgbH7gE2', 'is_local': False, - 'name': 'Breather', - 'track_id': '6pOzbdJKEr4hvXkX7VkfY6', + 'name': 'Let My Love Open The Door', + 'track_id': '63GJGxmjnfkBkdqgbH7gE2', 'track_number': 9, - 'uri': 'spotify:track:6pOzbdJKEr4hvXkX7VkfY6', + 'uri': 'spotify:track:63GJGxmjnfkBkdqgbH7gE2', + }), + ]), + 'uri': 'spotify:album:3My0taql4cY6yHpY1bZILJ', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 6, 2, 10, 11, 4, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '78Wcqh7ygPyANYSd8kn5PG', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a2e2bfe27469ef8067aa4560', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a2e2bfe27469ef8067aa4560', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a2e2bfe27469ef8067aa4560', + 'width': 64, }), + ]), + 'name': 'Bittersüß (Baller Deluxe)', + 'release_date': '2025-05-16', + 'release_date_precision': , + 'total_tracks': 25, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '3C8RpaI3Go0yFF9whvKoED', - 'name': 'The Avalanches', - 'uri': 'spotify:artist:3C8RpaI3Go0yFF9whvKoED', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 254142, + 'duration_ms': 212893, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu', + 'spotify': 'https://open.spotify.com/track/4yDBSqz5fHkR1uZBEdMu4C', }), - 'href': 'https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu', + 'href': 'https://api.spotify.com/v1/tracks/4yDBSqz5fHkR1uZBEdMu4C', 'is_local': False, - 'name': 'All You Children', - 'track_id': '3cfgisz6DhZmooQk08P4Eu', - 'track_number': 10, - 'uri': 'spotify:track:3cfgisz6DhZmooQk08P4Eu', + 'name': 'Parallele Linien', + 'track_id': '4yDBSqz5fHkR1uZBEdMu4C', + 'track_number': 1, + 'uri': 'spotify:track:4yDBSqz5fHkR1uZBEdMu4C', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 71680, + 'duration_ms': 150521, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN', + 'spotify': 'https://open.spotify.com/track/3P4p3ihEEV63gnXh1QYbHu', }), - 'href': 'https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN', + 'href': 'https://api.spotify.com/v1/tracks/3P4p3ihEEV63gnXh1QYbHu', 'is_local': False, - 'name': 'Every Single Weekend - Interlude', - 'track_id': '1wpcJ6TCrKpH6KdBmrp9yN', - 'track_number': 11, - 'uri': 'spotify:track:1wpcJ6TCrKpH6KdBmrp9yN', + 'name': 'Psst', + 'track_id': '3P4p3ihEEV63gnXh1QYbHu', + 'track_number': 2, + 'uri': 'spotify:track:3P4p3ihEEV63gnXh1QYbHu', }), dict({ 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 174933, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7Dck7yNBesHT3bINWqGuJj', + }), + 'href': 'https://api.spotify.com/v1/tracks/7Dck7yNBesHT3bINWqGuJj', + 'is_local': False, + 'name': 'Engel in Jeans', + 'track_id': '7Dck7yNBesHT3bINWqGuJj', + 'track_number': 3, + 'uri': 'spotify:track:7Dck7yNBesHT3bINWqGuJj', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '2Q4FR4Ss0mh6EvbiQBHEOU', - 'name': 'Oona Doherty', - 'uri': 'spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 337414, + 'duration_ms': 140526, 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI', + 'spotify': 'https://open.spotify.com/track/1wGXOlPZRHL2BxOwHCggFz', }), - 'href': 'https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI', + 'href': 'https://api.spotify.com/v1/tracks/1wGXOlPZRHL2BxOwHCggFz', 'is_local': False, - 'name': 'Falling Together', - 'track_id': '08Jhu8OZ6gCIGWQn6vP3uI', - 'track_number': 12, - 'uri': 'spotify:track:08Jhu8OZ6gCIGWQn6vP3uI', + 'name': 'Coco Taxi', + 'track_id': '1wGXOlPZRHL2BxOwHCggFz', + 'track_number': 4, + 'uri': 'spotify:track:1wGXOlPZRHL2BxOwHCggFz', }), - ]), - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 5, 22, 0, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '3DQueEd1Ft9PHWgovDzPKh', - 'album_type': , - 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 149011, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7cRv3ualjFncyPnjM5hzXw', + }), + 'href': 'https://api.spotify.com/v1/tracks/7cRv3ualjFncyPnjM5hzXw', + 'is_local': False, + 'name': 'Seifenblasen', + 'track_id': '7cRv3ualjFncyPnjM5hzXw', + 'track_number': 5, + 'uri': 'spotify:track:7cRv3ualjFncyPnjM5hzXw', }), - ]), - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736b8a4828e057b7dc1c4a4d39', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 141078, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1QhASlLdyCTimVl2b0jQZ1', + }), + 'href': 'https://api.spotify.com/v1/tracks/1QhASlLdyCTimVl2b0jQZ1', + 'is_local': False, + 'name': 'Mama', + 'track_id': '1QhASlLdyCTimVl2b0jQZ1', + 'track_number': 6, + 'uri': 'spotify:track:1QhASlLdyCTimVl2b0jQZ1', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026b8a4828e057b7dc1c4a4d39', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 182200, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5QSHWxxZRZFTUgwjMl3enO', + }), + 'href': 'https://api.spotify.com/v1/tracks/5QSHWxxZRZFTUgwjMl3enO', + 'is_local': False, + 'name': 'Babylon', + 'track_id': '5QSHWxxZRZFTUgwjMl3enO', + 'track_number': 7, + 'uri': 'spotify:track:5QSHWxxZRZFTUgwjMl3enO', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516b8a4828e057b7dc1c4a4d39', - 'width': 64, - }), - ]), - 'name': 'ten days', - 'release_date': '2024-09-06', - 'release_date_precision': , - 'total_tracks': 20, - 'tracks': list([ + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 155876, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/36wvHXuSxjcFFrUYQ7p651', + }), + 'href': 'https://api.spotify.com/v1/tracks/36wvHXuSxjcFFrUYQ7p651', + 'is_local': False, + 'name': 'Guess What I Like', + 'track_id': '36wvHXuSxjcFFrUYQ7p651', + 'track_number': 8, + 'uri': 'spotify:track:36wvHXuSxjcFFrUYQ7p651', + }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 30857, + 'duration_ms': 151893, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc', + 'spotify': 'https://open.spotify.com/track/7uX5nGsuQtviIx5bbGK2c2', }), - 'href': 'https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc', + 'href': 'https://api.spotify.com/v1/tracks/7uX5nGsuQtviIx5bbGK2c2', 'is_local': False, - 'name': '.one', - 'track_id': '00nDbqJkHBGUFdim9M0xGc', - 'track_number': 1, - 'uri': 'spotify:track:00nDbqJkHBGUFdim9M0xGc', + 'name': 'Katana', + 'track_id': '7uX5nGsuQtviIx5bbGK2c2', + 'track_number': 9, + 'uri': 'spotify:track:7uX5nGsuQtviIx5bbGK2c2', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '6l7R1jntPahGxwJt7Tky8h', - 'name': 'Obongjayar', - 'uri': 'spotify:artist:6l7R1jntPahGxwJt7Tky8h', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 220653, + 'duration_ms': 139800, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi', + 'spotify': 'https://open.spotify.com/track/265NTGkEQbGThMjjcvhwfS', }), - 'href': 'https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi', + 'href': 'https://api.spotify.com/v1/tracks/265NTGkEQbGThMjjcvhwfS', 'is_local': False, - 'name': 'adore u', - 'track_id': '1rf4SX7dduNbrNnOmupLzi', - 'track_number': 2, - 'uri': 'spotify:track:1rf4SX7dduNbrNnOmupLzi', + 'name': 'Mona Lisa', + 'track_id': '265NTGkEQbGThMjjcvhwfS', + 'track_number': 10, + 'uri': 'spotify:track:265NTGkEQbGThMjjcvhwfS', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 10670, + 'duration_ms': 183893, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH', + 'spotify': 'https://open.spotify.com/track/7a4s38cE2CYh6qAtWWiMcs', }), - 'href': 'https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH', + 'href': 'https://api.spotify.com/v1/tracks/7a4s38cE2CYh6qAtWWiMcs', 'is_local': False, - 'name': '.two', - 'track_id': '0lt9clHEwYyheuC9rik9UH', - 'track_number': 3, - 'uri': 'spotify:track:0lt9clHEwYyheuC9rik9UH', + 'name': 'Winnetou', + 'track_id': '7a4s38cE2CYh6qAtWWiMcs', + 'track_number': 11, + 'uri': 'spotify:track:7a4s38cE2CYh6qAtWWiMcs', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 159493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/08HAsedFOMxs7NETNXPZ3K', + }), + 'href': 'https://api.spotify.com/v1/tracks/08HAsedFOMxs7NETNXPZ3K', + 'is_local': False, + 'name': 'Baller', + 'track_id': '08HAsedFOMxs7NETNXPZ3K', + 'track_number': 12, + 'uri': 'spotify:track:08HAsedFOMxs7NETNXPZ3K', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '6Ja6zFB5d7XRihhfMo6KzY', - 'name': 'Jozzy', - 'uri': 'spotify:artist:6Ja6zFB5d7XRihhfMo6KzY', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 152560, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1xGvgqekFRzNkgAtKsHXu8', + }), + 'href': 'https://api.spotify.com/v1/tracks/1xGvgqekFRzNkgAtKsHXu8', + 'is_local': False, + 'name': 'Tan Lines', + 'track_id': '1xGvgqekFRzNkgAtKsHXu8', + 'track_number': 13, + 'uri': 'spotify:track:1xGvgqekFRzNkgAtKsHXu8', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '7IrBqZo6diq3hV3GpUhrs2', - 'name': 'Jim Legxacy', - 'uri': 'spotify:artist:7IrBqZo6diq3hV3GpUhrs2', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 181545, + 'duration_ms': 136557, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i', + 'spotify': 'https://open.spotify.com/track/0VYrYHPDPVv0fjdojYEMAc', }), - 'href': 'https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i', + 'href': 'https://api.spotify.com/v1/tracks/0VYrYHPDPVv0fjdojYEMAc', 'is_local': False, - 'name': 'ten', - 'track_id': '6twB0uYXJYW9t5GHfYaQ3i', - 'track_number': 4, - 'uri': 'spotify:track:6twB0uYXJYW9t5GHfYaQ3i', + 'name': 'Küsschen', + 'track_id': '0VYrYHPDPVv0fjdojYEMAc', + 'track_number': 14, + 'uri': 'spotify:track:0VYrYHPDPVv0fjdojYEMAc', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 15034, + 'duration_ms': 171346, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW', + 'spotify': 'https://open.spotify.com/track/5vn3t4X7Q8rCAa5Lfd07XW', }), - 'href': 'https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW', + 'href': 'https://api.spotify.com/v1/tracks/5vn3t4X7Q8rCAa5Lfd07XW', 'is_local': False, - 'name': '.three', - 'track_id': '6G7TRmzTt9tnrM0QqSVpJW', - 'track_number': 5, - 'uri': 'spotify:track:6G7TRmzTt9tnrM0QqSVpJW', + 'name': 'Karussell', + 'track_id': '5vn3t4X7Q8rCAa5Lfd07XW', + 'track_number': 15, + 'uri': 'spotify:track:5vn3t4X7Q8rCAa5Lfd07XW', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 202224, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4KyZHk9EM6CXGrKeI26ihf', + }), + 'href': 'https://api.spotify.com/v1/tracks/4KyZHk9EM6CXGrKeI26ihf', + 'is_local': False, + 'name': 'Songs gehasst', + 'track_id': '4KyZHk9EM6CXGrKeI26ihf', + 'track_number': 16, + 'uri': 'spotify:track:4KyZHk9EM6CXGrKeI26ihf', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '2WoVwexZuODvclzULjPQtm', - 'name': 'Sampha', - 'uri': 'spotify:artist:2WoVwexZuODvclzULjPQtm', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 214469, + 'duration_ms': 175986, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X', + 'spotify': 'https://open.spotify.com/track/3DTGOe9oWi4NwNNF8jeQt0', }), - 'href': 'https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X', + 'href': 'https://api.spotify.com/v1/tracks/3DTGOe9oWi4NwNNF8jeQt0', 'is_local': False, - 'name': 'fear less', - 'track_id': '4IHblO52meh2jwqES1BA7X', - 'track_number': 6, - 'uri': 'spotify:track:4IHblO52meh2jwqES1BA7X', + 'name': 'Rotkäppchen', + 'track_id': '3DTGOe9oWi4NwNNF8jeQt0', + 'track_number': 17, + 'uri': 'spotify:track:3DTGOe9oWi4NwNNF8jeQt0', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 9856, + 'duration_ms': 144880, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq', + 'spotify': 'https://open.spotify.com/track/2yhWwMSeUzFJiQcca4mdbh', }), - 'href': 'https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq', + 'href': 'https://api.spotify.com/v1/tracks/2yhWwMSeUzFJiQcca4mdbh', 'is_local': False, - 'name': '.four', - 'track_id': '1wU9pfdw6ht8HKfxz6wMNq', - 'track_number': 7, - 'uri': 'spotify:track:1wU9pfdw6ht8HKfxz6wMNq', + 'name': 'Winnetou - Acoustic Version', + 'track_id': '2yhWwMSeUzFJiQcca4mdbh', + 'track_number': 18, + 'uri': 'spotify:track:2yhWwMSeUzFJiQcca4mdbh', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '4PLsMEk2DCRVlVL2a9aZAv', - 'name': 'SOAK', - 'uri': 'spotify:artist:4PLsMEk2DCRVlVL2a9aZAv', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 260997, + 'duration_ms': 186466, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a', + 'spotify': 'https://open.spotify.com/track/4IitBXra1xiNAFqYU1YFp8', }), - 'href': 'https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a', + 'href': 'https://api.spotify.com/v1/tracks/4IitBXra1xiNAFqYU1YFp8', 'is_local': False, - 'name': 'just stand there', - 'track_id': '2D9a9CXeo3HFtVeaNlzp4a', - 'track_number': 8, - 'uri': 'spotify:track:2D9a9CXeo3HFtVeaNlzp4a', + 'name': 'Parallele Linien - Acoustic Version', + 'track_id': '4IitBXra1xiNAFqYU1YFp8', + 'track_number': 19, + 'uri': 'spotify:track:4IitBXra1xiNAFqYU1YFp8', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 15254, + 'duration_ms': 221586, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM', + 'spotify': 'https://open.spotify.com/track/1slJAXwnqcsjbf3dvSK3ZI', }), - 'href': 'https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM', + 'href': 'https://api.spotify.com/v1/tracks/1slJAXwnqcsjbf3dvSK3ZI', 'is_local': False, - 'name': '.five', - 'track_id': '3vTHKAYJy0hY1OkVv1qLNM', - 'track_number': 9, - 'uri': 'spotify:track:3vTHKAYJy0hY1OkVv1qLNM', + 'name': 'Baller - Acoustic Version', + 'track_id': '1slJAXwnqcsjbf3dvSK3ZI', + 'track_number': 20, + 'uri': 'spotify:track:1slJAXwnqcsjbf3dvSK3ZI', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', - 'name': 'Anderson .Paak', - 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 219560, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5OEn3AZguWzPiz7PaxgfJI', + }), + 'href': 'https://api.spotify.com/v1/tracks/5OEn3AZguWzPiz7PaxgfJI', + 'is_local': False, + 'name': 'Baller - Acoustic Hungarian Version', + 'track_id': '5OEn3AZguWzPiz7PaxgfJI', + 'track_number': 21, + 'uri': 'spotify:track:5OEn3AZguWzPiz7PaxgfJI', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', - 'name': 'CHIKA', - 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 224073, - 'explicit': True, + 'duration_ms': 180000, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6', + 'spotify': 'https://open.spotify.com/track/7eXtpvQa9PEF7d2I3PnECW', }), - 'href': 'https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6', + 'href': 'https://api.spotify.com/v1/tracks/7eXtpvQa9PEF7d2I3PnECW', 'is_local': False, - 'name': 'places to be', - 'track_id': '1qfJ6OvxrspQTmcvdIEoX6', - 'track_number': 10, - 'uri': 'spotify:track:1qfJ6OvxrspQTmcvdIEoX6', + 'name': 'Baller - Eurovision Mix', + 'track_id': '7eXtpvQa9PEF7d2I3PnECW', + 'track_number': 22, + 'uri': 'spotify:track:7eXtpvQa9PEF7d2I3PnECW', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), ]), 'disc_number': 1, - 'duration_ms': 28836, + 'duration_ms': 158933, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG', + 'spotify': 'https://open.spotify.com/track/6Cyi6njkifIohvyFNKZivX', }), - 'href': 'https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG', + 'href': 'https://api.spotify.com/v1/tracks/6Cyi6njkifIohvyFNKZivX', 'is_local': False, - 'name': '.six', - 'track_id': '13H2XgH3k8SEptaoD5qeLG', - 'track_number': 11, - 'uri': 'spotify:track:13H2XgH3k8SEptaoD5qeLG', + 'name': 'Baller - Karaoke Version', + 'track_id': '6Cyi6njkifIohvyFNKZivX', + 'track_number': 23, + 'uri': 'spotify:track:6Cyi6njkifIohvyFNKZivX', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), + ]), + 'disc_number': 1, + 'duration_ms': 175626, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Dv67yeONf1kE0qHQim1bR', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Dv67yeONf1kE0qHQim1bR', + 'is_local': False, + 'name': 'Baller - Abor Remix', + 'track_id': '0Dv67yeONf1kE0qHQim1bR', + 'track_number': 24, + 'uri': 'spotify:track:0Dv67yeONf1kE0qHQim1bR', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '59MDSNIYoOY0WRYuodzJPD', - 'name': 'Duskus', - 'uri': 'spotify:artist:59MDSNIYoOY0WRYuodzJPD', + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', }), dict({ - 'artist_id': '7Eu1txygG6nJttLHbZdQOh', - 'name': 'Four Tet', - 'uri': 'spotify:artist:7Eu1txygG6nJttLHbZdQOh', + 'artist_id': '5wxw2CQKTIOSkPFJbTYVzl', + 'name': 'nowifi', + 'uri': 'spotify:artist:5wxw2CQKTIOSkPFJbTYVzl', }), + ]), + 'disc_number': 1, + 'duration_ms': 167183, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1v7J9ZAxKqbuLpvMciORtw', + }), + 'href': 'https://api.spotify.com/v1/tracks/1v7J9ZAxKqbuLpvMciORtw', + 'is_local': False, + 'name': 'Baller - nowifi Remix', + 'track_id': '1v7J9ZAxKqbuLpvMciORtw', + 'track_number': 25, + 'uri': 'spotify:track:1v7J9ZAxKqbuLpvMciORtw', + }), + ]), + 'uri': 'spotify:album:78Wcqh7ygPyANYSd8kn5PG', + }), + }), + dict({ + 'added_at': datetime.datetime(2025, 4, 24, 11, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '4zWfJm5YZnk7ML3mRRi0Xo', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273818831d1d40b4b5a53a70714', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02818831d1d40b4b5a53a70714', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851818831d1d40b4b5a53a70714', + 'width': 64, + }), + ]), + 'name': 'Sadgirl', + 'release_date': '2025-04-25', + 'release_date_precision': , + 'total_tracks': 11, + 'tracks': list([ + dict({ + 'artists': list([ dict({ - 'artist_id': '3pK4EcflBpG1Kpmjk5LK2R', - 'name': 'Joy Anonymous', - 'uri': 'spotify:artist:3pK4EcflBpG1Kpmjk5LK2R', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), + ]), + 'disc_number': 1, + 'duration_ms': 173197, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3jowQzeDQU4dIAKQg7ahXh', + }), + 'href': 'https://api.spotify.com/v1/tracks/3jowQzeDQU4dIAKQg7ahXh', + 'is_local': False, + 'name': 'Vertigo', + 'track_id': '3jowQzeDQU4dIAKQg7ahXh', + 'track_number': 1, + 'uri': 'spotify:track:3jowQzeDQU4dIAKQg7ahXh', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '5he5w2lnU9x7JFhnwcekXX', - 'name': 'Skrillex', - 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 453068, + 'duration_ms': 168837, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc', + 'spotify': 'https://open.spotify.com/track/5f2nYBpaCRJ7rFUplXbn3g', }), - 'href': 'https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc', + 'href': 'https://api.spotify.com/v1/tracks/5f2nYBpaCRJ7rFUplXbn3g', 'is_local': False, - 'name': 'glow', - 'track_id': '3i9QKRl5Ql3pgUfNdYBVTc', - 'track_number': 12, - 'uri': 'spotify:track:3i9QKRl5Ql3pgUfNdYBVTc', + 'name': 'Sadgirl', + 'track_id': '5f2nYBpaCRJ7rFUplXbn3g', + 'track_number': 2, + 'uri': 'spotify:track:5f2nYBpaCRJ7rFUplXbn3g', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 31749, - 'explicit': False, + 'duration_ms': 169015, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW', + 'spotify': 'https://open.spotify.com/track/7CCwnjE3M1Xe9Jo95my7nh', }), - 'href': 'https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW', + 'href': 'https://api.spotify.com/v1/tracks/7CCwnjE3M1Xe9Jo95my7nh', 'is_local': False, - 'name': '.seven', - 'track_id': '2OLH9ukOFDVBMuVUuy2sFW', - 'track_number': 13, - 'uri': 'spotify:track:2OLH9ukOFDVBMuVUuy2sFW', + 'name': 'Jelly Tot', + 'track_id': '7CCwnjE3M1Xe9Jo95my7nh', + 'track_number': 3, + 'uri': 'spotify:track:7CCwnjE3M1Xe9Jo95my7nh', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', + }), + dict({ + 'artist_id': '6NvsbUgzHkjZK3ZUEWui41', + 'name': 'Kai Bosch', + 'uri': 'spotify:artist:6NvsbUgzHkjZK3ZUEWui41', }), ]), 'disc_number': 1, - 'duration_ms': 220656, + 'duration_ms': 185240, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW', + 'spotify': 'https://open.spotify.com/track/3BpnmRfLj1jmc3yGl2VnsU', }), - 'href': 'https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW', + 'href': 'https://api.spotify.com/v1/tracks/3BpnmRfLj1jmc3yGl2VnsU', 'is_local': False, - 'name': 'i saw you', - 'track_id': '3DzWFxyzsAVblVNndiU9CW', - 'track_number': 14, - 'uri': 'spotify:track:3DzWFxyzsAVblVNndiU9CW', + 'name': 'Hello, Anxiety', + 'track_id': '3BpnmRfLj1jmc3yGl2VnsU', + 'track_number': 4, + 'uri': 'spotify:track:3BpnmRfLj1jmc3yGl2VnsU', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 15037, + 'duration_ms': 131641, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA', + 'spotify': 'https://open.spotify.com/track/5hCKmWQaypyWXpUrkN1V43', }), - 'href': 'https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA', + 'href': 'https://api.spotify.com/v1/tracks/5hCKmWQaypyWXpUrkN1V43', 'is_local': False, - 'name': '.eight', - 'track_id': '1aTcAf7K1ym8lBcuu8nmJA', - 'track_number': 15, - 'uri': 'spotify:track:1aTcAf7K1ym8lBcuu8nmJA', + 'name': 'I Need a Man', + 'track_id': '5hCKmWQaypyWXpUrkN1V43', + 'track_number': 5, + 'uri': 'spotify:track:5hCKmWQaypyWXpUrkN1V43', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), + ]), + 'disc_number': 1, + 'duration_ms': 195192, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7aDc1BsrCR6qArZ5opHGSB', + }), + 'href': 'https://api.spotify.com/v1/tracks/7aDc1BsrCR6qArZ5opHGSB', + 'is_local': False, + 'name': 'Liar Liar', + 'track_id': '7aDc1BsrCR6qArZ5opHGSB', + 'track_number': 6, + 'uri': 'spotify:track:7aDc1BsrCR6qArZ5opHGSB', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '5s6TJEuHTr9GR894wc6VfP', - 'name': 'Emmylou Harris', - 'uri': 'spotify:artist:5s6TJEuHTr9GR894wc6VfP', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 200737, + 'duration_ms': 220948, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X', + 'spotify': 'https://open.spotify.com/track/1GtFbMSPJV0cr7P7T51tou', }), - 'href': 'https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X', + 'href': 'https://api.spotify.com/v1/tracks/1GtFbMSPJV0cr7P7T51tou', 'is_local': False, - 'name': 'where will i be', - 'track_id': '4S05mkyTtAiWy5l4umch0X', - 'track_number': 16, - 'uri': 'spotify:track:4S05mkyTtAiWy5l4umch0X', + 'name': 'Kingpin', + 'track_id': '1GtFbMSPJV0cr7P7T51tou', + 'track_number': 7, + 'uri': 'spotify:track:1GtFbMSPJV0cr7P7T51tou', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 19060, + 'duration_ms': 189183, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN', + 'spotify': 'https://open.spotify.com/track/1YI5taPXjg9yX8DdjTcNxT', }), - 'href': 'https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN', + 'href': 'https://api.spotify.com/v1/tracks/1YI5taPXjg9yX8DdjTcNxT', 'is_local': False, - 'name': '.nine', - 'track_id': '5aNwAqN5Gk5oZIwW5KfhXN', - 'track_number': 17, - 'uri': 'spotify:track:5aNwAqN5Gk5oZIwW5KfhXN', + 'name': 'Future Us', + 'track_id': '1YI5taPXjg9yX8DdjTcNxT', + 'track_number': 8, + 'uri': 'spotify:track:1YI5taPXjg9yX8DdjTcNxT', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '3pK4EcflBpG1Kpmjk5LK2R', - 'name': 'Joy Anonymous', - 'uri': 'spotify:artist:3pK4EcflBpG1Kpmjk5LK2R', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 344068, + 'duration_ms': 172079, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv', + 'spotify': 'https://open.spotify.com/track/7gdDCxXKSLh1hFI95rQtfs', }), - 'href': 'https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv', + 'href': 'https://api.spotify.com/v1/tracks/7gdDCxXKSLh1hFI95rQtfs', 'is_local': False, - 'name': 'peace u need', - 'track_id': '4A8tKYA7gwZzQ4jVwIv1sv', - 'track_number': 18, - 'uri': 'spotify:track:4A8tKYA7gwZzQ4jVwIv1sv', + 'name': 'American Dream', + 'track_id': '7gdDCxXKSLh1hFI95rQtfs', + 'track_number': 9, + 'uri': 'spotify:track:7gdDCxXKSLh1hFI95rQtfs', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 29540, + 'duration_ms': 190568, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor', + 'spotify': 'https://open.spotify.com/track/6GqOX1HgsKNF3tNa7mO1Sa', }), - 'href': 'https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor', + 'href': 'https://api.spotify.com/v1/tracks/6GqOX1HgsKNF3tNa7mO1Sa', 'is_local': False, - 'name': '.ten', - 'track_id': '2feEZkLf7dZUueeVBNsdor', - 'track_number': 19, - 'uri': 'spotify:track:2feEZkLf7dZUueeVBNsdor', + 'name': 'Jean (Two Ships)', + 'track_id': '6GqOX1HgsKNF3tNa7mO1Sa', + 'track_number': 10, + 'uri': 'spotify:track:6GqOX1HgsKNF3tNa7mO1Sa', }), dict({ 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '3IunaFjvNKj98JW89JYv9u', - 'name': 'The Japanese House', - 'uri': 'spotify:artist:3IunaFjvNKj98JW89JYv9u', - }), - dict({ - 'artist_id': '6M98IZJK2tx6x2YVyHua9K', - 'name': 'Scott Hardkiss', - 'uri': 'spotify:artist:6M98IZJK2tx6x2YVyHua9K', + 'artist_id': '2z6JjrrJKNLilqlx8mlxcc', + 'name': 'Litany', + 'uri': 'spotify:artist:2z6JjrrJKNLilqlx8mlxcc', }), ]), 'disc_number': 1, - 'duration_ms': 314007, + 'duration_ms': 197739, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO', + 'spotify': 'https://open.spotify.com/track/38TssrSNLgbJXidJ07VtFl', }), - 'href': 'https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO', + 'href': 'https://api.spotify.com/v1/tracks/38TssrSNLgbJXidJ07VtFl', 'is_local': False, - 'name': 'backseat', - 'track_id': '61pyjiweMDS1h930OgS0XO', - 'track_number': 20, - 'uri': 'spotify:track:61pyjiweMDS1h930OgS0XO', + 'name': 'Alright', + 'track_id': '38TssrSNLgbJXidJ07VtFl', + 'track_number': 11, + 'uri': 'spotify:track:38TssrSNLgbJXidJ07VtFl', }), ]), - 'uri': 'spotify:album:3DQueEd1Ft9PHWgovDzPKh', + 'uri': 'spotify:album:4zWfJm5YZnk7ML3mRRi0Xo', }), }), dict({ - 'added_at': datetime.datetime(2024, 8, 15, 22, 0, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2024, 10, 17, 22, 0, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '27ynHS80OjICdw3qLNMgQP', + 'album_id': '6mEZu9pcOyIcUSmWTofkaj', 'album_type': , 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f29bc92a6314f290b96ae829', + 'url': 'https://i.scdn.co/image/ab67616d0000b273eb7e716f9775588178a8abe5', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f29bc92a6314f290b96ae829', + 'url': 'https://i.scdn.co/image/ab67616d00001e02eb7e716f9775588178a8abe5', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f29bc92a6314f290b96ae829', + 'url': 'https://i.scdn.co/image/ab67616d00004851eb7e716f9775588178a8abe5', 'width': 64, }), ]), - 'name': 'Paradise State of Mind', - 'release_date': '2024-08-16', + 'name': '3AM (LA LA LA)', + 'release_date': '2024-10-18', 'release_date_precision': , - 'total_tracks': 11, + 'total_tracks': 12, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 189099, + 'duration_ms': 215221, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL', + 'spotify': 'https://open.spotify.com/track/1qVq8dBvDdpz6WhZcaGxy5', }), - 'href': 'https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL', + 'href': 'https://api.spotify.com/v1/tracks/1qVq8dBvDdpz6WhZcaGxy5', 'is_local': False, - 'name': 'See You In The Afterlife', - 'track_id': '6qtGeawfnmQMUWyQ95LdIL', + 'name': 'WHO KNOWS WHAT YOU’LL FIND?', + 'track_id': '1qVq8dBvDdpz6WhZcaGxy5', 'track_number': 1, - 'uri': 'spotify:track:6qtGeawfnmQMUWyQ95LdIL', + 'uri': 'spotify:track:1qVq8dBvDdpz6WhZcaGxy5', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 259252, + 'duration_ms': 155343, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ', + 'spotify': 'https://open.spotify.com/track/4LJOC3L3wmOqX7jxC7DNTb', }), - 'href': 'https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ', + 'href': 'https://api.spotify.com/v1/tracks/4LJOC3L3wmOqX7jxC7DNTb', 'is_local': False, - 'name': 'Lost In Space', - 'track_id': '6r9GzPEdq4bGp507oxt2iZ', + 'name': 'I CAN’T LOSE YOU', + 'track_id': '4LJOC3L3wmOqX7jxC7DNTb', 'track_number': 2, - 'uri': 'spotify:track:6r9GzPEdq4bGp507oxt2iZ', + 'uri': 'spotify:track:4LJOC3L3wmOqX7jxC7DNTb', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 153005, - 'explicit': True, + 'duration_ms': 224833, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm', + 'spotify': 'https://open.spotify.com/track/0dIwVz7r4zpaZ3Yw2nU5We', }), - 'href': 'https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm', + 'href': 'https://api.spotify.com/v1/tracks/0dIwVz7r4zpaZ3Yw2nU5We', 'is_local': False, - 'name': 'Take Me Back', - 'track_id': '0CUojUDoPZvjKqPPLHaOTm', + 'name': 'CONTROL', + 'track_id': '0dIwVz7r4zpaZ3Yw2nU5We', 'track_number': 3, - 'uri': 'spotify:track:0CUojUDoPZvjKqPPLHaOTm', + 'uri': 'spotify:track:0dIwVz7r4zpaZ3Yw2nU5We', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 274446, + 'duration_ms': 195929, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj', + 'spotify': 'https://open.spotify.com/track/6ZmKtSbuCPrRWhrMltR3Pc', }), - 'href': 'https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj', + 'href': 'https://api.spotify.com/v1/tracks/6ZmKtSbuCPrRWhrMltR3Pc', 'is_local': False, - 'name': 'Let Go', - 'track_id': '090Vhdep7tK2kXLy2M1vLj', + 'name': 'SO WHAT', + 'track_id': '6ZmKtSbuCPrRWhrMltR3Pc', 'track_number': 4, - 'uri': 'spotify:track:090Vhdep7tK2kXLy2M1vLj', + 'uri': 'spotify:track:6ZmKtSbuCPrRWhrMltR3Pc', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 219300, - 'explicit': False, + 'duration_ms': 213794, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ', + 'spotify': 'https://open.spotify.com/track/1s4f5ImHiBmm9OzgGRSLw3', }), - 'href': 'https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ', + 'href': 'https://api.spotify.com/v1/tracks/1s4f5ImHiBmm9OzgGRSLw3', 'is_local': False, - 'name': 'Feed Me', - 'track_id': '6QHE0tQs8NFE3DGDldP1DJ', + 'name': 'BREAKBEAT', + 'track_id': '1s4f5ImHiBmm9OzgGRSLw3', 'track_number': 5, - 'uri': 'spotify:track:6QHE0tQs8NFE3DGDldP1DJ', + 'uri': 'spotify:track:1s4f5ImHiBmm9OzgGRSLw3', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 288544, - 'explicit': False, + 'duration_ms': 379101, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n', + 'spotify': 'https://open.spotify.com/track/07Znaf6hyuAoxiqPXYC58L', }), - 'href': 'https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n', + 'href': 'https://api.spotify.com/v1/tracks/07Znaf6hyuAoxiqPXYC58L', 'is_local': False, - 'name': 'Paradise State Of Mind', - 'track_id': '2cIP5wh1Ala2rWVwTOgg4n', + 'name': 'SICKO', + 'track_id': '07Znaf6hyuAoxiqPXYC58L', 'track_number': 6, - 'uri': 'spotify:track:2cIP5wh1Ala2rWVwTOgg4n', + 'uri': 'spotify:track:07Znaf6hyuAoxiqPXYC58L', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + }), + dict({ + 'artist_id': '0iUw5KL7NRlfKK3tZJNK9b', + 'name': 'Sweetie Irie', + 'uri': 'spotify:artist:0iUw5KL7NRlfKK3tZJNK9b', }), ]), 'disc_number': 1, - 'duration_ms': 328024, + 'duration_ms': 251537, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP', + 'spotify': 'https://open.spotify.com/track/3PISUiCZILLzJJSp3c3GhE', }), - 'href': 'https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP', + 'href': 'https://api.spotify.com/v1/tracks/3PISUiCZILLzJJSp3c3GhE', 'is_local': False, - 'name': 'Glitchzig', - 'track_id': '5gygubFSFXfLDhoMnpAhzP', + 'name': 'REAL MOVE TOUCH', + 'track_id': '3PISUiCZILLzJJSp3c3GhE', 'track_number': 7, - 'uri': 'spotify:track:5gygubFSFXfLDhoMnpAhzP', + 'uri': 'spotify:track:3PISUiCZILLzJJSp3c3GhE', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 253257, + 'duration_ms': 245358, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd', + 'spotify': 'https://open.spotify.com/track/4qXd31Nk2ifvRNuC1cUwtd', }), - 'href': 'https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd', + 'href': 'https://api.spotify.com/v1/tracks/4qXd31Nk2ifvRNuC1cUwtd', 'is_local': False, - 'name': 'The Holy Shangri-La', - 'track_id': '08vuNWfV1WOndL3yMetfXd', + 'name': 'FAR OUT', + 'track_id': '4qXd31Nk2ifvRNuC1cUwtd', 'track_number': 8, - 'uri': 'spotify:track:08vuNWfV1WOndL3yMetfXd', + 'uri': 'spotify:track:4qXd31Nk2ifvRNuC1cUwtd', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 183139, + 'duration_ms': 207619, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK', + 'spotify': 'https://open.spotify.com/track/3nXYo1X0TzTSOOhumtp1r4', }), - 'href': 'https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK', + 'href': 'https://api.spotify.com/v1/tracks/3nXYo1X0TzTSOOhumtp1r4', 'is_local': False, - 'name': 'Sometimes I Wanna Be Bad', - 'track_id': '0wyQNzcMUYFec1B19hu6pK', + 'name': 'JANET', + 'track_id': '3nXYo1X0TzTSOOhumtp1r4', 'track_number': 9, - 'uri': 'spotify:track:0wyQNzcMUYFec1B19hu6pK', + 'uri': 'spotify:track:3nXYo1X0TzTSOOhumtp1r4', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 204111, - 'explicit': True, + 'duration_ms': 173731, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS', + 'spotify': 'https://open.spotify.com/track/4RLg7ZKJU51uhPPxWqS0XT', + }), + 'href': 'https://api.spotify.com/v1/tracks/4RLg7ZKJU51uhPPxWqS0XT', + 'is_local': False, + 'name': 'SO TRU', + 'track_id': '4RLg7ZKJU51uhPPxWqS0XT', + 'track_number': 10, + 'uri': 'spotify:track:4RLg7ZKJU51uhPPxWqS0XT', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 274176, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6Ghkq3LC0vhyBxaHQgZi7a', }), - 'href': 'https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS', + 'href': 'https://api.spotify.com/v1/tracks/6Ghkq3LC0vhyBxaHQgZi7a', 'is_local': False, - 'name': 'Chasing Low Vibrations', - 'track_id': '1G2bNCn8x1WrbeIBBvfQZS', - 'track_number': 10, - 'uri': 'spotify:track:1G2bNCn8x1WrbeIBBvfQZS', + 'name': 'WRONG IDEA', + 'track_id': '6Ghkq3LC0vhyBxaHQgZi7a', + 'track_number': 11, + 'uri': 'spotify:track:6Ghkq3LC0vhyBxaHQgZi7a', }), dict({ 'artists': list([ dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', }), ]), 'disc_number': 1, - 'duration_ms': 264919, + 'duration_ms': 320432, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b', + 'spotify': 'https://open.spotify.com/track/0VFQUkXL2wtfAh0W4jSJGM', }), - 'href': 'https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b', + 'href': 'https://api.spotify.com/v1/tracks/0VFQUkXL2wtfAh0W4jSJGM', 'is_local': False, - 'name': 'A Diamond To Be Born', - 'track_id': '60BqMpaQjhET1YZhou4t2b', - 'track_number': 11, - 'uri': 'spotify:track:60BqMpaQjhET1YZhou4t2b', + 'name': '3AM (LA LA LA)', + 'track_id': '0VFQUkXL2wtfAh0W4jSJGM', + 'track_number': 12, + 'uri': 'spotify:track:0VFQUkXL2wtfAh0W4jSJGM', }), ]), - 'uri': 'spotify:album:27ynHS80OjICdw3qLNMgQP', + 'uri': 'spotify:album:6mEZu9pcOyIcUSmWTofkaj', }), }), dict({ - 'added_at': datetime.datetime(2024, 8, 15, 22, 0, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2024, 9, 5, 22, 0, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '33tDS6r9DQBx9LaYUY7wh1', + 'album_id': '3DQueEd1Ft9PHWgovDzPKh', 'album_type': , 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b7132ada01c73861b17c978a', + 'url': 'https://i.scdn.co/image/ab67616d0000b2739574df129a4a2f4fa4990286', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b7132ada01c73861b17c978a', + 'url': 'https://i.scdn.co/image/ab67616d00001e029574df129a4a2f4fa4990286', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b7132ada01c73861b17c978a', + 'url': 'https://i.scdn.co/image/ab67616d000048519574df129a4a2f4fa4990286', 'width': 64, }), ]), - 'name': 'Melodramatic', - 'release_date': '2024-08-16', + 'name': 'ten days', + 'release_date': '2024-09-06', 'release_date_precision': , - 'total_tracks': 9, + 'total_tracks': 20, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 233505, + 'duration_ms': 30857, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq', + 'spotify': 'https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc', }), - 'href': 'https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq', + 'href': 'https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc', 'is_local': False, - 'name': 'The Phoenix', - 'track_id': '0w13ZqgFrKq7BYgsc2EKvq', + 'name': '.one', + 'track_id': '00nDbqJkHBGUFdim9M0xGc', 'track_number': 1, - 'uri': 'spotify:track:0w13ZqgFrKq7BYgsc2EKvq', + 'uri': 'spotify:track:00nDbqJkHBGUFdim9M0xGc', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6l7R1jntPahGxwJt7Tky8h', + 'name': 'Obongjayar', + 'uri': 'spotify:artist:6l7R1jntPahGxwJt7Tky8h', }), ]), 'disc_number': 1, - 'duration_ms': 190296, + 'duration_ms': 220653, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85', + 'spotify': 'https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi', }), - 'href': 'https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85', + 'href': 'https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi', 'is_local': False, - 'name': "Baby Don't Give Up!", - 'track_id': '71u2sgaT6I05JY2n6aom85', + 'name': 'adore u', + 'track_id': '1rf4SX7dduNbrNnOmupLzi', 'track_number': 2, - 'uri': 'spotify:track:71u2sgaT6I05JY2n6aom85', + 'uri': 'spotify:track:1rf4SX7dduNbrNnOmupLzi', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 157712, + 'duration_ms': 10670, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim', + 'spotify': 'https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH', }), - 'href': 'https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim', + 'href': 'https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH', 'is_local': False, - 'name': 'As Soon As I Discover', - 'track_id': '3QuBIm40rJbw5asM9tGjim', + 'name': '.two', + 'track_id': '0lt9clHEwYyheuC9rik9UH', 'track_number': 3, - 'uri': 'spotify:track:3QuBIm40rJbw5asM9tGjim', + 'uri': 'spotify:track:0lt9clHEwYyheuC9rik9UH', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), - ]), - 'disc_number': 1, - 'duration_ms': 191740, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv', - }), - 'href': 'https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv', - 'is_local': False, - 'name': 'My Little One', - 'track_id': '1AieqRevDfu4uQlhTIWJbv', - 'track_number': 4, - 'uri': 'spotify:track:1AieqRevDfu4uQlhTIWJbv', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '6Ja6zFB5d7XRihhfMo6KzY', + 'name': 'Jozzy', + 'uri': 'spotify:artist:6Ja6zFB5d7XRihhfMo6KzY', }), ]), 'disc_number': 1, - 'duration_ms': 218015, + 'duration_ms': 181545, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO', + 'spotify': 'https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i', }), - 'href': 'https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO', + 'href': 'https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i', 'is_local': False, - 'name': 'Love Away', - 'track_id': '3MTbJM0UmqrgSr9thX1JwO', - 'track_number': 5, - 'uri': 'spotify:track:3MTbJM0UmqrgSr9thX1JwO', + 'name': 'ten', + 'track_id': '6twB0uYXJYW9t5GHfYaQ3i', + 'track_number': 4, + 'uri': 'spotify:track:6twB0uYXJYW9t5GHfYaQ3i', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 203419, + 'duration_ms': 15034, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4', + 'spotify': 'https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW', }), - 'href': 'https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4', + 'href': 'https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW', 'is_local': False, - 'name': 'Alone In The Darkness', - 'track_id': '5B5l5KuDqLT73R3lgDI7H4', - 'track_number': 6, - 'uri': 'spotify:track:5B5l5KuDqLT73R3lgDI7H4', + 'name': '.three', + 'track_id': '6G7TRmzTt9tnrM0QqSVpJW', + 'track_number': 5, + 'uri': 'spotify:track:6G7TRmzTt9tnrM0QqSVpJW', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), - ]), - 'disc_number': 1, - 'duration_ms': 180967, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y', - }), - 'href': 'https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y', - 'is_local': False, - 'name': 'My Way', - 'track_id': '4tkOZG1F6og5NZW1uD3z7Y', - 'track_number': 7, - 'uri': 'spotify:track:4tkOZG1F6og5NZW1uD3z7Y', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '2WoVwexZuODvclzULjPQtm', + 'name': 'Sampha', + 'uri': 'spotify:artist:2WoVwexZuODvclzULjPQtm', }), ]), 'disc_number': 1, - 'duration_ms': 178997, + 'duration_ms': 214469, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s', + 'spotify': 'https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X', }), - 'href': 'https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s', + 'href': 'https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X', 'is_local': False, - 'name': 'I Promise Myself', - 'track_id': '0CtfbRy4cB2FOEsP5WIZ2s', - 'track_number': 8, - 'uri': 'spotify:track:0CtfbRy4cB2FOEsP5WIZ2s', + 'name': 'fear less', + 'track_id': '4IHblO52meh2jwqES1BA7X', + 'track_number': 6, + 'uri': 'spotify:track:4IHblO52meh2jwqES1BA7X', }), dict({ 'artists': list([ dict({ - 'artist_id': '68NOjWuVYBRXzYwhel3jAl', - 'name': 'SIAMES', - 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 201119, + 'duration_ms': 9856, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg', + 'spotify': 'https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq', }), - 'href': 'https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg', + 'href': 'https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq', 'is_local': False, - 'name': 'Post Tour Depression', - 'track_id': '3FZwYiZufmIgKyfqgMnpPg', - 'track_number': 9, - 'uri': 'spotify:track:3FZwYiZufmIgKyfqgMnpPg', - }), - ]), - 'uri': 'spotify:album:33tDS6r9DQBx9LaYUY7wh1', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 7, 12, 11, 46, 14, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '0m14dyyJemQy44KVhsKnaj', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032', - 'width': 64, - }), - ]), - 'name': 'PMO: An Atriarchy Experience', - 'release_date': '2024-07-11', - 'release_date_precision': , - 'total_tracks': 17, - 'tracks': list([ + 'name': '.four', + 'track_id': '1wU9pfdw6ht8HKfxz6wMNq', + 'track_number': 7, + 'uri': 'spotify:track:1wU9pfdw6ht8HKfxz6wMNq', + }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '7xplDB5Ftf0oECpcFlKE99', - 'name': 'Owen CMYK', - 'uri': 'spotify:artist:7xplDB5Ftf0oECpcFlKE99', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + 'artist_id': '4PLsMEk2DCRVlVL2a9aZAv', + 'name': 'SOAK', + 'uri': 'spotify:artist:4PLsMEk2DCRVlVL2a9aZAv', }), ]), 'disc_number': 1, - 'duration_ms': 50572, + 'duration_ms': 260997, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG', + 'spotify': 'https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a', }), - 'href': 'https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG', + 'href': 'https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a', 'is_local': False, - 'name': 'Sea Shanty', - 'track_id': '2QVz5Ndv0faqrTNyMbK6HG', - 'track_number': 1, - 'uri': 'spotify:track:2QVz5Ndv0faqrTNyMbK6HG', + 'name': 'just stand there', + 'track_id': '2D9a9CXeo3HFtVeaNlzp4a', + 'track_number': 8, + 'uri': 'spotify:track:2D9a9CXeo3HFtVeaNlzp4a', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '0GONM3s2unLmwUiqNneycA', - 'name': 'M17', - 'uri': 'spotify:artist:0GONM3s2unLmwUiqNneycA', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), + ]), + 'disc_number': 1, + 'duration_ms': 15254, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM', + }), + 'href': 'https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM', + 'is_local': False, + 'name': '.five', + 'track_id': '3vTHKAYJy0hY1OkVv1qLNM', + 'track_number': 9, + 'uri': 'spotify:track:3vTHKAYJy0hY1OkVv1qLNM', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '26z8iLfADGuSugsu63BW2s', - 'name': 'Confuzzled', - 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', - 'name': 'Beautiful Panda', - 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', + 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', + 'name': 'Anderson .Paak', + 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', }), dict({ - 'artist_id': '6HiHuFsJrutJGZT2GAwG4L', - 'name': 'itsAZ', - 'uri': 'spotify:artist:6HiHuFsJrutJGZT2GAwG4L', + 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', + 'name': 'CHIKA', + 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', }), ]), 'disc_number': 1, - 'duration_ms': 164383, - 'explicit': False, + 'duration_ms': 226677, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA', + 'spotify': 'https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6', }), - 'href': 'https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA', + 'href': 'https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6', 'is_local': False, - 'name': 'Castle in the Sky', - 'track_id': '3yoGnoFkQLZa1rPbhycLgA', - 'track_number': 2, - 'uri': 'spotify:track:3yoGnoFkQLZa1rPbhycLgA', + 'name': 'places to be', + 'track_id': '1qfJ6OvxrspQTmcvdIEoX6', + 'track_number': 10, + 'uri': 'spotify:track:1qfJ6OvxrspQTmcvdIEoX6', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', - }), - dict({ - 'artist_id': '26z8iLfADGuSugsu63BW2s', - 'name': 'Confuzzled', - 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 115000, + 'duration_ms': 28836, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV', + 'spotify': 'https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG', }), - 'href': 'https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV', + 'href': 'https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG', 'is_local': False, - 'name': 'Boomer Wonderland', - 'track_id': '11CVrcm1dz0jKNHvFlbkOV', - 'track_number': 3, - 'uri': 'spotify:track:11CVrcm1dz0jKNHvFlbkOV', + 'name': '.six', + 'track_id': '13H2XgH3k8SEptaoD5qeLG', + 'track_number': 11, + 'uri': 'spotify:track:13H2XgH3k8SEptaoD5qeLG', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '2RaLCgWRwHSBJySoMVZi1U', - 'name': 'JPecs', - 'uri': 'spotify:artist:2RaLCgWRwHSBJySoMVZi1U', + 'artist_id': '59MDSNIYoOY0WRYuodzJPD', + 'name': 'Duskus', + 'uri': 'spotify:artist:59MDSNIYoOY0WRYuodzJPD', }), dict({ - 'artist_id': '49X16juWaNmVsSkftsPI9u', - 'name': 'javid74', - 'uri': 'spotify:artist:49X16juWaNmVsSkftsPI9u', + 'artist_id': '7Eu1txygG6nJttLHbZdQOh', + 'name': 'Four Tet', + 'uri': 'spotify:artist:7Eu1txygG6nJttLHbZdQOh', }), dict({ - 'artist_id': '6HiHuFsJrutJGZT2GAwG4L', - 'name': 'itsAZ', - 'uri': 'spotify:artist:6HiHuFsJrutJGZT2GAwG4L', + 'artist_id': '3pK4EcflBpG1Kpmjk5LK2R', + 'name': 'Joy Anonymous', + 'uri': 'spotify:artist:3pK4EcflBpG1Kpmjk5LK2R', }), dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + 'artist_id': '5he5w2lnU9x7JFhnwcekXX', + 'name': 'Skrillex', + 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', }), + ]), + 'disc_number': 1, + 'duration_ms': 453068, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc', + }), + 'href': 'https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc', + 'is_local': False, + 'name': 'glow', + 'track_id': '3i9QKRl5Ql3pgUfNdYBVTc', + 'track_number': 12, + 'uri': 'spotify:track:3i9QKRl5Ql3pgUfNdYBVTc', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', - 'name': 'Beautiful Panda', - 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 114622, + 'duration_ms': 31749, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS', + 'spotify': 'https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW', }), - 'href': 'https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS', + 'href': 'https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW', 'is_local': False, - 'name': '3rd Place', - 'track_id': '6nYAajfD6iXhHLTjXFV3NS', - 'track_number': 4, - 'uri': 'spotify:track:6nYAajfD6iXhHLTjXFV3NS', + 'name': '.seven', + 'track_id': '2OLH9ukOFDVBMuVUuy2sFW', + 'track_number': 13, + 'uri': 'spotify:track:2OLH9ukOFDVBMuVUuy2sFW', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), + ]), + 'disc_number': 1, + 'duration_ms': 220656, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW', + }), + 'href': 'https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW', + 'is_local': False, + 'name': 'i saw you', + 'track_id': '3DzWFxyzsAVblVNndiU9CW', + 'track_number': 14, + 'uri': 'spotify:track:3DzWFxyzsAVblVNndiU9CW', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '6CPBjEKtaoONitOOYJEPu9', - 'name': 'the_bardificer', - 'uri': 'spotify:artist:6CPBjEKtaoONitOOYJEPu9', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), + ]), + 'disc_number': 1, + 'duration_ms': 15037, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA', + }), + 'href': 'https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA', + 'is_local': False, + 'name': '.eight', + 'track_id': '1aTcAf7K1ym8lBcuu8nmJA', + 'track_number': 15, + 'uri': 'spotify:track:1aTcAf7K1ym8lBcuu8nmJA', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '1dxMexw9HIXRJX53LQZUOz', - 'name': 'Ash Artz', - 'uri': 'spotify:artist:1dxMexw9HIXRJX53LQZUOz', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '64zUEoPQHdOq7bYmLwZRSi', - 'name': 'Luna', - 'uri': 'spotify:artist:64zUEoPQHdOq7bYmLwZRSi', + 'artist_id': '5s6TJEuHTr9GR894wc6VfP', + 'name': 'Emmylou Harris', + 'uri': 'spotify:artist:5s6TJEuHTr9GR894wc6VfP', }), + ]), + 'disc_number': 1, + 'duration_ms': 200737, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X', + }), + 'href': 'https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X', + 'is_local': False, + 'name': 'where will i be', + 'track_id': '4S05mkyTtAiWy5l4umch0X', + 'track_number': 16, + 'uri': 'spotify:track:4S05mkyTtAiWy5l4umch0X', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '4PJ8Omgo9ObI7mb9COCfm8', - 'name': 'Hatmiss', - 'uri': 'spotify:artist:4PJ8Omgo9ObI7mb9COCfm8', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 234500, + 'duration_ms': 19060, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV', + 'spotify': 'https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN', }), - 'href': 'https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV', + 'href': 'https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN', 'is_local': False, - 'name': 'No Time Left To Lose', - 'track_id': '5ZnK0HCoBv6fgdc2PMeAsV', - 'track_number': 5, - 'uri': 'spotify:track:5ZnK0HCoBv6fgdc2PMeAsV', + 'name': '.nine', + 'track_id': '5aNwAqN5Gk5oZIwW5KfhXN', + 'track_number': 17, + 'uri': 'spotify:track:5aNwAqN5Gk5oZIwW5KfhXN', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', - 'name': 'Beautiful Panda', - 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', - }), - dict({ - 'artist_id': '4qsHDbno8XG3abDsyq8ztN', - 'name': 'mango', - 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '4PJ8Omgo9ObI7mb9COCfm8', - 'name': 'Hatmiss', - 'uri': 'spotify:artist:4PJ8Omgo9ObI7mb9COCfm8', + 'artist_id': '3pK4EcflBpG1Kpmjk5LK2R', + 'name': 'Joy Anonymous', + 'uri': 'spotify:artist:3pK4EcflBpG1Kpmjk5LK2R', }), ]), 'disc_number': 1, - 'duration_ms': 36750, + 'duration_ms': 344068, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9', + 'spotify': 'https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv', }), - 'href': 'https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9', + 'href': 'https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv', 'is_local': False, - 'name': "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", - 'track_id': '2hyVHjnnm3KUO2a2Qg1eM9', - 'track_number': 6, - 'uri': 'spotify:track:2hyVHjnnm3KUO2a2Qg1eM9', + 'name': 'peace u need', + 'track_id': '4A8tKYA7gwZzQ4jVwIv1sv', + 'track_number': 18, + 'uri': 'spotify:track:4A8tKYA7gwZzQ4jVwIv1sv', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '5rqsRqoG9bfilmZqxOOkek', - 'name': 'gRRiever', - 'uri': 'spotify:artist:5rqsRqoG9bfilmZqxOOkek', - }), - dict({ - 'artist_id': '2STTnw4FJjSXRH6bItWl0F', - 'name': 'StoneEars', - 'uri': 'spotify:artist:2STTnw4FJjSXRH6bItWl0F', - }), - dict({ - 'artist_id': '6QqFHkMOC59TL7W5hfOsiU', - 'name': 'SofiUH', - 'uri': 'spotify:artist:6QqFHkMOC59TL7W5hfOsiU', - }), - dict({ - 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', - 'name': 'Beautiful Panda', - 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), 'disc_number': 1, - 'duration_ms': 170854, + 'duration_ms': 29540, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9', + 'spotify': 'https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor', }), - 'href': 'https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9', + 'href': 'https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor', 'is_local': False, - 'name': 'God Gamer', - 'track_id': '593aq2LX6veq1Ft0kHvrS9', - 'track_number': 7, - 'uri': 'spotify:track:593aq2LX6veq1Ft0kHvrS9', + 'name': '.ten', + 'track_id': '2feEZkLf7dZUueeVBNsdor', + 'track_number': 19, + 'uri': 'spotify:track:2feEZkLf7dZUueeVBNsdor', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '6RmWDtsKktRw2v9FP1SFni', - 'name': 'yubyub', - 'uri': 'spotify:artist:6RmWDtsKktRw2v9FP1SFni', - }), - dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', - }), - dict({ - 'artist_id': '190GSW42zDnQc16U5XgULT', - 'name': 'Jo the Forggie', - 'uri': 'spotify:artist:190GSW42zDnQc16U5XgULT', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), dict({ - 'artist_id': '26z8iLfADGuSugsu63BW2s', - 'name': 'Confuzzled', - 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + 'artist_id': '3IunaFjvNKj98JW89JYv9u', + 'name': 'The Japanese House', + 'uri': 'spotify:artist:3IunaFjvNKj98JW89JYv9u', }), dict({ - 'artist_id': '1uLBqEv467ZgclJBIdWlCc', - 'name': 'fluentsynth', - 'uri': 'spotify:artist:1uLBqEv467ZgclJBIdWlCc', + 'artist_id': '6M98IZJK2tx6x2YVyHua9K', + 'name': 'Scott Hardkiss', + 'uri': 'spotify:artist:6M98IZJK2tx6x2YVyHua9K', }), ]), 'disc_number': 1, - 'duration_ms': 80000, - 'explicit': True, + 'duration_ms': 314007, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5', + 'spotify': 'https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO', }), - 'href': 'https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5', + 'href': 'https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO', 'is_local': False, - 'name': 'Purple Streamer Battle', - 'track_id': '5WWShf7Lo5EBnIBGdbmKN5', - 'track_number': 8, - 'uri': 'spotify:track:5WWShf7Lo5EBnIBGdbmKN5', + 'name': 'backseat', + 'track_id': '61pyjiweMDS1h930OgS0XO', + 'track_number': 20, + 'uri': 'spotify:track:61pyjiweMDS1h930OgS0XO', + }), + ]), + 'uri': 'spotify:album:3DQueEd1Ft9PHWgovDzPKh', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 8, 15, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '27ynHS80OjICdw3qLNMgQP', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f6e25db6bc1a1f9e5fb3accd', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f6e25db6bc1a1f9e5fb3accd', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f6e25db6bc1a1f9e5fb3accd', + 'width': 64, }), + ]), + 'name': 'Paradise State of Mind', + 'release_date': '2024-08-16', + 'release_date_precision': , + 'total_tracks': 11, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '2roVEpafIk02cSCDrbhHAe', - 'name': 'RhysO', - 'uri': 'spotify:artist:2roVEpafIk02cSCDrbhHAe', - }), - dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 99158, + 'duration_ms': 189099, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR', + 'spotify': 'https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL', }), - 'href': 'https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR', + 'href': 'https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL', 'is_local': False, - 'name': 'Lost at Sea', - 'track_id': '09WyoZ2RaNeAEcfZHtsXPR', - 'track_number': 9, - 'uri': 'spotify:track:09WyoZ2RaNeAEcfZHtsXPR', + 'name': 'See You In The Afterlife', + 'track_id': '6qtGeawfnmQMUWyQ95LdIL', + 'track_number': 1, + 'uri': 'spotify:track:6qtGeawfnmQMUWyQ95LdIL', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '79Mo8yyzVDo0uyeAKimv7W', - 'name': 'RDCwest', - 'uri': 'spotify:artist:79Mo8yyzVDo0uyeAKimv7W', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 83750, - 'explicit': True, + 'duration_ms': 259252, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs', + 'spotify': 'https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ', }), - 'href': 'https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs', + 'href': 'https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ', 'is_local': False, - 'name': '364 Interlude', - 'track_id': '4cWh7YO5U0JBCcAU9JUhSs', - 'track_number': 10, - 'uri': 'spotify:track:4cWh7YO5U0JBCcAU9JUhSs', + 'name': 'Lost In Space', + 'track_id': '6r9GzPEdq4bGp507oxt2iZ', + 'track_number': 2, + 'uri': 'spotify:track:6r9GzPEdq4bGp507oxt2iZ', }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '78F4dqW3GJqRzy3EDzHfba', - 'name': 'Alphons', - 'uri': 'spotify:artist:78F4dqW3GJqRzy3EDzHfba', - }), - dict({ - 'artist_id': '2qV9yNZiOt6UlbIYJgM7k2', - 'name': 'MyDog', - 'uri': 'spotify:artist:2qV9yNZiOt6UlbIYJgM7k2', - }), + dict({ + 'artists': list([ dict({ - 'artist_id': '2jTOWoCU8yUCNkHN1hzSNm', - 'name': 'badger', - 'uri': 'spotify:artist:2jTOWoCU8yUCNkHN1hzSNm', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 141500, + 'duration_ms': 153005, 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg', + 'spotify': 'https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm', }), - 'href': 'https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg', + 'href': 'https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm', 'is_local': False, - 'name': 'MyDog Has Depression', - 'track_id': '5Hypfslm17ws3wZhJCpMYg', - 'track_number': 11, - 'uri': 'spotify:track:5Hypfslm17ws3wZhJCpMYg', + 'name': 'Take Me Back', + 'track_id': '0CUojUDoPZvjKqPPLHaOTm', + 'track_number': 3, + 'uri': 'spotify:track:0CUojUDoPZvjKqPPLHaOTm', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '3SCpPBu1VKguPSQRuVYrcA', - 'name': '17artisan', - 'uri': 'spotify:artist:3SCpPBu1VKguPSQRuVYrcA', - }), - dict({ - 'artist_id': '2FljQuuxRfxfoltcyKZcoC', - 'name': 'REESE', - 'uri': 'spotify:artist:2FljQuuxRfxfoltcyKZcoC', - }), - dict({ - 'artist_id': '4qsHDbno8XG3abDsyq8ztN', - 'name': 'mango', - 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 152000, - 'explicit': True, + 'duration_ms': 274446, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y', + 'spotify': 'https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj', }), - 'href': 'https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y', + 'href': 'https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj', 'is_local': False, - 'name': 'All I Want is Paper Mario', - 'track_id': '5xG9nNCZ3Wc2I8dpmrha8y', - 'track_number': 12, - 'uri': 'spotify:track:5xG9nNCZ3Wc2I8dpmrha8y', + 'name': 'Let Go', + 'track_id': '090Vhdep7tK2kXLy2M1vLj', + 'track_number': 4, + 'uri': 'spotify:track:090Vhdep7tK2kXLy2M1vLj', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '2STTnw4FJjSXRH6bItWl0F', - 'name': 'StoneEars', - 'uri': 'spotify:artist:2STTnw4FJjSXRH6bItWl0F', - }), - dict({ - 'artist_id': '5rqsRqoG9bfilmZqxOOkek', - 'name': 'gRRiever', - 'uri': 'spotify:artist:5rqsRqoG9bfilmZqxOOkek', - }), - dict({ - 'artist_id': '6QqFHkMOC59TL7W5hfOsiU', - 'name': 'SofiUH', - 'uri': 'spotify:artist:6QqFHkMOC59TL7W5hfOsiU', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 146000, + 'duration_ms': 219300, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv', + 'spotify': 'https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ', }), - 'href': 'https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv', + 'href': 'https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ', 'is_local': False, - 'name': 'Confetti Line', - 'track_id': '16VDwDiT4YNIVSyJ7RMXsv', - 'track_number': 13, - 'uri': 'spotify:track:16VDwDiT4YNIVSyJ7RMXsv', + 'name': 'Feed Me', + 'track_id': '6QHE0tQs8NFE3DGDldP1DJ', + 'track_number': 5, + 'uri': 'spotify:track:6QHE0tQs8NFE3DGDldP1DJ', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', - }), - dict({ - 'artist_id': '6qLmutNfMLFolEujWZGO6p', - 'name': 'UneasyFlame', - 'uri': 'spotify:artist:6qLmutNfMLFolEujWZGO6p', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 141000, + 'duration_ms': 288544, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v', + 'spotify': 'https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n', }), - 'href': 'https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v', + 'href': 'https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n', 'is_local': False, - 'name': 'The Wedding Invite', - 'track_id': '6RG0t1o3B6nuzc5GegyY2v', - 'track_number': 14, - 'uri': 'spotify:track:6RG0t1o3B6nuzc5GegyY2v', + 'name': 'Paradise State Of Mind', + 'track_id': '2cIP5wh1Ala2rWVwTOgg4n', + 'track_number': 6, + 'uri': 'spotify:track:2cIP5wh1Ala2rWVwTOgg4n', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '78F4dqW3GJqRzy3EDzHfba', - 'name': 'Alphons', - 'uri': 'spotify:artist:78F4dqW3GJqRzy3EDzHfba', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 178285, + 'duration_ms': 328024, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6', + 'spotify': 'https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP', }), - 'href': 'https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6', + 'href': 'https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP', 'is_local': False, - 'name': 'Only a Legend', - 'track_id': '15g1itLc4kYRXjHMY8aao6', - 'track_number': 15, - 'uri': 'spotify:track:15g1itLc4kYRXjHMY8aao6', + 'name': 'Glitchzig', + 'track_id': '5gygubFSFXfLDhoMnpAhzP', + 'track_number': 7, + 'uri': 'spotify:track:5gygubFSFXfLDhoMnpAhzP', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '7xplDB5Ftf0oECpcFlKE99', - 'name': 'Owen CMYK', - 'uri': 'spotify:artist:7xplDB5Ftf0oECpcFlKE99', - }), - dict({ - 'artist_id': '2jTOWoCU8yUCNkHN1hzSNm', - 'name': 'badger', - 'uri': 'spotify:artist:2jTOWoCU8yUCNkHN1hzSNm', - }), - dict({ - 'artist_id': '60Y38Hh6PlzEjjpJno5P6p', - 'name': 'dropspindle', - 'uri': 'spotify:artist:60Y38Hh6PlzEjjpJno5P6p', - }), - dict({ - 'artist_id': '6TgYktqPP6KLGoU6KxYq0s', - 'name': 'FiN', - 'uri': 'spotify:artist:6TgYktqPP6KLGoU6KxYq0s', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 93666, + 'duration_ms': 253257, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe', + 'spotify': 'https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd', }), - 'href': 'https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe', + 'href': 'https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd', 'is_local': False, - 'name': 'Paradise Found', - 'track_id': '080DOCEfEIqct0qvHwKZRe', - 'track_number': 16, - 'uri': 'spotify:track:080DOCEfEIqct0qvHwKZRe', + 'name': 'The Holy Shangri-La', + 'track_id': '08vuNWfV1WOndL3yMetfXd', + 'track_number': 8, + 'uri': 'spotify:track:08vuNWfV1WOndL3yMetfXd', }), dict({ 'artists': list([ dict({ - 'artist_id': '5B7d27dL276bbzzQ360IYN', - 'name': 'the atriarchy', - 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', - }), - dict({ - 'artist_id': '0g4gQ5TcCB3HJH6ktWjKYC', - 'name': 'ask the storyteller', - 'uri': 'spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC', - }), - dict({ - 'artist_id': '49X16juWaNmVsSkftsPI9u', - 'name': 'javid74', - 'uri': 'spotify:artist:49X16juWaNmVsSkftsPI9u', - }), - dict({ - 'artist_id': '3ehLuD3NDXoO0lmL8cZxSw', - 'name': 'MikesHardest', - 'uri': 'spotify:artist:3ehLuD3NDXoO0lmL8cZxSw', - }), - dict({ - 'artist_id': '79Mo8yyzVDo0uyeAKimv7W', - 'name': 'RDCwest', - 'uri': 'spotify:artist:79Mo8yyzVDo0uyeAKimv7W', - }), - dict({ - 'artist_id': '4QsvqI4nb9TpdwqOrbZcHQ', - 'name': 'Sio', - 'uri': 'spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ', - }), - dict({ - 'artist_id': '4qsHDbno8XG3abDsyq8ztN', - 'name': 'mango', - 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', - }), - dict({ - 'artist_id': '26z8iLfADGuSugsu63BW2s', - 'name': 'Confuzzled', - 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', - }), - dict({ - 'artist_id': '3lrmsbi43nA5svDePADyHl', - 'name': 'froggman', - 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', - }), - dict({ - 'artist_id': '6HiHuFsJrutJGZT2GAwG4L', - 'name': 'itsAZ', - 'uri': 'spotify:artist:6HiHuFsJrutJGZT2GAwG4L', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), + ]), + 'disc_number': 1, + 'duration_ms': 183139, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK', + }), + 'href': 'https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK', + 'is_local': False, + 'name': 'Sometimes I Wanna Be Bad', + 'track_id': '0wyQNzcMUYFec1B19hu6pK', + 'track_number': 9, + 'uri': 'spotify:track:0wyQNzcMUYFec1B19hu6pK', + }), + dict({ + 'artists': list([ dict({ - 'artist_id': '2RaLCgWRwHSBJySoMVZi1U', - 'name': 'JPecs', - 'uri': 'spotify:artist:2RaLCgWRwHSBJySoMVZi1U', + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', }), ]), 'disc_number': 1, - 'duration_ms': 703910, + 'duration_ms': 204111, 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55', + 'spotify': 'https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS', }), - 'href': 'https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55', + 'href': 'https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS', 'is_local': False, - 'name': 'Revelations 5:22', - 'track_id': '3gTWK8IiRrXjbPGgz6KD55', - 'track_number': 17, - 'uri': 'spotify:track:3gTWK8IiRrXjbPGgz6KD55', + 'name': 'Chasing Low Vibrations', + 'track_id': '1G2bNCn8x1WrbeIBBvfQZS', + 'track_number': 10, + 'uri': 'spotify:track:1G2bNCn8x1WrbeIBBvfQZS', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', + 'name': 'Foster The People', + 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + }), + ]), + 'disc_number': 1, + 'duration_ms': 264919, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b', + }), + 'href': 'https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b', + 'is_local': False, + 'name': 'A Diamond To Be Born', + 'track_id': '60BqMpaQjhET1YZhou4t2b', + 'track_number': 11, + 'uri': 'spotify:track:60BqMpaQjhET1YZhou4t2b', }), ]), - 'uri': 'spotify:album:0m14dyyJemQy44KVhsKnaj', + 'uri': 'spotify:album:27ynHS80OjICdw3qLNMgQP', }), }), dict({ - 'added_at': datetime.datetime(2024, 6, 6, 22, 0, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2024, 8, 15, 22, 0, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '0GpklLqjWNrhropGa4XRRD', + 'album_id': '33tDS6r9DQBx9LaYUY7wh1', 'album_type': , 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce', + 'url': 'https://i.scdn.co/image/ab67616d0000b27314f8dd0b16b636ea4bfa119e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce', + 'url': 'https://i.scdn.co/image/ab67616d00001e0214f8dd0b16b636ea4bfa119e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce', + 'url': 'https://i.scdn.co/image/ab67616d0000485114f8dd0b16b636ea4bfa119e', 'width': 64, }), ]), - 'name': 'Radiosoul', - 'release_date': '2024-06-07', + 'name': 'Melodramatic', + 'release_date': '2024-08-16', 'release_date_precision': , - 'total_tracks': 11, + 'total_tracks': 9, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'disc_number': 1, - 'duration_ms': 315327, + 'duration_ms': 233505, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5YualyOibWHyram0jfyBsV', + 'spotify': 'https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq', }), - 'href': 'https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV', + 'href': 'https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq', 'is_local': False, - 'name': 'Radiosoul', - 'track_id': '5YualyOibWHyram0jfyBsV', + 'name': 'The Phoenix', + 'track_id': '0w13ZqgFrKq7BYgsc2EKvq', 'track_number': 1, - 'uri': 'spotify:track:5YualyOibWHyram0jfyBsV', + 'uri': 'spotify:track:0w13ZqgFrKq7BYgsc2EKvq', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'disc_number': 1, - 'duration_ms': 202033, + 'duration_ms': 190296, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm', + 'spotify': 'https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85', }), - 'href': 'https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm', + 'href': 'https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85', 'is_local': False, - 'name': 'Eyes Wide Shut', - 'track_id': '1eVzbEkjDGzxqeFNNNrgBm', + 'name': "Baby Don't Give Up!", + 'track_id': '71u2sgaT6I05JY2n6aom85', 'track_number': 2, - 'uri': 'spotify:track:1eVzbEkjDGzxqeFNNNrgBm', + 'uri': 'spotify:track:71u2sgaT6I05JY2n6aom85', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'disc_number': 1, - 'duration_ms': 206484, + 'duration_ms': 157712, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO', + 'spotify': 'https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim', }), - 'href': 'https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO', + 'href': 'https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim', 'is_local': False, - 'name': 'This Is Just The Beginning', - 'track_id': '6Ttp9JrzcpNYG0upW6NKRO', + 'name': 'As Soon As I Discover', + 'track_id': '3QuBIm40rJbw5asM9tGjim', 'track_number': 3, - 'uri': 'spotify:track:6Ttp9JrzcpNYG0upW6NKRO', + 'uri': 'spotify:track:3QuBIm40rJbw5asM9tGjim', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'disc_number': 1, - 'duration_ms': 212302, + 'duration_ms': 191740, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL', + 'spotify': 'https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv', }), - 'href': 'https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL', + 'href': 'https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv', 'is_local': False, - 'name': 'Vultures', - 'track_id': '2M7SyIuOuPozGJY1c6xDXL', + 'name': 'My Little One', + 'track_id': '1AieqRevDfu4uQlhTIWJbv', 'track_number': 4, - 'uri': 'spotify:track:2M7SyIuOuPozGJY1c6xDXL', + 'uri': 'spotify:track:1AieqRevDfu4uQlhTIWJbv', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', }), ]), 'disc_number': 1, - 'duration_ms': 186991, + 'duration_ms': 218015, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA', + 'spotify': 'https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO', }), - 'href': 'https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA', + 'href': 'https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO', 'is_local': False, - 'name': 'Drag', - 'track_id': '6n1VD2aPzgGbZWMvRdgSPA', + 'name': 'Love Away', + 'track_id': '3MTbJM0UmqrgSr9thX1JwO', 'track_number': 5, - 'uri': 'spotify:track:6n1VD2aPzgGbZWMvRdgSPA', + 'uri': 'spotify:track:3MTbJM0UmqrgSr9thX1JwO', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + }), + ]), + 'disc_number': 1, + 'duration_ms': 203419, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4', + }), + 'href': 'https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4', + 'is_local': False, + 'name': 'Alone In The Darkness', + 'track_id': '5B5l5KuDqLT73R3lgDI7H4', + 'track_number': 6, + 'uri': 'spotify:track:5B5l5KuDqLT73R3lgDI7H4', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + }), + ]), + 'disc_number': 1, + 'duration_ms': 180967, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y', + }), + 'href': 'https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y', + 'is_local': False, + 'name': 'My Way', + 'track_id': '4tkOZG1F6og5NZW1uD3z7Y', + 'track_number': 7, + 'uri': 'spotify:track:4tkOZG1F6og5NZW1uD3z7Y', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + }), + ]), + 'disc_number': 1, + 'duration_ms': 178997, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s', + }), + 'href': 'https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s', + 'is_local': False, + 'name': 'I Promise Myself', + 'track_id': '0CtfbRy4cB2FOEsP5WIZ2s', + 'track_number': 8, + 'uri': 'spotify:track:0CtfbRy4cB2FOEsP5WIZ2s', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '68NOjWuVYBRXzYwhel3jAl', + 'name': 'SIAMES', + 'uri': 'spotify:artist:68NOjWuVYBRXzYwhel3jAl', + }), + ]), + 'disc_number': 1, + 'duration_ms': 201119, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg', + }), + 'href': 'https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg', + 'is_local': False, + 'name': 'Post Tour Depression', + 'track_id': '3FZwYiZufmIgKyfqgMnpPg', + 'track_number': 9, + 'uri': 'spotify:track:3FZwYiZufmIgKyfqgMnpPg', + }), + ]), + 'uri': 'spotify:album:33tDS6r9DQBx9LaYUY7wh1', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 7, 12, 11, 46, 14, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0m14dyyJemQy44KVhsKnaj', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032', + 'width': 64, }), + ]), + 'name': 'PMO: An Atriarchy Experience', + 'release_date': '2024-07-11', + 'release_date_precision': , + 'total_tracks': 17, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '7xplDB5Ftf0oECpcFlKE99', + 'name': 'Owen CMYK', + 'uri': 'spotify:artist:7xplDB5Ftf0oECpcFlKE99', + }), + dict({ + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', }), ]), 'disc_number': 1, - 'duration_ms': 211120, + 'duration_ms': 50572, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L', + 'spotify': 'https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG', }), - 'href': 'https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L', + 'href': 'https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG', 'is_local': False, - 'name': 'Hello Lonely', - 'track_id': '0eFTxYwpRTxyefxYlBJq6L', - 'track_number': 6, - 'uri': 'spotify:track:0eFTxYwpRTxyefxYlBJq6L', + 'name': 'Sea Shanty', + 'track_id': '2QVz5Ndv0faqrTNyMbK6HG', + 'track_number': 1, + 'uri': 'spotify:track:2QVz5Ndv0faqrTNyMbK6HG', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', }), dict({ - 'artist_id': '3yDIp0kaq9EFKe07X1X2rz', - 'name': 'Nile Rodgers', - 'uri': 'spotify:artist:3yDIp0kaq9EFKe07X1X2rz', + 'artist_id': '0GONM3s2unLmwUiqNneycA', + 'name': 'M17', + 'uri': 'spotify:artist:0GONM3s2unLmwUiqNneycA', + }), + dict({ + 'artist_id': '26z8iLfADGuSugsu63BW2s', + 'name': 'Confuzzled', + 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + }), + dict({ + 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', + 'name': 'Beautiful Panda', + 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', + }), + dict({ + 'artist_id': '6HiHuFsJrutJGZT2GAwG4L', + 'name': 'itsAZ', + 'uri': 'spotify:artist:6HiHuFsJrutJGZT2GAwG4L', }), ]), 'disc_number': 1, - 'duration_ms': 160932, + 'duration_ms': 164383, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT', + 'spotify': 'https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA', }), - 'href': 'https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT', + 'href': 'https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA', 'is_local': False, - 'name': 'Just A Dance', - 'track_id': '5I0qy4t38jwAPKsHS2WPnT', - 'track_number': 7, - 'uri': 'spotify:track:5I0qy4t38jwAPKsHS2WPnT', + 'name': 'Castle in the Sky', + 'track_id': '3yoGnoFkQLZa1rPbhycLgA', + 'track_number': 2, + 'uri': 'spotify:track:3yoGnoFkQLZa1rPbhycLgA', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + }), + dict({ + 'artist_id': '26z8iLfADGuSugsu63BW2s', + 'name': 'Confuzzled', + 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', }), ]), 'disc_number': 1, - 'duration_ms': 204074, + 'duration_ms': 115000, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S', + 'spotify': 'https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV', }), - 'href': 'https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S', + 'href': 'https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV', 'is_local': False, - 'name': 'Submarine', - 'track_id': '6zJPeOzroQHmIAbhQETa3S', - 'track_number': 8, - 'uri': 'spotify:track:6zJPeOzroQHmIAbhQETa3S', + 'name': 'Boomer Wonderland', + 'track_id': '11CVrcm1dz0jKNHvFlbkOV', + 'track_number': 3, + 'uri': 'spotify:track:11CVrcm1dz0jKNHvFlbkOV', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '2RaLCgWRwHSBJySoMVZi1U', + 'name': 'JPecs', + 'uri': 'spotify:artist:2RaLCgWRwHSBJySoMVZi1U', + }), + dict({ + 'artist_id': '49X16juWaNmVsSkftsPI9u', + 'name': 'javid74', + 'uri': 'spotify:artist:49X16juWaNmVsSkftsPI9u', }), ]), 'disc_number': 1, - 'duration_ms': 207430, + 'duration_ms': 114622, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX', + 'spotify': 'https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS', }), - 'href': 'https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX', + 'href': 'https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS', 'is_local': False, - 'name': 'Beckham', - 'track_id': '19ZhBuPyYTzNChzoQslVTX', - 'track_number': 9, - 'uri': 'spotify:track:19ZhBuPyYTzNChzoQslVTX', + 'name': '3rd Place', + 'track_id': '6nYAajfD6iXhHLTjXFV3NS', + 'track_number': 4, + 'uri': 'spotify:track:6nYAajfD6iXhHLTjXFV3NS', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '6CPBjEKtaoONitOOYJEPu9', + 'name': 'the_bardificer', + 'uri': 'spotify:artist:6CPBjEKtaoONitOOYJEPu9', + }), + dict({ + 'artist_id': '1dxMexw9HIXRJX53LQZUOz', + 'name': 'Ash Artz', + 'uri': 'spotify:artist:1dxMexw9HIXRJX53LQZUOz', + }), + dict({ + 'artist_id': '64zUEoPQHdOq7bYmLwZRSi', + 'name': 'Luna', + 'uri': 'spotify:artist:64zUEoPQHdOq7bYmLwZRSi', + }), + dict({ + 'artist_id': '4PJ8Omgo9ObI7mb9COCfm8', + 'name': 'Hatmiss', + 'uri': 'spotify:artist:4PJ8Omgo9ObI7mb9COCfm8', }), ]), 'disc_number': 1, - 'duration_ms': 157458, + 'duration_ms': 234500, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u', + 'spotify': 'https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV', }), - 'href': 'https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u', + 'href': 'https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV', 'is_local': False, - 'name': 'Switch', - 'track_id': '4wTOzQ92UzEBli1ubpcw3u', - 'track_number': 10, - 'uri': 'spotify:track:4wTOzQ92UzEBli1ubpcw3u', + 'name': 'No Time Left To Lose', + 'track_id': '5ZnK0HCoBv6fgdc2PMeAsV', + 'track_number': 5, + 'uri': 'spotify:track:5ZnK0HCoBv6fgdc2PMeAsV', }), dict({ 'artists': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '3iRbwOUFx2CWZ4BRQcnP2I', + 'name': 'Beautiful Panda', + 'uri': 'spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I', + }), + dict({ + 'artist_id': '4qsHDbno8XG3abDsyq8ztN', + 'name': 'mango', + 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', + }), + dict({ + 'artist_id': '4PJ8Omgo9ObI7mb9COCfm8', + 'name': 'Hatmiss', + 'uri': 'spotify:artist:4PJ8Omgo9ObI7mb9COCfm8', }), ]), 'disc_number': 1, - 'duration_ms': 263354, + 'duration_ms': 36750, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t', + 'spotify': 'https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9', }), - 'href': 'https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t', + 'href': 'https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9', 'is_local': False, - 'name': 'Run To Tomorrow', - 'track_id': '22sc5jdkR8FTgbGWTdOy7t', - 'track_number': 11, - 'uri': 'spotify:track:22sc5jdkR8FTgbGWTdOy7t', - }), - ]), - 'uri': 'spotify:album:0GpklLqjWNrhropGa4XRRD', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 5, 30, 22, 0, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '1Sr34Sc0yqB4SlxanOrit0', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3', - 'width': 64, - }), - ]), - 'name': 'The Last Goodbye Tour Live', - 'release_date': '2024-05-31', - 'release_date_precision': , - 'total_tracks': 27, - 'tracks': list([ + 'name': "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", + 'track_id': '2hyVHjnnm3KUO2a2Qg1eM9', + 'track_number': 6, + 'uri': 'spotify:track:2hyVHjnnm3KUO2a2Qg1eM9', + }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '51Jlz1EF1XPFtEYuk642cM', + 'name': 'gRRiever', + 'uri': 'spotify:artist:51Jlz1EF1XPFtEYuk642cM', + }), + dict({ + 'artist_id': '2STTnw4FJjSXRH6bItWl0F', + 'name': 'StoneEars', + 'uri': 'spotify:artist:2STTnw4FJjSXRH6bItWl0F', }), ]), 'disc_number': 1, - 'duration_ms': 186400, + 'duration_ms': 170854, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2', + 'spotify': 'https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9', }), - 'href': 'https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2', + 'href': 'https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9', 'is_local': False, - 'name': 'This Version of You (Live)', - 'track_id': '24ainScgxd2UDayPsLzzm2', - 'track_number': 1, - 'uri': 'spotify:track:24ainScgxd2UDayPsLzzm2', + 'name': 'God Gamer', + 'track_id': '593aq2LX6veq1Ft0kHvrS9', + 'track_number': 7, + 'uri': 'spotify:track:593aq2LX6veq1Ft0kHvrS9', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '6RmWDtsKktRw2v9FP1SFni', + 'name': 'yubyub', + 'uri': 'spotify:artist:6RmWDtsKktRw2v9FP1SFni', + }), + dict({ + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + }), + dict({ + 'artist_id': '190GSW42zDnQc16U5XgULT', + 'name': 'Jo the Forggie', + 'uri': 'spotify:artist:190GSW42zDnQc16U5XgULT', + }), + dict({ + 'artist_id': '26z8iLfADGuSugsu63BW2s', + 'name': 'Confuzzled', + 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + }), + dict({ + 'artist_id': '1uLBqEv467ZgclJBIdWlCc', + 'name': 'fluentsynth', + 'uri': 'spotify:artist:1uLBqEv467ZgclJBIdWlCc', }), ]), 'disc_number': 1, - 'duration_ms': 189985, - 'explicit': False, + 'duration_ms': 80000, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym', + 'spotify': 'https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5', }), - 'href': 'https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym', + 'href': 'https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5', 'is_local': False, - 'name': 'Behind the Sun (Live)', - 'track_id': '4gKFQ6sGKfZr44NXw6wjym', - 'track_number': 2, - 'uri': 'spotify:track:4gKFQ6sGKfZr44NXw6wjym', + 'name': 'Purple Streamer Battle', + 'track_id': '5WWShf7Lo5EBnIBGdbmKN5', + 'track_number': 8, + 'uri': 'spotify:track:5WWShf7Lo5EBnIBGdbmKN5', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '2roVEpafIk02cSCDrbhHAe', + 'name': 'RhysO', + 'uri': 'spotify:artist:2roVEpafIk02cSCDrbhHAe', + }), + dict({ + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', }), ]), 'disc_number': 1, - 'duration_ms': 201954, + 'duration_ms': 99158, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt', + 'spotify': 'https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR', }), - 'href': 'https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt', + 'href': 'https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR', 'is_local': False, - 'name': 'All We Need (Live) (ODESZA VIP Remix)', - 'track_id': '2W0IElS3uccgQUXKAwVyAt', - 'track_number': 3, - 'uri': 'spotify:track:2W0IElS3uccgQUXKAwVyAt', + 'name': 'Lost at Sea', + 'track_id': '09WyoZ2RaNeAEcfZHtsXPR', + 'track_number': 9, + 'uri': 'spotify:track:09WyoZ2RaNeAEcfZHtsXPR', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '79Mo8yyzVDo0uyeAKimv7W', + 'name': 'RDCwest', + 'uri': 'spotify:artist:79Mo8yyzVDo0uyeAKimv7W', }), ]), 'disc_number': 1, - 'duration_ms': 267545, - 'explicit': False, + 'duration_ms': 83750, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA', + 'spotify': 'https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs', }), - 'href': 'https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA', + 'href': 'https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs', 'is_local': False, - 'name': 'Love Letter (Live) (ODESZA VIP Remix)', - 'track_id': '4JK3JhyIl1icooy0uq37DA', - 'track_number': 4, - 'uri': 'spotify:track:4JK3JhyIl1icooy0uq37DA', + 'name': '364 Interlude', + 'track_id': '4cWh7YO5U0JBCcAU9JUhSs', + 'track_number': 10, + 'uri': 'spotify:track:4cWh7YO5U0JBCcAU9JUhSs', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '78F4dqW3GJqRzy3EDzHfba', + 'name': 'Alphons', + 'uri': 'spotify:artist:78F4dqW3GJqRzy3EDzHfba', + }), + dict({ + 'artist_id': '2qV9yNZiOt6UlbIYJgM7k2', + 'name': 'MyDog', + 'uri': 'spotify:artist:2qV9yNZiOt6UlbIYJgM7k2', + }), + dict({ + 'artist_id': '2jTOWoCU8yUCNkHN1hzSNm', + 'name': 'badger', + 'uri': 'spotify:artist:2jTOWoCU8yUCNkHN1hzSNm', }), ]), 'disc_number': 1, - 'duration_ms': 176459, - 'explicit': False, + 'duration_ms': 141500, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK', + 'spotify': 'https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg', }), - 'href': 'https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK', + 'href': 'https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg', 'is_local': False, - 'name': 'Say My Name x Late Night (Live)', - 'track_id': '1ZVmGzftncwotIcJzkiTQK', - 'track_number': 5, - 'uri': 'spotify:track:1ZVmGzftncwotIcJzkiTQK', + 'name': 'MyDog Has Depression', + 'track_id': '5Hypfslm17ws3wZhJCpMYg', + 'track_number': 11, + 'uri': 'spotify:track:5Hypfslm17ws3wZhJCpMYg', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '3SCpPBu1VKguPSQRuVYrcA', + 'name': '17artisan', + 'uri': 'spotify:artist:3SCpPBu1VKguPSQRuVYrcA', + }), + dict({ + 'artist_id': '4yuadBe0F2IQMiuUsxywXw', + 'name': 'REESE', + 'uri': 'spotify:artist:4yuadBe0F2IQMiuUsxywXw', + }), + dict({ + 'artist_id': '4qsHDbno8XG3abDsyq8ztN', + 'name': 'mango', + 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', }), ]), 'disc_number': 1, - 'duration_ms': 151384, - 'explicit': False, + 'duration_ms': 152000, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs', + 'spotify': 'https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y', }), - 'href': 'https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs', + 'href': 'https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y', 'is_local': False, - 'name': 'In the Rain (Live)', - 'track_id': '2mOOT12V4TMB9O6p75Hehs', - 'track_number': 6, - 'uri': 'spotify:track:2mOOT12V4TMB9O6p75Hehs', + 'name': 'All I Want is Paper Mario', + 'track_id': '5xG9nNCZ3Wc2I8dpmrha8y', + 'track_number': 12, + 'uri': 'spotify:track:5xG9nNCZ3Wc2I8dpmrha8y', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', }), dict({ - 'artist_id': '4iVhFmG8YCCEHANGeUUS9q', - 'name': 'Pretty Lights', - 'uri': 'spotify:artist:4iVhFmG8YCCEHANGeUUS9q', + 'artist_id': '2STTnw4FJjSXRH6bItWl0F', + 'name': 'StoneEars', + 'uri': 'spotify:artist:2STTnw4FJjSXRH6bItWl0F', + }), + dict({ + 'artist_id': '51Jlz1EF1XPFtEYuk642cM', + 'name': 'gRRiever', + 'uri': 'spotify:artist:51Jlz1EF1XPFtEYuk642cM', + }), + dict({ + 'artist_id': '6QqFHkMOC59TL7W5hfOsiU', + 'name': 'SofiUH', + 'uri': 'spotify:artist:6QqFHkMOC59TL7W5hfOsiU', }), ]), 'disc_number': 1, - 'duration_ms': 96053, + 'duration_ms': 146000, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv', + 'spotify': 'https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv', }), - 'href': 'https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv', + 'href': 'https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv', 'is_local': False, - 'name': "One Day They'll Know (Live) (ODESZA VIP Remix)", - 'track_id': '3mqmlOkyeU3hP1rERf6tjv', - 'track_number': 7, - 'uri': 'spotify:track:3mqmlOkyeU3hP1rERf6tjv', + 'name': 'Confetti Line', + 'track_id': '16VDwDiT4YNIVSyJ7RMXsv', + 'track_number': 13, + 'uri': 'spotify:track:16VDwDiT4YNIVSyJ7RMXsv', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', }), dict({ - 'artist_id': '6BkSTbIWZrLZZK0sa2GehR', - 'name': 'Charlie Houston', - 'uri': 'spotify:artist:6BkSTbIWZrLZZK0sa2GehR', + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + }), + dict({ + 'artist_id': '6qLmutNfMLFolEujWZGO6p', + 'name': 'UneasyFlame', + 'uri': 'spotify:artist:6qLmutNfMLFolEujWZGO6p', }), ]), 'disc_number': 1, - 'duration_ms': 261978, + 'duration_ms': 141000, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo', + 'spotify': 'https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v', }), - 'href': 'https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo', + 'href': 'https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v', 'is_local': False, - 'name': 'Wide Awake (Live)', - 'track_id': '2A0cPJCmtGITjsKAIhzEfo', - 'track_number': 8, - 'uri': 'spotify:track:2A0cPJCmtGITjsKAIhzEfo', + 'name': 'The Wedding Invite', + 'track_id': '6RG0t1o3B6nuzc5GegyY2v', + 'track_number': 14, + 'uri': 'spotify:track:6RG0t1o3B6nuzc5GegyY2v', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '78F4dqW3GJqRzy3EDzHfba', + 'name': 'Alphons', + 'uri': 'spotify:artist:78F4dqW3GJqRzy3EDzHfba', }), ]), 'disc_number': 1, - 'duration_ms': 214092, + 'duration_ms': 178285, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX', + 'spotify': 'https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6', }), - 'href': 'https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX', + 'href': 'https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6', 'is_local': False, - 'name': 'Bloom (Live) (ODESZA VIP Remix)', - 'track_id': '1a73OJypd6sgDkAwA75NDX', - 'track_number': 9, - 'uri': 'spotify:track:1a73OJypd6sgDkAwA75NDX', + 'name': 'Only a Legend', + 'track_id': '15g1itLc4kYRXjHMY8aao6', + 'track_number': 15, + 'uri': 'spotify:track:15g1itLc4kYRXjHMY8aao6', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '7xplDB5Ftf0oECpcFlKE99', + 'name': 'Owen CMYK', + 'uri': 'spotify:artist:7xplDB5Ftf0oECpcFlKE99', + }), + dict({ + 'artist_id': '2jTOWoCU8yUCNkHN1hzSNm', + 'name': 'badger', + 'uri': 'spotify:artist:2jTOWoCU8yUCNkHN1hzSNm', + }), + dict({ + 'artist_id': '60Y38Hh6PlzEjjpJno5P6p', + 'name': 'dropspindle', + 'uri': 'spotify:artist:60Y38Hh6PlzEjjpJno5P6p', + }), + dict({ + 'artist_id': '6TgYktqPP6KLGoU6KxYq0s', + 'name': 'FiN', + 'uri': 'spotify:artist:6TgYktqPP6KLGoU6KxYq0s', }), ]), 'disc_number': 1, - 'duration_ms': 268167, + 'duration_ms': 93666, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL', + 'spotify': 'https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe', }), - 'href': 'https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL', + 'href': 'https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe', 'is_local': False, - 'name': 'Equal x Boy (Live)', - 'track_id': '4tL49ueZxBPJD5Z9pmNCAL', - 'track_number': 10, - 'uri': 'spotify:track:4tL49ueZxBPJD5Z9pmNCAL', + 'name': 'Paradise Found', + 'track_id': '080DOCEfEIqct0qvHwKZRe', + 'track_number': 16, + 'uri': 'spotify:track:080DOCEfEIqct0qvHwKZRe', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '5B7d27dL276bbzzQ360IYN', + 'name': 'the atriarchy', + 'uri': 'spotify:artist:5B7d27dL276bbzzQ360IYN', + }), + dict({ + 'artist_id': '0g4gQ5TcCB3HJH6ktWjKYC', + 'name': 'ask the storyteller', + 'uri': 'spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC', + }), + dict({ + 'artist_id': '2RaLCgWRwHSBJySoMVZi1U', + 'name': 'JPecs', + 'uri': 'spotify:artist:2RaLCgWRwHSBJySoMVZi1U', + }), + dict({ + 'artist_id': '79Mo8yyzVDo0uyeAKimv7W', + 'name': 'RDCwest', + 'uri': 'spotify:artist:79Mo8yyzVDo0uyeAKimv7W', + }), + dict({ + 'artist_id': '49X16juWaNmVsSkftsPI9u', + 'name': 'javid74', + 'uri': 'spotify:artist:49X16juWaNmVsSkftsPI9u', + }), + dict({ + 'artist_id': '3ehLuD3NDXoO0lmL8cZxSw', + 'name': 'MikesHardest', + 'uri': 'spotify:artist:3ehLuD3NDXoO0lmL8cZxSw', + }), + dict({ + 'artist_id': '4QsvqI4nb9TpdwqOrbZcHQ', + 'name': 'Sio', + 'uri': 'spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ', + }), + dict({ + 'artist_id': '26z8iLfADGuSugsu63BW2s', + 'name': 'Confuzzled', + 'uri': 'spotify:artist:26z8iLfADGuSugsu63BW2s', + }), + dict({ + 'artist_id': '3lrmsbi43nA5svDePADyHl', + 'name': 'froggman', + 'uri': 'spotify:artist:3lrmsbi43nA5svDePADyHl', + }), + dict({ + 'artist_id': '6HiHuFsJrutJGZT2GAwG4L', + 'name': 'itsAZ', + 'uri': 'spotify:artist:6HiHuFsJrutJGZT2GAwG4L', + }), + dict({ + 'artist_id': '4qsHDbno8XG3abDsyq8ztN', + 'name': 'mango', + 'uri': 'spotify:artist:4qsHDbno8XG3abDsyq8ztN', }), ]), 'disc_number': 1, - 'duration_ms': 116759, - 'explicit': False, + 'duration_ms': 703910, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW', + 'spotify': 'https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55', }), - 'href': 'https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW', + 'href': 'https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55', 'is_local': False, - 'name': 'All My Life (Live)', - 'track_id': '1ZJiqlxrcILMONjWo9wwaW', - 'track_number': 11, - 'uri': 'spotify:track:1ZJiqlxrcILMONjWo9wwaW', + 'name': 'Revelations 5:22', + 'track_id': '3gTWK8IiRrXjbPGgz6KD55', + 'track_number': 17, + 'uri': 'spotify:track:3gTWK8IiRrXjbPGgz6KD55', + }), + ]), + 'uri': 'spotify:album:0m14dyyJemQy44KVhsKnaj', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 6, 6, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0GpklLqjWNrhropGa4XRRD', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce', + 'width': 640, }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce', + 'width': 64, + }), + ]), + 'name': 'Radiosoul', + 'release_date': '2024-06-07', + 'release_date_precision': , + 'total_tracks': 11, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - dict({ - 'artist_id': '3NP4jJcW3R6qO6rbtnH0wn', - 'name': 'MARO', - 'uri': 'spotify:artist:3NP4jJcW3R6qO6rbtnH0wn', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 161641, + 'duration_ms': 315327, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE', + 'spotify': 'https://open.spotify.com/track/5YualyOibWHyram0jfyBsV', }), - 'href': 'https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE', + 'href': 'https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV', 'is_local': False, - 'name': 'Better Now (Live)', - 'track_id': '59aWxauGOAbQycO8GNK7LE', - 'track_number': 12, - 'uri': 'spotify:track:59aWxauGOAbQycO8GNK7LE', + 'name': 'Radiosoul', + 'track_id': '5YualyOibWHyram0jfyBsV', + 'track_number': 1, + 'uri': 'spotify:track:5YualyOibWHyram0jfyBsV', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - dict({ - 'artist_id': '4qOzMSukiZoiSjPQw8Zs7s', - 'name': 'Mansionair', - 'uri': 'spotify:artist:4qOzMSukiZoiSjPQw8Zs7s', - }), - dict({ - 'artist_id': '5EBlHXi71tDXnFtroEh7Rg', - 'name': 'Naomi Wild', - 'uri': 'spotify:artist:5EBlHXi71tDXnFtroEh7Rg', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 181843, + 'duration_ms': 202033, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6', + 'spotify': 'https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm', }), - 'href': 'https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6', + 'href': 'https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm', 'is_local': False, - 'name': 'Line Of Sight (Live)', - 'track_id': '7q7B0VRgFKegcxO2Edzbi6', - 'track_number': 13, - 'uri': 'spotify:track:7q7B0VRgFKegcxO2Edzbi6', + 'name': 'Eyes Wide Shut', + 'track_id': '1eVzbEkjDGzxqeFNNNrgBm', + 'track_number': 2, + 'uri': 'spotify:track:1eVzbEkjDGzxqeFNNNrgBm', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - dict({ - 'artist_id': '6b5YOgXIliAozdo49vUCJQ', - 'name': 'Izzy Bizu', - 'uri': 'spotify:artist:6b5YOgXIliAozdo49vUCJQ', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 243413, + 'duration_ms': 206484, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV', + 'spotify': 'https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO', }), - 'href': 'https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV', + 'href': 'https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO', 'is_local': False, - 'name': 'Forgive Me (Live) (ODESZA VIP Remix)', - 'track_id': '0PD6WTOfk9kBi6THqAaBKV', - 'track_number': 14, - 'uri': 'spotify:track:0PD6WTOfk9kBi6THqAaBKV', + 'name': 'This Is Just The Beginning', + 'track_id': '6Ttp9JrzcpNYG0upW6NKRO', + 'track_number': 3, + 'uri': 'spotify:track:6Ttp9JrzcpNYG0upW6NKRO', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 105046, + 'duration_ms': 212302, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an', + 'spotify': 'https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL', }), - 'href': 'https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an', + 'href': 'https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL', 'is_local': False, - 'name': 'La Ciudad (Live) (ODESZA VIP Remix)', - 'track_id': '5r06HL1g9lqxc5CAxBK7an', - 'track_number': 15, - 'uri': 'spotify:track:5r06HL1g9lqxc5CAxBK7an', + 'name': 'Vultures', + 'track_id': '2M7SyIuOuPozGJY1c6xDXL', + 'track_number': 4, + 'uri': 'spotify:track:2M7SyIuOuPozGJY1c6xDXL', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - dict({ - 'artist_id': '2MPHBxznH1fj59jbOWY38u', - 'name': 'Sudan Archives', - 'uri': 'spotify:artist:2MPHBxznH1fj59jbOWY38u', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 211440, - 'explicit': True, + 'duration_ms': 186991, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt', + 'spotify': 'https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA', }), - 'href': 'https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt', + 'href': 'https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA', 'is_local': False, - 'name': 'Selfish Soul (Live) (ODESZA VIP Remix)', - 'track_id': '7rwME0L7zpCwQgHcIwzbvt', - 'track_number': 16, - 'uri': 'spotify:track:7rwME0L7zpCwQgHcIwzbvt', + 'name': 'Drag', + 'track_id': '6n1VD2aPzgGbZWMvRdgSPA', + 'track_number': 5, + 'uri': 'spotify:track:6n1VD2aPzgGbZWMvRdgSPA', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', - }), - dict({ - 'artist_id': '60yfafz0P3gqaUaOUIddae', - 'name': 'BRONSON', - 'uri': 'spotify:artist:60yfafz0P3gqaUaOUIddae', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 194464, + 'duration_ms': 211120, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA', + 'spotify': 'https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L', }), - 'href': 'https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA', + 'href': 'https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L', 'is_local': False, - 'name': 'TENSE (Live)', - 'track_id': '4UU6fudp68mcPuUFJf1sNA', - 'track_number': 17, - 'uri': 'spotify:track:4UU6fudp68mcPuUFJf1sNA', + 'name': 'Hello Lonely', + 'track_id': '0eFTxYwpRTxyefxYlBJq6L', + 'track_number': 6, + 'uri': 'spotify:track:0eFTxYwpRTxyefxYlBJq6L', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), dict({ - 'artist_id': '60yfafz0P3gqaUaOUIddae', - 'name': 'BRONSON', - 'uri': 'spotify:artist:60yfafz0P3gqaUaOUIddae', + 'artist_id': '3yDIp0kaq9EFKe07X1X2rz', + 'name': 'Nile Rodgers', + 'uri': 'spotify:artist:3yDIp0kaq9EFKe07X1X2rz', }), ]), 'disc_number': 1, - 'duration_ms': 142423, + 'duration_ms': 160932, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs', + 'spotify': 'https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT', }), - 'href': 'https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs', + 'href': 'https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT', 'is_local': False, - 'name': 'KEEP MOVING (Live)', - 'track_id': '41z8eydTUKN0IL0QZtRcIs', - 'track_number': 18, - 'uri': 'spotify:track:41z8eydTUKN0IL0QZtRcIs', + 'name': 'Just A Dance', + 'track_id': '5I0qy4t38jwAPKsHS2WPnT', + 'track_number': 7, + 'uri': 'spotify:track:5I0qy4t38jwAPKsHS2WPnT', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 211750, + 'duration_ms': 204074, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE', + 'spotify': 'https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S', }), - 'href': 'https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE', + 'href': 'https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S', 'is_local': False, - 'name': 'Sun Models (Live) (ODESZA VIP Remix)', - 'track_id': '2hT93dtTBxGOVYQEa3u2pE', - 'track_number': 19, - 'uri': 'spotify:track:2hT93dtTBxGOVYQEa3u2pE', + 'name': 'Submarine', + 'track_id': '6zJPeOzroQHmIAbhQETa3S', + 'track_number': 8, + 'uri': 'spotify:track:6zJPeOzroQHmIAbhQETa3S', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 135054, + 'duration_ms': 207430, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk', + 'spotify': 'https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX', }), - 'href': 'https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk', + 'href': 'https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX', 'is_local': False, - 'name': 'Hopeful (Live)', - 'track_id': '69YWB2KVAMtIcjx01y2nAk', - 'track_number': 20, - 'uri': 'spotify:track:69YWB2KVAMtIcjx01y2nAk', + 'name': 'Beckham', + 'track_id': '19ZhBuPyYTzNChzoQslVTX', + 'track_number': 9, + 'uri': 'spotify:track:19ZhBuPyYTzNChzoQslVTX', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 275331, + 'duration_ms': 157458, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1CxylMSGYankQropBSWDP3', + 'spotify': 'https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u', }), - 'href': 'https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3', + 'href': 'https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u', 'is_local': False, - 'name': 'Across The Room x Falls (Live) (ODESZA VIP Remix)', - 'track_id': '1CxylMSGYankQropBSWDP3', - 'track_number': 21, - 'uri': 'spotify:track:1CxylMSGYankQropBSWDP3', + 'name': 'Switch', + 'track_id': '4wTOzQ92UzEBli1ubpcw3u', + 'track_number': 10, + 'uri': 'spotify:track:4wTOzQ92UzEBli1ubpcw3u', }), dict({ 'artists': list([ dict({ - 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', - 'name': 'ODESZA', - 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', }), ]), 'disc_number': 1, - 'duration_ms': 216988, + 'duration_ms': 263354, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR', + 'spotify': 'https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t', }), - 'href': 'https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR', + 'href': 'https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t', 'is_local': False, - 'name': 'Loyal (Live)', - 'track_id': '6aocvw4IvUE1zmlAavNkcR', - 'track_number': 22, - 'uri': 'spotify:track:6aocvw4IvUE1zmlAavNkcR', + 'name': 'Run To Tomorrow', + 'track_id': '22sc5jdkR8FTgbGWTdOy7t', + 'track_number': 11, + 'uri': 'spotify:track:22sc5jdkR8FTgbGWTdOy7t', + }), + ]), + 'uri': 'spotify:album:0GpklLqjWNrhropGa4XRRD', + }), + }), + dict({ + 'added_at': datetime.datetime(2024, 5, 30, 22, 0, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1Sr34Sc0yqB4SlxanOrit0', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3', + 'width': 64, }), + ]), + 'name': 'The Last Goodbye Tour Live', + 'release_date': '2024-05-31', + 'release_date_precision': , + 'total_tracks': 27, + 'tracks': list([ dict({ 'artists': list([ dict({ @@ -12698,17 +19942,17 @@ }), ]), 'disc_number': 1, - 'duration_ms': 163770, + 'duration_ms': 186400, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF', + 'spotify': 'https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2', }), - 'href': 'https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF', + 'href': 'https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2', 'is_local': False, - 'name': "Don't Stop (Live) (ODESZA VIP Remix)", - 'track_id': '5XWGvqsLKBAj0y47KpHmlF', - 'track_number': 23, - 'uri': 'spotify:track:5XWGvqsLKBAj0y47KpHmlF', + 'name': 'This Version of You (Live)', + 'track_id': '24ainScgxd2UDayPsLzzm2', + 'track_number': 1, + 'uri': 'spotify:track:24ainScgxd2UDayPsLzzm2', }), dict({ 'artists': list([ @@ -12719,17 +19963,17 @@ }), ]), 'disc_number': 1, - 'duration_ms': 45000, + 'duration_ms': 189985, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec', + 'spotify': 'https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym', }), - 'href': 'https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec', + 'href': 'https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym', 'is_local': False, - 'name': 'Just A Memory (Interlude) (Live)', - 'track_id': '2MA8Ep98eY5wRF28zCE5ec', - 'track_number': 24, - 'uri': 'spotify:track:2MA8Ep98eY5wRF28zCE5ec', + 'name': 'Behind the Sun (Live)', + 'track_id': '4gKFQ6sGKfZr44NXw6wjym', + 'track_number': 2, + 'uri': 'spotify:track:4gKFQ6sGKfZr44NXw6wjym', }), dict({ 'artists': list([ @@ -12738,24 +19982,19 @@ 'name': 'ODESZA', 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), - dict({ - 'artist_id': '5EBlHXi71tDXnFtroEh7Rg', - 'name': 'Naomi Wild', - 'uri': 'spotify:artist:5EBlHXi71tDXnFtroEh7Rg', - }), ]), 'disc_number': 1, - 'duration_ms': 229816, + 'duration_ms': 201954, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY', + 'spotify': 'https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt', }), - 'href': 'https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY', + 'href': 'https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt', 'is_local': False, - 'name': 'Higher Ground (Live)', - 'track_id': '6v5Gc28XYQu2cDCmahhlBY', - 'track_number': 25, - 'uri': 'spotify:track:6v5Gc28XYQu2cDCmahhlBY', + 'name': 'All We Need (Live) (ODESZA VIP Remix)', + 'track_id': '2W0IElS3uccgQUXKAwVyAt', + 'track_number': 3, + 'uri': 'spotify:track:2W0IElS3uccgQUXKAwVyAt', }), dict({ 'artists': list([ @@ -12766,17 +20005,17 @@ }), ]), 'disc_number': 1, - 'duration_ms': 383750, + 'duration_ms': 267545, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8', + 'spotify': 'https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA', }), - 'href': 'https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8', + 'href': 'https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA', 'is_local': False, - 'name': 'A Moment Apart (Live) (ODESZA VIP Remix)', - 'track_id': '6nwtUZBvCUzWp8HhhGrDu8', - 'track_number': 26, - 'uri': 'spotify:track:6nwtUZBvCUzWp8HhhGrDu8', + 'name': 'Love Letter (Live) (ODESZA VIP Remix)', + 'track_id': '4JK3JhyIl1icooy0uq37DA', + 'track_number': 4, + 'uri': 'spotify:track:4JK3JhyIl1icooy0uq37DA', }), dict({ 'artists': list([ @@ -12787,11843 +20026,15486 @@ }), ]), 'disc_number': 1, - 'duration_ms': 419555, + 'duration_ms': 176459, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ', + 'spotify': 'https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK', }), - 'href': 'https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ', + 'href': 'https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK', 'is_local': False, - 'name': 'The Last Goodbye (Live)', - 'track_id': '6y6vQOD1k3fBySGpjPmIkJ', - 'track_number': 27, - 'uri': 'spotify:track:6y6vQOD1k3fBySGpjPmIkJ', - }), - ]), - 'uri': 'spotify:album:1Sr34Sc0yqB4SlxanOrit0', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 5, 30, 22, 0, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '6YpuiWNRGcMEumvRbEuOvP', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb', - 'width': 64, + 'name': 'Say My Name x Late Night (Live)', + 'track_id': '1ZVmGzftncwotIcJzkiTQK', + 'track_number': 5, + 'uri': 'spotify:track:1ZVmGzftncwotIcJzkiTQK', }), - ]), - 'name': 'Believe Me Now?', - 'release_date': '2024-05-31', - 'release_date_precision': , - 'total_tracks': 15, - 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '3K9muOlJVKLgH4SIwwZiDe', - 'name': 'Self Esteem', - 'uri': 'spotify:artist:3K9muOlJVKLgH4SIwwZiDe', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 231684, - 'explicit': True, + 'duration_ms': 151384, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E', + 'spotify': 'https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs', }), - 'href': 'https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4', + 'href': 'https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs', 'is_local': False, - 'name': 'True Colours (feat. Self Esteem)', - 'track_id': '0djt8pab0Si1xC7B2ddfF4', - 'track_number': 1, - 'uri': 'spotify:track:0djt8pab0Si1xC7B2ddfF4', + 'name': 'In the Rain (Live)', + 'track_id': '2mOOT12V4TMB9O6p75Hehs', + 'track_number': 6, + 'uri': 'spotify:track:2mOOT12V4TMB9O6p75Hehs', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '4iVhFmG8YCCEHANGeUUS9q', + 'name': 'Pretty Lights', + 'uri': 'spotify:artist:4iVhFmG8YCCEHANGeUUS9q', }), ]), 'disc_number': 1, - 'duration_ms': 197014, + 'duration_ms': 96053, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg', + 'spotify': 'https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv', }), - 'href': 'https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp', + 'href': 'https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv', 'is_local': False, - 'name': 'Darkest Hour', - 'track_id': '0rX4zPMMpg8IhCKElJp8lp', - 'track_number': 2, - 'uri': 'spotify:track:0rX4zPMMpg8IhCKElJp8lp', + 'name': "One Day They'll Know (Live) (ODESZA VIP Remix)", + 'track_id': '3mqmlOkyeU3hP1rERf6tjv', + 'track_number': 7, + 'uri': 'spotify:track:3mqmlOkyeU3hP1rERf6tjv', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '6BkSTbIWZrLZZK0sa2GehR', + 'name': 'Charlie Houston', + 'uri': 'spotify:artist:6BkSTbIWZrLZZK0sa2GehR', }), ]), 'disc_number': 1, - 'duration_ms': 175628, + 'duration_ms': 261978, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR', + 'spotify': 'https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo', }), - 'href': 'https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP', + 'href': 'https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo', 'is_local': False, - 'name': 'Outside Of Love', - 'track_id': '3LcXzMeyG4jy8ERxtzHGgP', - 'track_number': 3, - 'uri': 'spotify:track:3LcXzMeyG4jy8ERxtzHGgP', + 'name': 'Wide Awake (Live)', + 'track_id': '2A0cPJCmtGITjsKAIhzEfo', + 'track_number': 8, + 'uri': 'spotify:track:2A0cPJCmtGITjsKAIhzEfo', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', - 'name': 'Sonny Fodera', - 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 189087, + 'duration_ms': 214092, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki', + 'spotify': 'https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX', }), - 'href': 'https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya', + 'href': 'https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX', 'is_local': False, - 'name': 'Never Be Alone (feat. Sonny Fodera)', - 'track_id': '3MLsgTj4GNyq6Nost2T5ya', - 'track_number': 4, - 'uri': 'spotify:track:3MLsgTj4GNyq6Nost2T5ya', + 'name': 'Bloom (Live) (ODESZA VIP Remix)', + 'track_id': '1a73OJypd6sgDkAwA75NDX', + 'track_number': 9, + 'uri': 'spotify:track:1a73OJypd6sgDkAwA75NDX', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 148135, + 'duration_ms': 268167, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4', + 'spotify': 'https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL', }), - 'href': 'https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a', + 'href': 'https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL', 'is_local': False, - 'name': 'Multiply', - 'track_id': '1VjvxoeHjF0DJhsmvLte8a', - 'track_number': 5, - 'uri': 'spotify:track:1VjvxoeHjF0DJhsmvLte8a', + 'name': 'Equal x Boy (Live)', + 'track_id': '4tL49ueZxBPJD5Z9pmNCAL', + 'track_number': 10, + 'uri': 'spotify:track:4tL49ueZxBPJD5Z9pmNCAL', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 212421, + 'duration_ms': 116759, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL', + 'spotify': 'https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW', }), - 'href': 'https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT', + 'href': 'https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW', 'is_local': False, - 'name': 'Swim', - 'track_id': '5Bnm9QxfBKxc1sNvZanTBT', - 'track_number': 6, - 'uri': 'spotify:track:5Bnm9QxfBKxc1sNvZanTBT', + 'name': 'All My Life (Live)', + 'track_id': '1ZJiqlxrcILMONjWo9wwaW', + 'track_number': 11, + 'uri': 'spotify:track:1ZJiqlxrcILMONjWo9wwaW', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '3NP4jJcW3R6qO6rbtnH0wn', + 'name': 'MARO', + 'uri': 'spotify:artist:3NP4jJcW3R6qO6rbtnH0wn', }), ]), 'disc_number': 1, - 'duration_ms': 178352, + 'duration_ms': 161641, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6', + 'spotify': 'https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE', }), - 'href': 'https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2', + 'href': 'https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE', 'is_local': False, - 'name': 'Man Of My Dreams', - 'track_id': '2HYvYa9b8lASSBxgupn7H2', - 'track_number': 7, - 'uri': 'spotify:track:2HYvYa9b8lASSBxgupn7H2', + 'name': 'Better Now (Live)', + 'track_id': '59aWxauGOAbQycO8GNK7LE', + 'track_number': 12, + 'uri': 'spotify:track:59aWxauGOAbQycO8GNK7LE', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '4qOzMSukiZoiSjPQw8Zs7s', + 'name': 'Mansionair', + 'uri': 'spotify:artist:4qOzMSukiZoiSjPQw8Zs7s', + }), + dict({ + 'artist_id': '5EBlHXi71tDXnFtroEh7Rg', + 'name': 'Naomi Wild', + 'uri': 'spotify:artist:5EBlHXi71tDXnFtroEh7Rg', }), ]), 'disc_number': 1, - 'duration_ms': 176661, + 'duration_ms': 181843, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP', + 'spotify': 'https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6', }), - 'href': 'https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9', + 'href': 'https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6', 'is_local': False, - 'name': 'Linger', - 'track_id': '6yCLuQMWVBBfgwqLaTtks9', - 'track_number': 8, - 'uri': 'spotify:track:6yCLuQMWVBBfgwqLaTtks9', + 'name': 'Line Of Sight (Live)', + 'track_id': '7q7B0VRgFKegcxO2Edzbi6', + 'track_number': 13, + 'uri': 'spotify:track:7q7B0VRgFKegcxO2Edzbi6', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '6b5YOgXIliAozdo49vUCJQ', + 'name': 'Izzy Bizu', + 'uri': 'spotify:artist:6b5YOgXIliAozdo49vUCJQ', }), ]), 'disc_number': 1, - 'duration_ms': 230657, + 'duration_ms': 243413, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh', + 'spotify': 'https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV', }), - 'href': 'https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R', + 'href': 'https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV', 'is_local': False, - 'name': 'Lonely Again', - 'track_id': '6HHONxXw6BXNg2YSELJn1R', - 'track_number': 9, - 'uri': 'spotify:track:6HHONxXw6BXNg2YSELJn1R', + 'name': 'Forgive Me (Live) (ODESZA VIP Remix)', + 'track_id': '0PD6WTOfk9kBi6THqAaBKV', + 'track_number': 14, + 'uri': 'spotify:track:0PD6WTOfk9kBi6THqAaBKV', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '26OmQHradZrF0CS7DrgWDH', - 'name': 'Lewis Thompson', - 'uri': 'spotify:artist:26OmQHradZrF0CS7DrgWDH', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 153742, + 'duration_ms': 105046, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR', + 'spotify': 'https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an', }), - 'href': 'https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn', + 'href': 'https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an', 'is_local': False, - 'name': 'Side Effects', - 'track_id': '2aAksX61WFBUxWayOhEDJn', - 'track_number': 10, - 'uri': 'spotify:track:2aAksX61WFBUxWayOhEDJn', + 'name': 'La Ciudad (Live) (ODESZA VIP Remix)', + 'track_id': '5r06HL1g9lqxc5CAxBK7an', + 'track_number': 15, + 'uri': 'spotify:track:5r06HL1g9lqxc5CAxBK7an', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '2MPHBxznH1fj59jbOWY38u', + 'name': 'Sudan Archives', + 'uri': 'spotify:artist:2MPHBxznH1fj59jbOWY38u', }), ]), 'disc_number': 1, - 'duration_ms': 156248, - 'explicit': False, + 'duration_ms': 211440, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh', + 'spotify': 'https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt', }), - 'href': 'https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY', + 'href': 'https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt', 'is_local': False, - 'name': 'Back Around', - 'track_id': '3m9uxUtp0P8dF3U0Uny0uY', - 'track_number': 11, - 'uri': 'spotify:track:3m9uxUtp0P8dF3U0Uny0uY', + 'name': 'Selfish Soul (Live) (ODESZA VIP Remix)', + 'track_id': '7rwME0L7zpCwQgHcIwzbvt', + 'track_number': 16, + 'uri': 'spotify:track:7rwME0L7zpCwQgHcIwzbvt', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '60yfafz0P3gqaUaOUIddae', + 'name': 'BRONSON', + 'uri': 'spotify:artist:60yfafz0P3gqaUaOUIddae', }), ]), 'disc_number': 1, - 'duration_ms': 133289, + 'duration_ms': 194464, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P', + 'spotify': 'https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA', }), - 'href': 'https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur', + 'href': 'https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA', 'is_local': False, - 'name': 'Keep Holding On', - 'track_id': '7z7NUTBS73esdMiCtZ9pur', - 'track_number': 12, - 'uri': 'spotify:track:7z7NUTBS73esdMiCtZ9pur', + 'name': 'TENSE (Live)', + 'track_id': '4UU6fudp68mcPuUFJf1sNA', + 'track_number': 17, + 'uri': 'spotify:track:4UU6fudp68mcPuUFJf1sNA', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), dict({ - 'artist_id': '5spVyRrIk8Es1ZBi2ClEUU', - 'name': 'RILEASA', - 'uri': 'spotify:artist:5spVyRrIk8Es1ZBi2ClEUU', + 'artist_id': '60yfafz0P3gqaUaOUIddae', + 'name': 'BRONSON', + 'uri': 'spotify:artist:60yfafz0P3gqaUaOUIddae', }), ]), 'disc_number': 1, - 'duration_ms': 164005, + 'duration_ms': 142423, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5', + 'spotify': 'https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs', }), - 'href': 'https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc', + 'href': 'https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs', 'is_local': False, - 'name': 'One Track Mind (feat. RILEASA)', - 'track_id': '5RgB1e7a1KHrXrfT3UuPCc', - 'track_number': 13, - 'uri': 'spotify:track:5RgB1e7a1KHrXrfT3UuPCc', + 'name': 'KEEP MOVING (Live)', + 'track_id': '41z8eydTUKN0IL0QZtRcIs', + 'track_number': 18, + 'uri': 'spotify:track:41z8eydTUKN0IL0QZtRcIs', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '3jNkaOXasoc7RsxdchvEVq', - 'name': 'Chase & Status', - 'uri': 'spotify:artist:3jNkaOXasoc7RsxdchvEVq', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 164914, - 'explicit': True, + 'duration_ms': 211750, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M', + 'spotify': 'https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE', }), - 'href': 'https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC', + 'href': 'https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE', 'is_local': False, - 'name': 'Disconnect', - 'track_id': '3VFaV7Mw0di4XFE84eHnrC', - 'track_number': 14, - 'uri': 'spotify:track:3VFaV7Mw0di4XFE84eHnrC', + 'name': 'Sun Models (Live) (ODESZA VIP Remix)', + 'track_id': '2hT93dtTBxGOVYQEa3u2pE', + 'track_number': 19, + 'uri': 'spotify:track:2hT93dtTBxGOVYQEa3u2pE', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 179015, + 'duration_ms': 135054, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb', + 'spotify': 'https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk', }), - 'href': 'https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA', + 'href': 'https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk', 'is_local': False, - 'name': 'Right Here', - 'track_id': '0S9laeO22k8rgM1PqZtgAA', - 'track_number': 15, - 'uri': 'spotify:track:0S9laeO22k8rgM1PqZtgAA', - }), - ]), - 'uri': 'spotify:album:6YpuiWNRGcMEumvRbEuOvP', - }), - }), - dict({ - 'added_at': datetime.datetime(2022, 11, 7, 16, 59, 34, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '1ZzRJDpsGzs8wkkI0w6F8G', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5vmwWgrlwCfHm1P0vdDFbU', - 'name': 'Maan', - 'uri': 'spotify:artist:5vmwWgrlwCfHm1P0vdDFbU', - }), - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128', - 'width': 64, + 'name': 'Hopeful (Live)', + 'track_id': '69YWB2KVAMtIcjx01y2nAk', + 'track_number': 20, + 'uri': 'spotify:track:69YWB2KVAMtIcjx01y2nAk', }), - ]), - 'name': 'Stiekem ft. Goldband', - 'release_date': '2022-11-04', - 'release_date_precision': , - 'total_tracks': 1, - 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '5vmwWgrlwCfHm1P0vdDFbU', - 'name': 'Maan', - 'uri': 'spotify:artist:5vmwWgrlwCfHm1P0vdDFbU', - }), - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 203437, + 'duration_ms': 275331, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3', + 'spotify': 'https://open.spotify.com/track/1CxylMSGYankQropBSWDP3', }), - 'href': 'https://api.spotify.com/v1/tracks/1ulgMAx95xb3N33SMklfG3', + 'href': 'https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3', 'is_local': False, - 'name': 'Stiekem', - 'track_id': '1ulgMAx95xb3N33SMklfG3', - 'track_number': 1, - 'uri': 'spotify:track:1ulgMAx95xb3N33SMklfG3', - }), - ]), - 'uri': 'spotify:album:1ZzRJDpsGzs8wkkI0w6F8G', - }), - }), - dict({ - 'added_at': datetime.datetime(2021, 8, 6, 10, 7, 29, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '16mh2RvDOwlv2gw7BFElFf', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '66TrUkUZ3RM29dqeDQRgyA', - 'name': 'Ella Eyre', - 'uri': 'spotify:artist:66TrUkUZ3RM29dqeDQRgyA', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590', - 'width': 64, + 'name': 'Across The Room x Falls (Live) (ODESZA VIP Remix)', + 'track_id': '1CxylMSGYankQropBSWDP3', + 'track_number': 21, + 'uri': 'spotify:track:1CxylMSGYankQropBSWDP3', }), - ]), - 'name': 'Business (with Ella Eyre)', - 'release_date': '2021-08-06', - 'release_date_precision': , - 'total_tracks': 4, - 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '66TrUkUZ3RM29dqeDQRgyA', - 'name': 'Ella Eyre', - 'uri': 'spotify:artist:66TrUkUZ3RM29dqeDQRgyA', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 197720, - 'explicit': True, + 'duration_ms': 216988, + 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw', + 'spotify': 'https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR', }), - 'href': 'https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw', + 'href': 'https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR', 'is_local': False, - 'name': 'Business (with Ella Eyre)', - 'track_id': '7f3oSqQXBCUiWtR0m7ieRw', - 'track_number': 1, - 'uri': 'spotify:track:7f3oSqQXBCUiWtR0m7ieRw', + 'name': 'Loyal (Live)', + 'track_id': '6aocvw4IvUE1zmlAavNkcR', + 'track_number': 22, + 'uri': 'spotify:track:6aocvw4IvUE1zmlAavNkcR', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', - 'name': 'David Guetta', - 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 161386, + 'duration_ms': 163770, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l', + 'spotify': 'https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF', }), - 'href': 'https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l', + 'href': 'https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF', 'is_local': False, - 'name': 'Remember (and David Guetta)', - 'track_id': '6YkclKF41aboSB5Sf4p15l', - 'track_number': 2, - 'uri': 'spotify:track:6YkclKF41aboSB5Sf4p15l', + 'name': "Don't Stop (Live) (ODESZA VIP Remix)", + 'track_id': '5XWGvqsLKBAj0y47KpHmlF', + 'track_number': 23, + 'uri': 'spotify:track:5XWGvqsLKBAj0y47KpHmlF', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', - }), - dict({ - 'artist_id': '1IueXOQyABrMOprrzwQJWN', - 'name': 'Sigala', - 'uri': 'spotify:artist:1IueXOQyABrMOprrzwQJWN', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 193360, + 'duration_ms': 45000, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk', + 'spotify': 'https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec', }), - 'href': 'https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk', + 'href': 'https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec', 'is_local': False, - 'name': 'Heaven On My Mind (with Sigala)', - 'track_id': '2N8HEioDelArgvoInf5pkk', - 'track_number': 3, - 'uri': 'spotify:track:2N8HEioDelArgvoInf5pkk', + 'name': 'Just A Memory (Interlude) (Live)', + 'track_id': '2MA8Ep98eY5wRF28zCE5ec', + 'track_number': 24, + 'uri': 'spotify:track:2MA8Ep98eY5wRF28zCE5ec', }), dict({ 'artists': list([ dict({ - 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', - 'name': 'Becky Hill', - 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), dict({ - 'artist_id': '26OrZl5U3VNGHU9qUj8EcM', - 'name': 'Shift K3Y', - 'uri': 'spotify:artist:26OrZl5U3VNGHU9qUj8EcM', + 'artist_id': '5EBlHXi71tDXnFtroEh7Rg', + 'name': 'Naomi Wild', + 'uri': 'spotify:artist:5EBlHXi71tDXnFtroEh7Rg', }), ]), 'disc_number': 1, - 'duration_ms': 198493, + 'duration_ms': 229816, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx', + 'spotify': 'https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY', }), - 'href': 'https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx', + 'href': 'https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY', 'is_local': False, - 'name': 'Better Off Without You (feat. Shift K3Y)', - 'track_id': '4RJ9DfYp0sWhPWUjIXKJUx', - 'track_number': 4, - 'uri': 'spotify:track:4RJ9DfYp0sWhPWUjIXKJUx', - }), - ]), - 'uri': 'spotify:album:16mh2RvDOwlv2gw7BFElFf', - }), - }), - dict({ - 'added_at': datetime.datetime(2019, 9, 17, 7, 0, 48, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '1KPqoSV4Rs89YfgAwbLROr', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e', - 'width': 64, + 'name': 'Higher Ground (Live)', + 'track_id': '6v5Gc28XYQu2cDCmahhlBY', + 'track_number': 25, + 'uri': 'spotify:track:6v5Gc28XYQu2cDCmahhlBY', }), - ]), - 'name': "What's Love", - 'release_date': '2019-09-17', - 'release_date_precision': , - 'total_tracks': 1, - 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 176727, + 'duration_ms': 383750, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk', + 'spotify': 'https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8', }), - 'href': 'https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk', + 'href': 'https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8', 'is_local': False, - 'name': "What's Love", - 'track_id': '21Z6lY56DuaKBZBkPKK4Nk', - 'track_number': 1, - 'uri': 'spotify:track:21Z6lY56DuaKBZBkPKK4Nk', - }), - ]), - 'uri': 'spotify:album:1KPqoSV4Rs89YfgAwbLROr', - }), - }), - dict({ - 'added_at': datetime.datetime(2019, 4, 5, 7, 8, 25, tzinfo=datetime.timezone.utc), - 'album': dict({ - 'album_id': '6OSLjWXJHlMRfQwM0HkOhQ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e', - 'width': 64, - }), - ]), - 'name': 'Remember You', - 'release_date': '2019-04-05', - 'release_date_precision': , - 'total_tracks': 1, - 'tracks': list([ + 'name': 'A Moment Apart (Live) (ODESZA VIP Remix)', + 'track_id': '6nwtUZBvCUzWp8HhhGrDu8', + 'track_number': 26, + 'uri': 'spotify:track:6nwtUZBvCUzWp8HhhGrDu8', + }), dict({ 'artists': list([ dict({ - 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', - 'name': 'Conro', - 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', }), ]), 'disc_number': 1, - 'duration_ms': 189000, + 'duration_ms': 419555, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI', + 'spotify': 'https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ', }), - 'href': 'https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY', + 'href': 'https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ', 'is_local': False, - 'name': 'Remember You', - 'track_id': '796JqxZ3o0ZH6OllNRDuTY', - 'track_number': 1, - 'uri': 'spotify:track:796JqxZ3o0ZH6OllNRDuTY', + 'name': 'The Last Goodbye (Live)', + 'track_id': '6y6vQOD1k3fBySGpjPmIkJ', + 'track_number': 27, + 'uri': 'spotify:track:6y6vQOD1k3fBySGpjPmIkJ', }), ]), - 'uri': 'spotify:album:6OSLjWXJHlMRfQwM0HkOhQ', + 'uri': 'spotify:album:1Sr34Sc0yqB4SlxanOrit0', }), }), dict({ - 'added_at': datetime.datetime(2019, 3, 31, 2, 37, 47, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2024, 5, 30, 22, 0, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '79iwhS4dR28DeLyHZvuoSd', + 'album_id': '6YpuiWNRGcMEumvRbEuOvP', 'album_type': , 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2', + 'url': 'https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2', + 'url': 'https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2', + 'url': 'https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb', 'width': 64, }), ]), - 'name': 'Flourish', - 'release_date': '2019-03-08', + 'name': 'Believe Me Now?', + 'release_date': '2024-05-31', 'release_date_precision': , - 'total_tracks': 12, + 'total_tracks': 15, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '3K9muOlJVKLgH4SIwwZiDe', + 'name': 'Self Esteem', + 'uri': 'spotify:artist:3K9muOlJVKLgH4SIwwZiDe', }), ]), 'disc_number': 1, - 'duration_ms': 228354, - 'explicit': False, + 'duration_ms': 231684, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9', + 'spotify': 'https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E', }), - 'href': 'https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9', + 'href': 'https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4', 'is_local': False, - 'name': 'Down', - 'track_id': '2IhMGMdJv5fBUnJCLksKj9', + 'name': 'True Colours (feat. Self Esteem)', + 'track_id': '0djt8pab0Si1xC7B2ddfF4', 'track_number': 1, - 'uri': 'spotify:track:2IhMGMdJv5fBUnJCLksKj9', + 'uri': 'spotify:track:0djt8pab0Si1xC7B2ddfF4', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 189711, + 'duration_ms': 197014, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM', + 'spotify': 'https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg', }), - 'href': 'https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM', + 'href': 'https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp', 'is_local': False, - 'name': 'Calling', - 'track_id': '2bPB38GR1k2UxAjBzEi1DM', + 'name': 'Darkest Hour', + 'track_id': '0rX4zPMMpg8IhCKElJp8lp', 'track_number': 2, - 'uri': 'spotify:track:2bPB38GR1k2UxAjBzEi1DM', + 'uri': 'spotify:track:0rX4zPMMpg8IhCKElJp8lp', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 227549, + 'duration_ms': 175628, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6', + 'spotify': 'https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR', }), - 'href': 'https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6', + 'href': 'https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP', 'is_local': False, - 'name': 'Fourteen', - 'track_id': '6UeOqEdtIALSGkLPcw7Rl6', + 'name': 'Outside Of Love', + 'track_id': '3LcXzMeyG4jy8ERxtzHGgP', 'track_number': 3, - 'uri': 'spotify:track:6UeOqEdtIALSGkLPcw7Rl6', + 'uri': 'spotify:track:3LcXzMeyG4jy8ERxtzHGgP', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', + 'name': 'Sonny Fodera', + 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', }), ]), 'disc_number': 1, - 'duration_ms': 201566, + 'duration_ms': 189087, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM', + 'spotify': 'https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki', }), - 'href': 'https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM', + 'href': 'https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya', 'is_local': False, - 'name': 'Anyone', - 'track_id': '21alqUkGOEr7DEJncHfQqM', + 'name': 'Never Be Alone (feat. Sonny Fodera)', + 'track_id': '3MLsgTj4GNyq6Nost2T5ya', 'track_number': 4, - 'uri': 'spotify:track:21alqUkGOEr7DEJncHfQqM', + 'uri': 'spotify:track:3MLsgTj4GNyq6Nost2T5ya', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 200662, + 'duration_ms': 148135, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH', + 'spotify': 'https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4', }), - 'href': 'https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH', + 'href': 'https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a', 'is_local': False, - 'name': 'Difference', - 'track_id': '4PjkUwMvr7g1M45DSqlQkH', + 'name': 'Multiply', + 'track_id': '1VjvxoeHjF0DJhsmvLte8a', 'track_number': 5, - 'uri': 'spotify:track:4PjkUwMvr7g1M45DSqlQkH', + 'uri': 'spotify:track:1VjvxoeHjF0DJhsmvLte8a', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 215348, + 'duration_ms': 212421, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI', + 'spotify': 'https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL', }), - 'href': 'https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI', + 'href': 'https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT', 'is_local': False, - 'name': 'No Worries', - 'track_id': '0XZjcj8GUyWCEcnDgWDoTI', + 'name': 'Swim', + 'track_id': '5Bnm9QxfBKxc1sNvZanTBT', 'track_number': 6, - 'uri': 'spotify:track:0XZjcj8GUyWCEcnDgWDoTI', + 'uri': 'spotify:track:5Bnm9QxfBKxc1sNvZanTBT', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 244935, + 'duration_ms': 178352, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO', + 'spotify': 'https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6', }), - 'href': 'https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO', + 'href': 'https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2', 'is_local': False, - 'name': 'New Day', - 'track_id': '4p0uwwMD4GIUlNZACqPJXO', + 'name': 'Man Of My Dreams', + 'track_id': '2HYvYa9b8lASSBxgupn7H2', 'track_number': 7, - 'uri': 'spotify:track:4p0uwwMD4GIUlNZACqPJXO', + 'uri': 'spotify:track:2HYvYa9b8lASSBxgupn7H2', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + ]), + 'disc_number': 1, + 'duration_ms': 176661, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP', + }), + 'href': 'https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9', + 'is_local': False, + 'name': 'Linger', + 'track_id': '6yCLuQMWVBBfgwqLaTtks9', + 'track_number': 8, + 'uri': 'spotify:track:6yCLuQMWVBBfgwqLaTtks9', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + ]), + 'disc_number': 1, + 'duration_ms': 230657, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh', + }), + 'href': 'https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R', + 'is_local': False, + 'name': 'Lonely Again', + 'track_id': '6HHONxXw6BXNg2YSELJn1R', + 'track_number': 9, + 'uri': 'spotify:track:6HHONxXw6BXNg2YSELJn1R', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '26OmQHradZrF0CS7DrgWDH', + 'name': 'Lewis Thompson', + 'uri': 'spotify:artist:26OmQHradZrF0CS7DrgWDH', + }), + ]), + 'disc_number': 1, + 'duration_ms': 153742, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR', + }), + 'href': 'https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn', + 'is_local': False, + 'name': 'Side Effects', + 'track_id': '2aAksX61WFBUxWayOhEDJn', + 'track_number': 10, + 'uri': 'spotify:track:2aAksX61WFBUxWayOhEDJn', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 183355, + 'duration_ms': 156248, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp', + 'spotify': 'https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh', }), - 'href': 'https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp', + 'href': 'https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY', 'is_local': False, - 'name': 'We Got It', - 'track_id': '3suDoAXX6otxz0WBMHc6pp', - 'track_number': 8, - 'uri': 'spotify:track:3suDoAXX6otxz0WBMHc6pp', + 'name': 'Back Around', + 'track_id': '3m9uxUtp0P8dF3U0Uny0uY', + 'track_number': 11, + 'uri': 'spotify:track:3m9uxUtp0P8dF3U0Uny0uY', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 216855, + 'duration_ms': 133289, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq', + 'spotify': 'https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P', }), - 'href': 'https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq', + 'href': 'https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur', 'is_local': False, - 'name': 'Be Mine', - 'track_id': '7GqsS485BuDKtkuKdAaiRq', - 'track_number': 9, - 'uri': 'spotify:track:7GqsS485BuDKtkuKdAaiRq', + 'name': 'Keep Holding On', + 'track_id': '7z7NUTBS73esdMiCtZ9pur', + 'track_number': 12, + 'uri': 'spotify:track:7z7NUTBS73esdMiCtZ9pur', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '5spVyRrIk8Es1ZBi2ClEUU', + 'name': 'RILEASA', + 'uri': 'spotify:artist:5spVyRrIk8Es1ZBi2ClEUU', }), ]), 'disc_number': 1, - 'duration_ms': 255650, + 'duration_ms': 164005, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M', + 'spotify': 'https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5', }), - 'href': 'https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M', + 'href': 'https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc', 'is_local': False, - 'name': 'Underwater', - 'track_id': '12o2tk8IhIDUiv9wargB8M', - 'track_number': 10, - 'uri': 'spotify:track:12o2tk8IhIDUiv9wargB8M', + 'name': 'One Track Mind (feat. RILEASA)', + 'track_id': '5RgB1e7a1KHrXrfT3UuPCc', + 'track_number': 13, + 'uri': 'spotify:track:5RgB1e7a1KHrXrfT3UuPCc', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '3jNkaOXasoc7RsxdchvEVq', + 'name': 'Chase & Status', + 'uri': 'spotify:artist:3jNkaOXasoc7RsxdchvEVq', }), ]), 'disc_number': 1, - 'duration_ms': 206862, - 'explicit': False, + 'duration_ms': 164914, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV', + 'spotify': 'https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M', }), - 'href': 'https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV', + 'href': 'https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC', 'is_local': False, - 'name': 'You And I', - 'track_id': '4AHrbiyZ2bPgcYMMh9I7UV', - 'track_number': 11, - 'uri': 'spotify:track:4AHrbiyZ2bPgcYMMh9I7UV', + 'name': 'Disconnect', + 'track_id': '3VFaV7Mw0di4XFE84eHnrC', + 'track_number': 14, + 'uri': 'spotify:track:3VFaV7Mw0di4XFE84eHnrC', }), dict({ 'artists': list([ dict({ - 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', - 'name': 'RONDÉ', - 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), ]), 'disc_number': 1, - 'duration_ms': 201932, + 'duration_ms': 179015, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa', + 'spotify': 'https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb', }), - 'href': 'https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa', + 'href': 'https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA', 'is_local': False, - 'name': 'All That Was Left', - 'track_id': '725MTKVYYrxtenlGtLfAIa', - 'track_number': 12, - 'uri': 'spotify:track:725MTKVYYrxtenlGtLfAIa', + 'name': 'Right Here', + 'track_id': '0S9laeO22k8rgM1PqZtgAA', + 'track_number': 15, + 'uri': 'spotify:track:0S9laeO22k8rgM1PqZtgAA', }), ]), - 'uri': 'spotify:album:79iwhS4dR28DeLyHZvuoSd', + 'uri': 'spotify:album:6YpuiWNRGcMEumvRbEuOvP', }), }), dict({ - 'added_at': datetime.datetime(2018, 10, 4, 21, 11, 2, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2022, 11, 7, 16, 59, 34, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '7lsSj3qTDdmEqVvVLdoQWZ', + 'album_id': '1ZzRJDpsGzs8wkkI0w6F8G', 'album_type': , 'artists': list([ dict({ - 'artist_id': '5vBrKGOjN10BMwB0cJADj4', - 'name': 'bülow', - 'uri': 'spotify:artist:5vBrKGOjN10BMwB0cJADj4', + 'artist_id': '5vmwWgrlwCfHm1P0vdDFbU', + 'name': 'Maan', + 'uri': 'spotify:artist:5vmwWgrlwCfHm1P0vdDFbU', + }), + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5', + 'url': 'https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128', 'width': 64, }), ]), - 'name': 'Not A Love Song (King Arthur Remix)', - 'release_date': '2018-02-16', + 'name': 'Stiekem ft. Goldband', + 'release_date': '2022-11-04', 'release_date_precision': , 'total_tracks': 1, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '5vBrKGOjN10BMwB0cJADj4', - 'name': 'bülow', - 'uri': 'spotify:artist:5vBrKGOjN10BMwB0cJADj4', + 'artist_id': '5vmwWgrlwCfHm1P0vdDFbU', + 'name': 'Maan', + 'uri': 'spotify:artist:5vmwWgrlwCfHm1P0vdDFbU', }), dict({ - 'artist_id': '2qPxiZiD34NtmokWN6RoP2', - 'name': 'King Topher', - 'uri': 'spotify:artist:2qPxiZiD34NtmokWN6RoP2', + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', }), ]), 'disc_number': 1, - 'duration_ms': 203706, + 'duration_ms': 203437, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN', + 'spotify': 'https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3', }), - 'href': 'https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN', + 'href': 'https://api.spotify.com/v1/tracks/0kINWIY7BToJACjRzIOqsz', 'is_local': False, - 'name': 'Not A Love Song - King Arthur Remix', - 'track_id': '4wD34HA8cOSV32SlItkckN', + 'name': 'Stiekem', + 'track_id': '0kINWIY7BToJACjRzIOqsz', 'track_number': 1, - 'uri': 'spotify:track:4wD34HA8cOSV32SlItkckN', + 'uri': 'spotify:track:0kINWIY7BToJACjRzIOqsz', }), ]), - 'uri': 'spotify:album:7lsSj3qTDdmEqVvVLdoQWZ', + 'uri': 'spotify:album:1ZzRJDpsGzs8wkkI0w6F8G', }), }), dict({ - 'added_at': datetime.datetime(2018, 4, 16, 10, 43, 21, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2021, 8, 6, 10, 7, 29, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '6RxUo05RvVNA06y5BVGoth', - 'album_type': , + 'album_id': '16mh2RvDOwlv2gw7BFElFf', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '66TrUkUZ3RM29dqeDQRgyA', + 'name': 'Ella Eyre', + 'uri': 'spotify:artist:66TrUkUZ3RM29dqeDQRgyA', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305', + 'url': 'https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305', + 'url': 'https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305', + 'url': 'https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590', 'width': 64, }), ]), - 'name': 'This Is Not An Album', - 'release_date': '2018-01-05', - 'release_date_precision': , - 'total_tracks': 10, - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 169739, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY', - }), - 'href': 'https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY', - 'is_local': False, - 'name': 'Ooh Lordy', - 'track_id': '3tpB406UcLxAKAZMXMHlpY', - 'track_number': 1, - 'uri': 'spotify:track:3tpB406UcLxAKAZMXMHlpY', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 203114, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25', - }), - 'href': 'https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25', - 'is_local': False, - 'name': 'Out Of My System', - 'track_id': '1tmDa0FhMn8XSOpEJbVu25', - 'track_number': 2, - 'uri': 'spotify:track:1tmDa0FhMn8XSOpEJbVu25', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '4W48hZAnAHVOC2c8WH8pcq', - 'name': 'The Temper Trap', - 'uri': 'spotify:artist:4W48hZAnAHVOC2c8WH8pcq', - }), - dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', - }), - ]), - 'disc_number': 1, - 'duration_ms': 294005, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7', - }), - 'href': 'https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7', - 'is_local': False, - 'name': 'Sweet Disposition - Bootleg', - 'track_id': '1QBOH8W1ZhRoTOoHvfaZn7', - 'track_number': 3, - 'uri': 'spotify:track:1QBOH8W1ZhRoTOoHvfaZn7', - }), + 'name': 'Business (with Ella Eyre)', + 'release_date': '2021-08-06', + 'release_date_precision': , + 'total_tracks': 4, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', + }), + dict({ + 'artist_id': '66TrUkUZ3RM29dqeDQRgyA', + 'name': 'Ella Eyre', + 'uri': 'spotify:artist:66TrUkUZ3RM29dqeDQRgyA', }), ]), 'disc_number': 1, - 'duration_ms': 209152, - 'explicit': False, + 'duration_ms': 197720, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub', + 'spotify': 'https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw', }), - 'href': 'https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub', + 'href': 'https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw', 'is_local': False, - 'name': "'93", - 'track_id': '5zC1NaCQeETz5b0IysG5Ub', - 'track_number': 4, - 'uri': 'spotify:track:5zC1NaCQeETz5b0IysG5Ub', + 'name': 'Business (with Ella Eyre)', + 'track_id': '7f3oSqQXBCUiWtR0m7ieRw', + 'track_number': 1, + 'uri': 'spotify:track:7f3oSqQXBCUiWtR0m7ieRw', }), dict({ 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), dict({ - 'artist_id': '6F3vLfyutkUhpM50G84eMt', - 'name': 'Endor', - 'uri': 'spotify:artist:6F3vLfyutkUhpM50G84eMt', + 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', + 'name': 'David Guetta', + 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', }), ]), 'disc_number': 1, - 'duration_ms': 208665, + 'duration_ms': 161386, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp', + 'spotify': 'https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l', }), - 'href': 'https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp', + 'href': 'https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l', 'is_local': False, - 'name': 'Give It Up - Youngr x Endor', - 'track_id': '44478ajpb5DPFaWVDbKSPp', - 'track_number': 5, - 'uri': 'spotify:track:44478ajpb5DPFaWVDbKSPp', + 'name': 'Remember (and David Guetta)', + 'track_id': '6YkclKF41aboSB5Sf4p15l', + 'track_number': 2, + 'uri': 'spotify:track:6YkclKF41aboSB5Sf4p15l', }), dict({ 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), - ]), - 'disc_number': 1, - 'duration_ms': 185334, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu', - }), - 'href': 'https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu', - 'is_local': False, - 'name': "What's Next", - 'track_id': '7MTsaNHz8evXD32xLjfjDu', - 'track_number': 6, - 'uri': 'spotify:track:7MTsaNHz8evXD32xLjfjDu', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '1IueXOQyABrMOprrzwQJWN', + 'name': 'Sigala', + 'uri': 'spotify:artist:1IueXOQyABrMOprrzwQJWN', }), ]), 'disc_number': 1, - 'duration_ms': 212937, + 'duration_ms': 193360, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2', + 'spotify': 'https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk', }), - 'href': 'https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2', + 'href': 'https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk', 'is_local': False, - 'name': 'Monsters', - 'track_id': '1J7U9B8nPjKrLL7xDZ56F2', - 'track_number': 7, - 'uri': 'spotify:track:1J7U9B8nPjKrLL7xDZ56F2', + 'name': 'Heaven On My Mind (with Sigala)', + 'track_id': '2N8HEioDelArgvoInf5pkk', + 'track_number': 3, + 'uri': 'spotify:track:2N8HEioDelArgvoInf5pkk', }), dict({ 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '4EPJlUEBy49EX1wuFOvtjK', + 'name': 'Becky Hill', + 'uri': 'spotify:artist:4EPJlUEBy49EX1wuFOvtjK', }), - ]), - 'disc_number': 1, - 'duration_ms': 162652, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1', - }), - 'href': 'https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1', - 'is_local': False, - 'name': 'Too Keen', - 'track_id': '5Zp2xpSwgUyHVtGJZ31kZ1', - 'track_number': 8, - 'uri': 'spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '26OrZl5U3VNGHU9qUj8EcM', + 'name': 'Shift K3Y', + 'uri': 'spotify:artist:26OrZl5U3VNGHU9qUj8EcM', }), ]), 'disc_number': 1, - 'duration_ms': 241406, + 'duration_ms': 198493, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5RQdeW1apwe934zbntXROv', + 'spotify': 'https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx', }), - 'href': 'https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv', + 'href': 'https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx', 'is_local': False, - 'name': 'September Sun', - 'track_id': '5RQdeW1apwe934zbntXROv', - 'track_number': 9, - 'uri': 'spotify:track:5RQdeW1apwe934zbntXROv', + 'name': 'Better Off Without You (feat. Shift K3Y)', + 'track_id': '4RJ9DfYp0sWhPWUjIXKJUx', + 'track_number': 4, + 'uri': 'spotify:track:4RJ9DfYp0sWhPWUjIXKJUx', + }), + ]), + 'uri': 'spotify:album:16mh2RvDOwlv2gw7BFElFf', + }), + }), + dict({ + 'added_at': datetime.datetime(2019, 9, 17, 7, 0, 48, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1KPqoSV4Rs89YfgAwbLROr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e', + 'width': 64, }), + ]), + 'name': "What's Love", + 'release_date': '2019-09-17', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', - 'name': 'Youngr', - 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', }), ]), 'disc_number': 1, - 'duration_ms': 219499, + 'duration_ms': 176727, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo', + 'spotify': 'https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk', }), - 'href': 'https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo', + 'href': 'https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk', 'is_local': False, - 'name': 'Disappear', - 'track_id': '4gD4ja2LvNDfCK8yeyXJwo', - 'track_number': 10, - 'uri': 'spotify:track:4gD4ja2LvNDfCK8yeyXJwo', + 'name': "What's Love", + 'track_id': '21Z6lY56DuaKBZBkPKK4Nk', + 'track_number': 1, + 'uri': 'spotify:track:21Z6lY56DuaKBZBkPKK4Nk', }), ]), - 'uri': 'spotify:album:6RxUo05RvVNA06y5BVGoth', + 'uri': 'spotify:album:1KPqoSV4Rs89YfgAwbLROr', }), }), dict({ - 'added_at': datetime.datetime(2018, 3, 6, 23, 37, 54, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2019, 4, 5, 7, 8, 25, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '0wZ3CJWOsyYAfM8q5eatk2', + 'album_id': '6OSLjWXJHlMRfQwM0HkOhQ', 'album_type': , 'artists': list([ dict({ - 'artist_id': '12x5fAPl1U05wUHCI5O0uq', - 'name': 'Right-O', - 'uri': 'spotify:artist:12x5fAPl1U05wUHCI5O0uq', + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736860f0c34271a7e09b4e4a79', + 'url': 'https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026860f0c34271a7e09b4e4a79', + 'url': 'https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516860f0c34271a7e09b4e4a79', + 'url': 'https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e', 'width': 64, }), ]), - 'name': 'Mind Control (feat. Tyler Sjöström)', - 'release_date': '2017-08-02', + 'name': 'Remember You', + 'release_date': '2019-04-05', 'release_date_precision': , 'total_tracks': 1, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '12x5fAPl1U05wUHCI5O0uq', - 'name': 'Right-O', - 'uri': 'spotify:artist:12x5fAPl1U05wUHCI5O0uq', - }), - dict({ - 'artist_id': '3JRrxifzOpGOalOfGHEJNB', - 'name': 'Tyler Sjöström', - 'uri': 'spotify:artist:3JRrxifzOpGOalOfGHEJNB', + 'artist_id': '1BAdSa5cdtCNLbvT7gWmtJ', + 'name': 'Conro', + 'uri': 'spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ', }), ]), 'disc_number': 1, - 'duration_ms': 216920, + 'duration_ms': 189000, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj', + 'spotify': 'https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI', }), - 'href': 'https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj', + 'href': 'https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY', 'is_local': False, - 'name': 'Mind Control (feat. Tyler Sjöström)', - 'track_id': '2h07NImWicduAsv0P1YAJj', + 'name': 'Remember You', + 'track_id': '796JqxZ3o0ZH6OllNRDuTY', 'track_number': 1, - 'uri': 'spotify:track:2h07NImWicduAsv0P1YAJj', + 'uri': 'spotify:track:796JqxZ3o0ZH6OllNRDuTY', }), ]), - 'uri': 'spotify:album:0wZ3CJWOsyYAfM8q5eatk2', + 'uri': 'spotify:album:6OSLjWXJHlMRfQwM0HkOhQ', }), }), dict({ - 'added_at': datetime.datetime(2017, 10, 27, 6, 59, 9, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2019, 3, 31, 2, 37, 47, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '5hXgjTSvzx1CtmTtRlCOTZ', + 'album_id': '79iwhS4dR28DeLyHZvuoSd', 'album_type': , 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e', + 'url': 'https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e', + 'url': 'https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e', + 'url': 'https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2', 'width': 64, }), ]), - 'name': 'Under the Covers, Vol. II', - 'release_date': '2017-10-27', + 'name': 'Flourish', + 'release_date': '2019-03-08', 'release_date_precision': , 'total_tracks': 12, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 281845, + 'duration_ms': 228354, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt', + 'spotify': 'https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9', }), - 'href': 'https://api.spotify.com/v1/tracks/29ulX8eaHMuvvpxMypnbBf', + 'href': 'https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9', 'is_local': False, - 'name': 'Africa', - 'track_id': '29ulX8eaHMuvvpxMypnbBf', + 'name': 'Down', + 'track_id': '2IhMGMdJv5fBUnJCLksKj9', 'track_number': 1, - 'uri': 'spotify:track:29ulX8eaHMuvvpxMypnbBf', + 'uri': 'spotify:track:2IhMGMdJv5fBUnJCLksKj9', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 267838, + 'duration_ms': 189711, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC', + 'spotify': 'https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM', }), - 'href': 'https://api.spotify.com/v1/tracks/39DSj27ujl9BihMu43sTw1', + 'href': 'https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM', 'is_local': False, - 'name': 'More Than a Feeling', - 'track_id': '39DSj27ujl9BihMu43sTw1', + 'name': 'Calling', + 'track_id': '2bPB38GR1k2UxAjBzEi1DM', 'track_number': 2, - 'uri': 'spotify:track:39DSj27ujl9BihMu43sTw1', + 'uri': 'spotify:track:2bPB38GR1k2UxAjBzEi1DM', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 262142, + 'duration_ms': 227549, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj', + 'spotify': 'https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6', }), - 'href': 'https://api.spotify.com/v1/tracks/2sZs3rISCGPRyPREHlSE0z', + 'href': 'https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6', 'is_local': False, - 'name': 'Limelight', - 'track_id': '2sZs3rISCGPRyPREHlSE0z', + 'name': 'Fourteen', + 'track_id': '6UeOqEdtIALSGkLPcw7Rl6', 'track_number': 3, - 'uri': 'spotify:track:2sZs3rISCGPRyPREHlSE0z', + 'uri': 'spotify:track:6UeOqEdtIALSGkLPcw7Rl6', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 223300, + 'duration_ms': 201566, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3', + 'spotify': 'https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM', }), - 'href': 'https://api.spotify.com/v1/tracks/7EPD53JTcYnIPFvopzpHFc', + 'href': 'https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM', 'is_local': False, - 'name': 'Pour Some Sugar on Me', - 'track_id': '7EPD53JTcYnIPFvopzpHFc', + 'name': 'Anyone', + 'track_id': '21alqUkGOEr7DEJncHfQqM', 'track_number': 4, - 'uri': 'spotify:track:7EPD53JTcYnIPFvopzpHFc', + 'uri': 'spotify:track:21alqUkGOEr7DEJncHfQqM', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 262883, + 'duration_ms': 200662, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU', + 'spotify': 'https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH', }), - 'href': 'https://api.spotify.com/v1/tracks/77IK5Sm5J7XWJNkUBsdGZi', + 'href': 'https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH', 'is_local': False, - 'name': 'Something About You', - 'track_id': '77IK5Sm5J7XWJNkUBsdGZi', + 'name': 'Difference', + 'track_id': '4PjkUwMvr7g1M45DSqlQkH', 'track_number': 5, - 'uri': 'spotify:track:77IK5Sm5J7XWJNkUBsdGZi', + 'uri': 'spotify:track:4PjkUwMvr7g1M45DSqlQkH', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 321158, + 'duration_ms': 215348, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll', + 'spotify': 'https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI', }), - 'href': 'https://api.spotify.com/v1/tracks/3m4Lf46zw4hgNGJFjlgOJt', + 'href': 'https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI', 'is_local': False, - 'name': 'In Your Eyes', - 'track_id': '3m4Lf46zw4hgNGJFjlgOJt', + 'name': 'No Worries', + 'track_id': '0XZjcj8GUyWCEcnDgWDoTI', 'track_number': 6, - 'uri': 'spotify:track:3m4Lf46zw4hgNGJFjlgOJt', + 'uri': 'spotify:track:0XZjcj8GUyWCEcnDgWDoTI', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 203705, + 'duration_ms': 244935, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo', + 'spotify': 'https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO', }), - 'href': 'https://api.spotify.com/v1/tracks/6fIOFyrzPiuI6lC12cpUYo', + 'href': 'https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO', 'is_local': False, - 'name': 'Heat of the Moment', - 'track_id': '6fIOFyrzPiuI6lC12cpUYo', + 'name': 'New Day', + 'track_id': '4p0uwwMD4GIUlNZACqPJXO', 'track_number': 7, - 'uri': 'spotify:track:6fIOFyrzPiuI6lC12cpUYo', + 'uri': 'spotify:track:4p0uwwMD4GIUlNZACqPJXO', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 245947, + 'duration_ms': 183355, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE', + 'spotify': 'https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp', }), - 'href': 'https://api.spotify.com/v1/tracks/1U4pwphUiDnEY1Zk8tB74O', + 'href': 'https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp', 'is_local': False, - 'name': 'You Spin Me Round (Like a Record)', - 'track_id': '1U4pwphUiDnEY1Zk8tB74O', + 'name': 'We Got It', + 'track_id': '3suDoAXX6otxz0WBMHc6pp', 'track_number': 8, - 'uri': 'spotify:track:1U4pwphUiDnEY1Zk8tB74O', + 'uri': 'spotify:track:3suDoAXX6otxz0WBMHc6pp', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 282929, + 'duration_ms': 216855, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA', + 'spotify': 'https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq', }), - 'href': 'https://api.spotify.com/v1/tracks/2B2dzEwWOilmaUXaUeN7uk', + 'href': 'https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq', 'is_local': False, - 'name': "Don't Lose My Number", - 'track_id': '2B2dzEwWOilmaUXaUeN7uk', + 'name': 'Be Mine', + 'track_id': '7GqsS485BuDKtkuKdAaiRq', 'track_number': 9, - 'uri': 'spotify:track:2B2dzEwWOilmaUXaUeN7uk', + 'uri': 'spotify:track:7GqsS485BuDKtkuKdAaiRq', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 205357, + 'duration_ms': 255650, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn', + 'spotify': 'https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M', }), - 'href': 'https://api.spotify.com/v1/tracks/7vqBLy4AKm9k437P0Gy7g6', + 'href': 'https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M', 'is_local': False, - 'name': 'I Wish', - 'track_id': '7vqBLy4AKm9k437P0Gy7g6', + 'name': 'Underwater', + 'track_id': '12o2tk8IhIDUiv9wargB8M', 'track_number': 10, - 'uri': 'spotify:track:7vqBLy4AKm9k437P0Gy7g6', + 'uri': 'spotify:track:12o2tk8IhIDUiv9wargB8M', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 233167, + 'duration_ms': 206862, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId', + 'spotify': 'https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV', }), - 'href': 'https://api.spotify.com/v1/tracks/39GgQ44f6TBKV4EhLfwi4Z', + 'href': 'https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV', 'is_local': False, - 'name': 'Your Wildest Dreams', - 'track_id': '39GgQ44f6TBKV4EhLfwi4Z', + 'name': 'You And I', + 'track_id': '4AHrbiyZ2bPgcYMMh9I7UV', 'track_number': 11, - 'uri': 'spotify:track:39GgQ44f6TBKV4EhLfwi4Z', + 'uri': 'spotify:track:4AHrbiyZ2bPgcYMMh9I7UV', }), dict({ 'artists': list([ dict({ - 'artist_id': '3jsyANBBy6gOZUSQhiGclx', - 'name': 'Ninja Sex Party', - 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + 'artist_id': '4hj9dun9KpnBukLv7Hgfkr', + 'name': 'RONDÉ', + 'uri': 'spotify:artist:4hj9dun9KpnBukLv7Hgfkr', }), ]), 'disc_number': 1, - 'duration_ms': 250862, + 'duration_ms': 201932, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp', + 'spotify': 'https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa', }), - 'href': 'https://api.spotify.com/v1/tracks/6xMWP3oKLuY2jkikQ54r4X', + 'href': 'https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa', 'is_local': False, - 'name': 'Rocket Man', - 'track_id': '6xMWP3oKLuY2jkikQ54r4X', + 'name': 'All That Was Left', + 'track_id': '725MTKVYYrxtenlGtLfAIa', 'track_number': 12, - 'uri': 'spotify:track:6xMWP3oKLuY2jkikQ54r4X', + 'uri': 'spotify:track:725MTKVYYrxtenlGtLfAIa', }), ]), - 'uri': 'spotify:album:5hXgjTSvzx1CtmTtRlCOTZ', + 'uri': 'spotify:album:79iwhS4dR28DeLyHZvuoSd', }), }), dict({ - 'added_at': datetime.datetime(2017, 9, 17, 20, 15, 3, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2018, 10, 4, 21, 11, 2, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '6cyUcKNdyK1NRBQ7vjEwVY', + 'album_id': '7lsSj3qTDdmEqVvVLdoQWZ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5vBrKGOjN10BMwB0cJADj4', + 'name': 'bülow', + 'uri': 'spotify:artist:5vBrKGOjN10BMwB0cJADj4', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5', + 'width': 64, + }), + ]), + 'name': 'Not A Love Song (King Arthur Remix)', + 'release_date': '2018-02-16', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '5vBrKGOjN10BMwB0cJADj4', + 'name': 'bülow', + 'uri': 'spotify:artist:5vBrKGOjN10BMwB0cJADj4', + }), + dict({ + 'artist_id': '2qPxiZiD34NtmokWN6RoP2', + 'name': 'King Topher', + 'uri': 'spotify:artist:2qPxiZiD34NtmokWN6RoP2', + }), + ]), + 'disc_number': 1, + 'duration_ms': 203706, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN', + }), + 'href': 'https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN', + 'is_local': False, + 'name': 'Not A Love Song - King Arthur Remix', + 'track_id': '4wD34HA8cOSV32SlItkckN', + 'track_number': 1, + 'uri': 'spotify:track:4wD34HA8cOSV32SlItkckN', + }), + ]), + 'uri': 'spotify:album:7lsSj3qTDdmEqVvVLdoQWZ', + }), + }), + dict({ + 'added_at': datetime.datetime(2018, 4, 16, 10, 43, 21, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '6RxUo05RvVNA06y5BVGoth', 'album_type': , 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873', + 'url': 'https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873', + 'url': 'https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873', + 'url': 'https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305', 'width': 64, }), ]), - 'name': 'Wonderland (Deluxe)', - 'release_date': '2017-03-24', + 'name': 'This Is Not An Album', + 'release_date': '2018-01-05', 'release_date_precision': , - 'total_tracks': 15, + 'total_tracks': 10, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 293266, + 'duration_ms': 169739, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH', + 'spotify': 'https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY', }), - 'href': 'https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F', + 'href': 'https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY', 'is_local': False, - 'name': 'Wonderland', - 'track_id': '4BlCSLODDzs7WObKGS8v0F', + 'name': 'Ooh Lordy', + 'track_id': '3tpB406UcLxAKAZMXMHlpY', 'track_number': 1, - 'uri': 'spotify:track:4BlCSLODDzs7WObKGS8v0F', + 'uri': 'spotify:track:3tpB406UcLxAKAZMXMHlpY', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 233613, - 'explicit': False, + 'duration_ms': 203114, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC', + 'spotify': 'https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25', }), - 'href': 'https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk', + 'href': 'https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25', 'is_local': False, - 'name': 'Giants', - 'track_id': '0dhMVWyuExZRNEDcSaxcpk', + 'name': 'Out Of My System', + 'track_id': '1tmDa0FhMn8XSOpEJbVu25', 'track_number': 2, - 'uri': 'spotify:track:0dhMVWyuExZRNEDcSaxcpk', + 'uri': 'spotify:track:1tmDa0FhMn8XSOpEJbVu25', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '4W48hZAnAHVOC2c8WH8pcq', + 'name': 'The Temper Trap', + 'uri': 'spotify:artist:4W48hZAnAHVOC2c8WH8pcq', + }), + dict({ + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 209720, + 'duration_ms': 294005, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP', + 'spotify': 'https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7', }), - 'href': 'https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs', + 'href': 'https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7', 'is_local': False, - 'name': 'New Day', - 'track_id': '3V3zCg3kqfeag16CRxyOOs', + 'name': 'Sweet Disposition - Bootleg', + 'track_id': '1QBOH8W1ZhRoTOoHvfaZn7', 'track_number': 3, - 'uri': 'spotify:track:3V3zCg3kqfeag16CRxyOOs', + 'uri': 'spotify:track:1QBOH8W1ZhRoTOoHvfaZn7', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 209106, + 'duration_ms': 209152, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ', + 'spotify': 'https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub', }), - 'href': 'https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq', + 'href': 'https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub', 'is_local': False, - 'name': 'Lucky Stars', - 'track_id': '38Uy1sMppejotYXJUqPUYq', + 'name': "'93", + 'track_id': '5zC1NaCQeETz5b0IysG5Ub', 'track_number': 4, - 'uri': 'spotify:track:38Uy1sMppejotYXJUqPUYq', + 'uri': 'spotify:track:5zC1NaCQeETz5b0IysG5Ub', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + }), + dict({ + 'artist_id': '6F3vLfyutkUhpM50G84eMt', + 'name': 'Endor', + 'uri': 'spotify:artist:6F3vLfyutkUhpM50G84eMt', }), ]), 'disc_number': 1, - 'duration_ms': 233906, + 'duration_ms': 208665, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW', + 'spotify': 'https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp', }), - 'href': 'https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16', + 'href': 'https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp', 'is_local': False, - 'name': 'And The Band Plays', - 'track_id': '7437sm1u9zsNAtFmH1ZE16', + 'name': 'Give It Up - Youngr x Endor', + 'track_id': '44478ajpb5DPFaWVDbKSPp', 'track_number': 5, - 'uri': 'spotify:track:7437sm1u9zsNAtFmH1ZE16', + 'uri': 'spotify:track:44478ajpb5DPFaWVDbKSPp', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 194106, + 'duration_ms': 185334, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i', + 'spotify': 'https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu', }), - 'href': 'https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36', + 'href': 'https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu', 'is_local': False, - 'name': 'Superstar', - 'track_id': '2kIqgQtq2yHCwkTKS4Vs36', + 'name': "What's Next", + 'track_id': '7MTsaNHz8evXD32xLjfjDu', 'track_number': 6, - 'uri': 'spotify:track:2kIqgQtq2yHCwkTKS4Vs36', + 'uri': 'spotify:track:7MTsaNHz8evXD32xLjfjDu', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 224800, + 'duration_ms': 212937, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf', + 'spotify': 'https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2', }), - 'href': 'https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8', + 'href': 'https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2', 'is_local': False, - 'name': 'Hope', - 'track_id': '1T5CW62fLSdOLsRT0BUir8', + 'name': 'Monsters', + 'track_id': '1J7U9B8nPjKrLL7xDZ56F2', 'track_number': 7, - 'uri': 'spotify:track:1T5CW62fLSdOLsRT0BUir8', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 175040, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx', - }), - 'href': 'https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY', - 'is_local': False, - 'name': 'River', - 'track_id': '51jxNWFFT5WUXIErQzwiUY', - 'track_number': 8, - 'uri': 'spotify:track:51jxNWFFT5WUXIErQzwiUY', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 196453, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK', - }), - 'href': 'https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm', - 'is_local': False, - 'name': 'The Last Poet', - 'track_id': '018jJKmcAvODfvyNuBfcjm', - 'track_number': 9, - 'uri': 'spotify:track:018jJKmcAvODfvyNuBfcjm', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 252760, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur', - }), - 'href': 'https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J', - 'is_local': False, - 'name': 'Every Revolution', - 'track_id': '6RxdVdQS85HYIpXwJw1j6J', - 'track_number': 10, - 'uri': 'spotify:track:6RxdVdQS85HYIpXwJw1j6J', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 269466, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz', - }), - 'href': 'https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST', - 'is_local': False, - 'name': "It's All For You", - 'track_id': '0ONIdjj0gIWoA8vOPlM9ST', - 'track_number': 11, - 'uri': 'spotify:track:0ONIdjj0gIWoA8vOPlM9ST', - }), - dict({ - 'artists': list([ - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', - }), - ]), - 'disc_number': 1, - 'duration_ms': 199386, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH', - }), - 'href': 'https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9', - 'is_local': False, - 'name': "Don't Give Up On Me", - 'track_id': '3eldJOi7FuF7LXoWRneab9', - 'track_number': 12, - 'uri': 'spotify:track:3eldJOi7FuF7LXoWRneab9', + 'uri': 'spotify:track:1J7U9B8nPjKrLL7xDZ56F2', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 269733, - 'explicit': False, + 'duration_ms': 162652, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V', + 'spotify': 'https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1', }), - 'href': 'https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva', + 'href': 'https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1', 'is_local': False, - 'name': 'Up', - 'track_id': '6yH5jYImETi3IZwAZY1gva', - 'track_number': 13, - 'uri': 'spotify:track:6yH5jYImETi3IZwAZY1gva', + 'name': 'Too Keen', + 'track_id': '5Zp2xpSwgUyHVtGJZ31kZ1', + 'track_number': 8, + 'uri': 'spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1', }), dict({ 'artists': list([ dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 261440, + 'duration_ms': 241406, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19', + 'spotify': 'https://open.spotify.com/track/5RQdeW1apwe934zbntXROv', }), - 'href': 'https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd', + 'href': 'https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv', 'is_local': False, - 'name': 'Come On Love', - 'track_id': '0qStm2vt5sMGgzbp68dADd', - 'track_number': 14, - 'uri': 'spotify:track:0qStm2vt5sMGgzbp68dADd', + 'name': 'September Sun', + 'track_id': '5RQdeW1apwe934zbntXROv', + 'track_number': 9, + 'uri': 'spotify:track:5RQdeW1apwe934zbntXROv', }), dict({ 'artists': list([ dict({ - 'artist_id': '01pKrlgPJhm5dB4lneYAqS', - 'name': 'Sigma', - 'uri': 'spotify:artist:01pKrlgPJhm5dB4lneYAqS', - }), - dict({ - 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', - 'name': 'Take That', - 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', }), ]), 'disc_number': 1, - 'duration_ms': 197453, + 'duration_ms': 219499, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL', + 'spotify': 'https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo', }), - 'href': 'https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth', + 'href': 'https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo', 'is_local': False, - 'name': 'Cry', - 'track_id': '2ddfMbBXPXgq2gjWBe0Mth', - 'track_number': 15, - 'uri': 'spotify:track:2ddfMbBXPXgq2gjWBe0Mth', + 'name': 'Disappear', + 'track_id': '4gD4ja2LvNDfCK8yeyXJwo', + 'track_number': 10, + 'uri': 'spotify:track:4gD4ja2LvNDfCK8yeyXJwo', }), ]), - 'uri': 'spotify:album:6cyUcKNdyK1NRBQ7vjEwVY', + 'uri': 'spotify:album:6RxUo05RvVNA06y5BVGoth', }), }), dict({ - 'added_at': datetime.datetime(2017, 8, 26, 22, 34, 42, tzinfo=datetime.timezone.utc), + 'added_at': datetime.datetime(2018, 3, 6, 23, 37, 54, tzinfo=datetime.timezone.utc), 'album': dict({ - 'album_id': '0fMJhuTXyqcPEP0B864j8T', + 'album_id': '0wZ3CJWOsyYAfM8q5eatk2', 'album_type': , 'artists': list([ dict({ - 'artist_id': '7f5Zgnp2spUuuzKplmRkt7', - 'name': 'Lost Frequencies', - 'uri': 'spotify:artist:7f5Zgnp2spUuuzKplmRkt7', - }), - dict({ - 'artist_id': '5TgQ66WuWkoQ2xYxaSTnVP', - 'name': 'Netsky', - 'uri': 'spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP', + 'artist_id': '12x5fAPl1U05wUHCI5O0uq', + 'name': 'Right-O', + 'uri': 'spotify:artist:12x5fAPl1U05wUHCI5O0uq', }), ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22', + 'url': 'https://i.scdn.co/image/ab67616d0000b273ba42f930893e0e8bdc2bfb06', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22', + 'url': 'https://i.scdn.co/image/ab67616d00001e02ba42f930893e0e8bdc2bfb06', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22', + 'url': 'https://i.scdn.co/image/ab67616d00004851ba42f930893e0e8bdc2bfb06', 'width': 64, }), ]), - 'name': 'Here With You', - 'release_date': '2017-06-30', + 'name': 'Mind Control', + 'release_date': '2017-08-02', 'release_date_precision': , 'total_tracks': 1, 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '7f5Zgnp2spUuuzKplmRkt7', - 'name': 'Lost Frequencies', - 'uri': 'spotify:artist:7f5Zgnp2spUuuzKplmRkt7', - }), - dict({ - 'artist_id': '5TgQ66WuWkoQ2xYxaSTnVP', - 'name': 'Netsky', - 'uri': 'spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP', + 'artist_id': '12x5fAPl1U05wUHCI5O0uq', + 'name': 'Right-O', + 'uri': 'spotify:artist:12x5fAPl1U05wUHCI5O0uq', }), ]), 'disc_number': 1, - 'duration_ms': 159023, + 'duration_ms': 216920, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F', + 'spotify': 'https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj', }), - 'href': 'https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F', + 'href': 'https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj', 'is_local': False, - 'name': 'Here With You', - 'track_id': '0u6KLyKbuqAe3aiol9UV8F', + 'name': 'Mind Control', + 'track_id': '2h07NImWicduAsv0P1YAJj', 'track_number': 1, - 'uri': 'spotify:track:0u6KLyKbuqAe3aiol9UV8F', + 'uri': 'spotify:track:2h07NImWicduAsv0P1YAJj', }), ]), - 'uri': 'spotify:album:0fMJhuTXyqcPEP0B864j8T', - }), - }), - ]) -# --- -# name: test_get_saved_audiobooks - list([ - dict({ - 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', - 'authors': list([ - dict({ - 'name': 'Anya Niewierra', - }), - ]), - 'description': ''' - Author(s): Anya Niewierra - Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

-
-

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
- Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
- Rob Cobben, cultuurverslaggever Dagblad De Limburger

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', + 'uri': 'spotify:album:0wZ3CJWOsyYAfM8q5eatk2', }), - 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De nomade', - 'narrators': list([ - dict({ - 'name': 'Nienke Brinkhuis', - }), - dict({ - 'name': 'Cees van Ede', - }), - dict({ - 'name': 'Mattijn Hartemink', - }), - ]), - 'publisher': 'Anya Niewierra', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', }), - ]) -# --- -# name: test_get_saved_episodes - list([ dict({ - 'added_at': datetime.datetime(2021, 4, 1, 23, 21, 46, tzinfo=datetime.timezone.utc), - 'episode': dict({ - 'description': "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com\xa0Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster\xa0For all your Taskmaster goodies visit\xa0www.taskmasterstore.com\xa0\xa0Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", - 'duration_ms': 3724303, - 'episode_id': '0x25dVaCtjWMmcjDJyuMM5', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5', - }), - 'href': 'https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131', - 'width': 300, - }), + 'added_at': datetime.datetime(2017, 10, 27, 6, 59, 9, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '5hXgjTSvzx1CtmTtRlCOTZ', + 'album_type': , + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131', - 'width': 64, + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', }), ]), - 'name': 'Ep 26. Katherine Parkinson - S11 Ep.3', - 'release_date': '2021-04-01', - 'release_date_precision': , - 'show': dict({ - 'description': 'This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg', - }), - 'href': 'https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2', - 'width': 64, - }), - ]), - 'name': 'Taskmaster The Podcast', - 'publisher': 'Avalon ', - 'show_id': '4BZc9sOdNilJJ8irsuOzdg', - 'total_episodes': 200, - 'uri': 'spotify:show:4BZc9sOdNilJJ8irsuOzdg', - }), - 'type': , - 'uri': 'spotify:episode:0x25dVaCtjWMmcjDJyuMM5', - }), - }), - ]) -# --- -# name: test_get_saved_shows - list([ - dict({ - 'added_at': datetime.datetime(2023, 8, 10, 8, 17, 9, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', - }), - 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e', + 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', + 'url': 'https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e', 'width': 300, }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e', + 'width': 64, }), ]), - 'name': 'Toni and Ryan', - 'publisher': 'Toni Lodge and Ryan Jon', - 'show_id': '5OzkclFjD6iAjtAuo7aIYt', - 'total_episodes': 741, - 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', - }), - }), - dict({ - 'added_at': datetime.datetime(2022, 9, 15, 23, 48, 23, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2', - }), - 'href': 'https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2', - 'images': list([ + 'name': 'Under the Covers, Vol. II', + 'release_date': '2017-10-27', + 'release_date_precision': , + 'total_tracks': 12, + 'tracks': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 281845, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt', + }), + 'href': 'https://api.spotify.com/v1/tracks/0fpkBN2LzdoK4Tye8xKHj8', + 'is_local': False, + 'name': 'Africa', + 'track_id': '0fpkBN2LzdoK4Tye8xKHj8', + 'track_number': 1, + 'uri': 'spotify:track:0fpkBN2LzdoK4Tye8xKHj8', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 267838, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC', + }), + 'href': 'https://api.spotify.com/v1/tracks/3F8hWUkNzeLUUhUZeLkV81', + 'is_local': False, + 'name': 'More Than a Feeling', + 'track_id': '3F8hWUkNzeLUUhUZeLkV81', + 'track_number': 2, + 'uri': 'spotify:track:3F8hWUkNzeLUUhUZeLkV81', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 262142, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj', + }), + 'href': 'https://api.spotify.com/v1/tracks/1HMNvplSW6H9PV0fuetvTr', + 'is_local': False, + 'name': 'Limelight', + 'track_id': '1HMNvplSW6H9PV0fuetvTr', + 'track_number': 3, + 'uri': 'spotify:track:1HMNvplSW6H9PV0fuetvTr', }), - ]), - 'name': 'BLAST Push To Talk', - 'publisher': 'BLAST Premier', - 'show_id': '6XYRres0KZtnTqKcLavWR2', - 'total_episodes': 19, - 'uri': 'spotify:show:6XYRres0KZtnTqKcLavWR2', - }), - }), - dict({ - 'added_at': datetime.datetime(2022, 8, 14, 11, 59, 6, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': "In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more. Get awesome rewards & support the show: patreon.com/falloutlorecast Watch live at youtube.com/c/robotsradio Advertise with us & business inquiries: robotsnetwork@gmail.comSponsored by:Unknown 9: Awakening releases on October 18, 2024 for PS4, PS5, Xbox One, Xbox Series X and S, and PC. Pre-order your copy today and learn more about the Unknown 9 universe at\xa0unknown9.com/{YOUR SHOW CODE}.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db', - }), - 'href': 'https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d16322099db1ec89c2f6107b2', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 223300, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3', + }), + 'href': 'https://api.spotify.com/v1/tracks/2qGsVqQJFtknAtR37CAttT', + 'is_local': False, + 'name': 'Pour Some Sugar on Me', + 'track_id': '2qGsVqQJFtknAtR37CAttT', + 'track_number': 4, + 'uri': 'spotify:track:2qGsVqQJFtknAtR37CAttT', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f16322099db1ec89c2f6107b2', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 262883, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU', + }), + 'href': 'https://api.spotify.com/v1/tracks/2fVCjb09bMzkiozFRQy2Cl', + 'is_local': False, + 'name': 'Something About You', + 'track_id': '2fVCjb09bMzkiozFRQy2Cl', + 'track_number': 5, + 'uri': 'spotify:track:2fVCjb09bMzkiozFRQy2Cl', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a16322099db1ec89c2f6107b2', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 321158, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll', + }), + 'href': 'https://api.spotify.com/v1/tracks/53RvyCGHmdcGisi7ohScVb', + 'is_local': False, + 'name': 'In Your Eyes', + 'track_id': '53RvyCGHmdcGisi7ohScVb', + 'track_number': 6, + 'uri': 'spotify:track:53RvyCGHmdcGisi7ohScVb', }), - ]), - 'name': 'Fallout Lorecast - The Fallout Video Game & TV Lore Podcast', - 'publisher': 'Robots Radio', - 'show_id': '0e30iIgSffe6xJhFKe35Db', - 'total_episodes': 323, - 'uri': 'spotify:show:0e30iIgSffe6xJhFKe35Db', - }), - }), - dict({ - 'added_at': datetime.datetime(2021, 3, 7, 14, 12, 29, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg', - }), - 'href': 'https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 203705, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo', + }), + 'href': 'https://api.spotify.com/v1/tracks/0qi8fD0IVKSggOYHPhQv95', + 'is_local': False, + 'name': 'Heat of the Moment', + 'track_id': '0qi8fD0IVKSggOYHPhQv95', + 'track_number': 7, + 'uri': 'spotify:track:0qi8fD0IVKSggOYHPhQv95', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 245947, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE', + }), + 'href': 'https://api.spotify.com/v1/tracks/6jejZfb7GilMwqfUQDKFCy', + 'is_local': False, + 'name': 'You Spin Me Round (Like a Record)', + 'track_id': '6jejZfb7GilMwqfUQDKFCy', + 'track_number': 8, + 'uri': 'spotify:track:6jejZfb7GilMwqfUQDKFCy', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 282929, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA', + }), + 'href': 'https://api.spotify.com/v1/tracks/6GuZK6T75DshC2QiYPBKV0', + 'is_local': False, + 'name': "Don't Lose My Number", + 'track_id': '6GuZK6T75DshC2QiYPBKV0', + 'track_number': 9, + 'uri': 'spotify:track:6GuZK6T75DshC2QiYPBKV0', }), - ]), - 'name': 'Taskmaster The Podcast', - 'publisher': 'Avalon ', - 'show_id': '4BZc9sOdNilJJ8irsuOzdg', - 'total_episodes': 181, - 'uri': 'spotify:show:4BZc9sOdNilJJ8irsuOzdg', - }), - }), - dict({ - 'added_at': datetime.datetime(2021, 3, 6, 0, 14, 9, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq', - }), - 'href': 'https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 205357, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn', + }), + 'href': 'https://api.spotify.com/v1/tracks/0x3VVm9d10EU5tdwqJ4k9J', + 'is_local': False, + 'name': 'I Wish', + 'track_id': '0x3VVm9d10EU5tdwqJ4k9J', + 'track_number': 10, + 'uri': 'spotify:track:0x3VVm9d10EU5tdwqJ4k9J', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 233167, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId', + }), + 'href': 'https://api.spotify.com/v1/tracks/7iOAjvVx8JS3j9ZvcJZzaL', + 'is_local': False, + 'name': 'Your Wildest Dreams', + 'track_id': '7iOAjvVx8JS3j9ZvcJZzaL', + 'track_number': 11, + 'uri': 'spotify:track:7iOAjvVx8JS3j9ZvcJZzaL', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'disc_number': 1, + 'duration_ms': 250862, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp', + }), + 'href': 'https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId', + 'is_local': False, + 'name': 'Rocket Man', + 'track_id': '6UbGGbBpSfmFDyG17OFuId', + 'track_number': 12, + 'uri': 'spotify:track:6UbGGbBpSfmFDyG17OFuId', }), ]), - 'name': 'Off Menu with Ed Gamble and James Acaster', - 'publisher': 'Plosive', - 'show_id': '0azMejb7zrmAqctVsUSAdq', - 'total_episodes': 298, - 'uri': 'spotify:show:0azMejb7zrmAqctVsUSAdq', + 'uri': 'spotify:album:5hXgjTSvzx1CtmTtRlCOTZ', }), }), dict({ - 'added_at': datetime.datetime(2021, 3, 6, 0, 13, 55, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV', - }), - 'href': 'https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV', + 'added_at': datetime.datetime(2017, 9, 17, 20, 15, 3, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '6cyUcKNdyK1NRBQ7vjEwVY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873', + 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758', + 'url': 'https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873', 'width': 300, }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873', + 'width': 64, }), ]), - 'name': 'Ed Gamble & Matthew Crosby on Radio X', - 'publisher': 'Global', - 'show_id': '4CNsZjGkK371UAnyQgX9jV', - 'total_episodes': 286, - 'uri': 'spotify:show:4CNsZjGkK371UAnyQgX9jV', - }), - }), - dict({ - 'added_at': datetime.datetime(2020, 12, 29, 1, 21, 38, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ', - }), - 'href': 'https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ', - 'images': list([ + 'name': 'Wonderland (Deluxe)', + 'release_date': '2017-03-24', + 'release_date_precision': , + 'total_tracks': 15, + 'tracks': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db30e55906de336b15c499308', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 293266, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH', + }), + 'href': 'https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F', + 'is_local': False, + 'name': 'Wonderland', + 'track_id': '4BlCSLODDzs7WObKGS8v0F', + 'track_number': 1, + 'uri': 'spotify:track:4BlCSLODDzs7WObKGS8v0F', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb30e55906de336b15c499308', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 233613, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC', + }), + 'href': 'https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk', + 'is_local': False, + 'name': 'Giants', + 'track_id': '0dhMVWyuExZRNEDcSaxcpk', + 'track_number': 2, + 'uri': 'spotify:track:0dhMVWyuExZRNEDcSaxcpk', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab30e55906de336b15c499308', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 209720, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP', + }), + 'href': 'https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs', + 'is_local': False, + 'name': 'New Day', + 'track_id': '3V3zCg3kqfeag16CRxyOOs', + 'track_number': 3, + 'uri': 'spotify:track:3V3zCg3kqfeag16CRxyOOs', }), - ]), - 'name': 'You Can Sit With Us', - 'publisher': 'The Try Guys & Ramble', - 'show_id': '6xglolTDhKYA8OKyM8IgZQ', - 'total_episodes': 222, - 'uri': 'spotify:show:6xglolTDhKYA8OKyM8IgZQ', - }), - }), - dict({ - 'added_at': datetime.datetime(2020, 12, 29, 1, 21, 21, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and risked their lives for their videos. In this weekly podcast they dissect their experiences as internet creators and best friends who have made a living failing upwards.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ', - }), - 'href': 'https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68de7770dd365b1590f761809fe', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 209106, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ', + }), + 'href': 'https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq', + 'is_local': False, + 'name': 'Lucky Stars', + 'track_id': '38Uy1sMppejotYXJUqPUYq', + 'track_number': 4, + 'uri': 'spotify:track:38Uy1sMppejotYXJUqPUYq', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fe7770dd365b1590f761809fe', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 233906, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW', + }), + 'href': 'https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16', + 'is_local': False, + 'name': 'And The Band Plays', + 'track_id': '7437sm1u9zsNAtFmH1ZE16', + 'track_number': 5, + 'uri': 'spotify:track:7437sm1u9zsNAtFmH1ZE16', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ae7770dd365b1590f761809fe', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 194106, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i', + }), + 'href': 'https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36', + 'is_local': False, + 'name': 'Superstar', + 'track_id': '2kIqgQtq2yHCwkTKS4Vs36', + 'track_number': 6, + 'uri': 'spotify:track:2kIqgQtq2yHCwkTKS4Vs36', }), - ]), - 'name': 'The TryPod', - 'publisher': 'The Try Guys & Ramble', - 'show_id': '3qCNuzujMoeNsMHp8c79dJ', - 'total_episodes': 287, - 'uri': 'spotify:show:3qCNuzujMoeNsMHp8c79dJ', - }), - }), - dict({ - 'added_at': datetime.datetime(2020, 11, 6, 13, 38, 49, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA', - }), - 'href': 'https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db227bbd2d93a8882a8ebb1b0', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 224800, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf', + }), + 'href': 'https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8', + 'is_local': False, + 'name': 'Hope', + 'track_id': '1T5CW62fLSdOLsRT0BUir8', + 'track_number': 7, + 'uri': 'spotify:track:1T5CW62fLSdOLsRT0BUir8', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb227bbd2d93a8882a8ebb1b0', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 175040, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx', + }), + 'href': 'https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY', + 'is_local': False, + 'name': 'River', + 'track_id': '51jxNWFFT5WUXIErQzwiUY', + 'track_number': 8, + 'uri': 'spotify:track:51jxNWFFT5WUXIErQzwiUY', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab227bbd2d93a8882a8ebb1b0', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 196453, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK', + }), + 'href': 'https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm', + 'is_local': False, + 'name': 'The Last Poet', + 'track_id': '018jJKmcAvODfvyNuBfcjm', + 'track_number': 9, + 'uri': 'spotify:track:018jJKmcAvODfvyNuBfcjm', }), - ]), - 'name': 'Office Ladies', - 'publisher': 'Audacy & Jenna Fischer and Angela Kinsey', - 'show_id': '3OHCFs84lqizjkL4C9bNTA', - 'total_episodes': 264, - 'uri': 'spotify:show:3OHCFs84lqizjkL4C9bNTA', - }), - }), - dict({ - 'added_at': datetime.datetime(2020, 8, 20, 6, 52, 51, tzinfo=datetime.timezone.utc), - 'show': dict({ - 'description': 'Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI', - }), - 'href': 'https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI', - 'images': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db94dc44503877dcac0a5df9f', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 252760, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur', + }), + 'href': 'https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J', + 'is_local': False, + 'name': 'Every Revolution', + 'track_id': '6RxdVdQS85HYIpXwJw1j6J', + 'track_number': 10, + 'uri': 'spotify:track:6RxdVdQS85HYIpXwJw1j6J', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb94dc44503877dcac0a5df9f', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 269466, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz', + }), + 'href': 'https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST', + 'is_local': False, + 'name': "It's All For You", + 'track_id': '0ONIdjj0gIWoA8vOPlM9ST', + 'track_number': 11, + 'uri': 'spotify:track:0ONIdjj0gIWoA8vOPlM9ST', }), dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab94dc44503877dcac0a5df9f', - 'width': 640, - }), - ]), - 'name': 'Wat een week!', - 'publisher': 'Maxim Hartman & Willem Treur', - 'show_id': '6AeemTu3AwFDGkM50OtnbI', - 'total_episodes': 404, - 'uri': 'spotify:show:6AeemTu3AwFDGkM50OtnbI', - }), - }), - ]) -# --- -# name: test_get_saved_tracks - list([ - dict({ - 'added_at': datetime.datetime(2024, 10, 6, 11, 35, 2, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '3BYf1IG8EqDbhzdpljcFWY', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', - 'name': 'Maribou State', - 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', - }), - dict({ - 'artist_id': '5vssQp6TyMHsx4mihKVAsC', - 'name': 'Holly Walker', - 'uri': 'spotify:artist:5vssQp6TyMHsx4mihKVAsC', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ac9dd449e38e5e8952fd22ad', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ac9dd449e38e5e8952fd22ad', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ac9dd449e38e5e8952fd22ad', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 199386, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH', }), - ]), - 'name': 'Otherside', - 'release_date': '2024-10-02', - 'release_date_precision': , - 'total_tracks': 2, - 'uri': 'spotify:album:3BYf1IG8EqDbhzdpljcFWY', - }), - 'artists': list([ - dict({ - 'artist_id': '7zrkALJ9ayRjzysp4QYoEg', - 'name': 'Maribou State', - 'uri': 'spotify:artist:7zrkALJ9ayRjzysp4QYoEg', + 'href': 'https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9', + 'is_local': False, + 'name': "Don't Give Up On Me", + 'track_id': '3eldJOi7FuF7LXoWRneab9', + 'track_number': 12, + 'uri': 'spotify:track:3eldJOi7FuF7LXoWRneab9', }), dict({ - 'artist_id': '5vssQp6TyMHsx4mihKVAsC', - 'name': 'Holly Walker', - 'uri': 'spotify:artist:5vssQp6TyMHsx4mihKVAsC', - }), - ]), - 'disc_number': 1, - 'duration_ms': 233211, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2pj2A25YQK4uMxhZheNx7R', - }), - 'href': 'https://api.spotify.com/v1/tracks/2pj2A25YQK4uMxhZheNx7R', - 'is_local': False, - 'name': 'Otherside', - 'track_id': '2pj2A25YQK4uMxhZheNx7R', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2pj2A25YQK4uMxhZheNx7R', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 10, 6, 7, 37, 53, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1ElP3WFqq5sgMcc3ScIR4l', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0HHa7ZJZxUQlg5l2mB0N0f', - 'name': 'Marlon Hoffstadt', - 'uri': 'spotify:artist:0HHa7ZJZxUQlg5l2mB0N0f', - }), - dict({ - 'artist_id': '68sTQgQtPe9e4Bb7OtoqET', - 'name': 'Crybaby', - 'uri': 'spotify:artist:68sTQgQtPe9e4Bb7OtoqET', - }), - dict({ - 'artist_id': '4lBSzo2LS8asEzoePv6VLM', - 'name': 'DJ Daddy Trance', - 'uri': 'spotify:artist:4lBSzo2LS8asEzoePv6VLM', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733d710ab088ff797e80cc5aed', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023d710ab088ff797e80cc5aed', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513d710ab088ff797e80cc5aed', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 269733, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V', }), - ]), - 'name': 'I Think I Need A DJ', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1ElP3WFqq5sgMcc3ScIR4l', - }), - 'artists': list([ - dict({ - 'artist_id': '0HHa7ZJZxUQlg5l2mB0N0f', - 'name': 'Marlon Hoffstadt', - 'uri': 'spotify:artist:0HHa7ZJZxUQlg5l2mB0N0f', + 'href': 'https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva', + 'is_local': False, + 'name': 'Up', + 'track_id': '6yH5jYImETi3IZwAZY1gva', + 'track_number': 13, + 'uri': 'spotify:track:6yH5jYImETi3IZwAZY1gva', }), dict({ - 'artist_id': '68sTQgQtPe9e4Bb7OtoqET', - 'name': 'Crybaby', - 'uri': 'spotify:artist:68sTQgQtPe9e4Bb7OtoqET', + 'artists': list([ + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 261440, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19', + }), + 'href': 'https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd', + 'is_local': False, + 'name': 'Come On Love', + 'track_id': '0qStm2vt5sMGgzbp68dADd', + 'track_number': 14, + 'uri': 'spotify:track:0qStm2vt5sMGgzbp68dADd', }), dict({ - 'artist_id': '4lBSzo2LS8asEzoePv6VLM', - 'name': 'DJ Daddy Trance', - 'uri': 'spotify:artist:4lBSzo2LS8asEzoePv6VLM', + 'artists': list([ + dict({ + 'artist_id': '01pKrlgPJhm5dB4lneYAqS', + 'name': 'Sigma', + 'uri': 'spotify:artist:01pKrlgPJhm5dB4lneYAqS', + }), + dict({ + 'artist_id': '1XgFuvRd7r5g0h844A5ZUQ', + 'name': 'Take That', + 'uri': 'spotify:artist:1XgFuvRd7r5g0h844A5ZUQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 197453, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL', + }), + 'href': 'https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth', + 'is_local': False, + 'name': 'Cry', + 'track_id': '2ddfMbBXPXgq2gjWBe0Mth', + 'track_number': 15, + 'uri': 'spotify:track:2ddfMbBXPXgq2gjWBe0Mth', }), ]), - 'disc_number': 1, - 'duration_ms': 155000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2lKOI1nwP5qZtZC7TGQVY8', - }), - 'href': 'https://api.spotify.com/v1/tracks/2lKOI1nwP5qZtZC7TGQVY8', - 'is_local': False, - 'name': 'I Think I Need A DJ', - 'track_id': '2lKOI1nwP5qZtZC7TGQVY8', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2lKOI1nwP5qZtZC7TGQVY8', + 'uri': 'spotify:album:6cyUcKNdyK1NRBQ7vjEwVY', }), }), dict({ - 'added_at': datetime.datetime(2024, 10, 6, 7, 14, 7, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5aKEa6uPolubhdjPpBujA4', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0EdUwJSqkMmsH6Agg3G8Ls', - 'name': 'Marten Hørger', - 'uri': 'spotify:artist:0EdUwJSqkMmsH6Agg3G8Ls', - }), - dict({ - 'artist_id': '2nm38smINjms1LtczR0Cei', - 'name': 'Goodboys', - 'uri': 'spotify:artist:2nm38smINjms1LtczR0Cei', - }), - dict({ - 'artist_id': '4STmXOXUF3UieHU46NWLVt', - 'name': 'Poppy Baskcomb', - 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ab8c14282c2b7335f647f714', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ab8c14282c2b7335f647f714', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ab8c14282c2b7335f647f714', - 'width': 64, - }), - ]), - 'name': 'Keep On Pushing', - 'release_date': '2024-10-04', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5aKEa6uPolubhdjPpBujA4', - }), + 'added_at': datetime.datetime(2017, 8, 26, 22, 34, 42, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0fMJhuTXyqcPEP0B864j8T', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '0EdUwJSqkMmsH6Agg3G8Ls', - 'name': 'Marten Hørger', - 'uri': 'spotify:artist:0EdUwJSqkMmsH6Agg3G8Ls', + 'artist_id': '7f5Zgnp2spUuuzKplmRkt7', + 'name': 'Lost Frequencies', + 'uri': 'spotify:artist:7f5Zgnp2spUuuzKplmRkt7', }), dict({ - 'artist_id': '2nm38smINjms1LtczR0Cei', - 'name': 'Goodboys', - 'uri': 'spotify:artist:2nm38smINjms1LtczR0Cei', + 'artist_id': '5TgQ66WuWkoQ2xYxaSTnVP', + 'name': 'Netsky', + 'uri': 'spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP', }), + ]), + 'images': list([ dict({ - 'artist_id': '4STmXOXUF3UieHU46NWLVt', - 'name': 'Poppy Baskcomb', - 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 191818, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3hxESOoUq0tc9NrI3yfKaE', - }), - 'href': 'https://api.spotify.com/v1/tracks/3hxESOoUq0tc9NrI3yfKaE', - 'is_local': False, - 'name': 'Keep On Pushing', - 'track_id': '3hxESOoUq0tc9NrI3yfKaE', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:3hxESOoUq0tc9NrI3yfKaE', + 'name': 'Here With You', + 'release_date': '2017-06-30', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '7f5Zgnp2spUuuzKplmRkt7', + 'name': 'Lost Frequencies', + 'uri': 'spotify:artist:7f5Zgnp2spUuuzKplmRkt7', + }), + dict({ + 'artist_id': '5TgQ66WuWkoQ2xYxaSTnVP', + 'name': 'Netsky', + 'uri': 'spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 159023, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F', + }), + 'href': 'https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F', + 'is_local': False, + 'name': 'Here With You', + 'track_id': '0u6KLyKbuqAe3aiol9UV8F', + 'track_number': 1, + 'uri': 'spotify:track:0u6KLyKbuqAe3aiol9UV8F', + }), + ]), + 'uri': 'spotify:album:0fMJhuTXyqcPEP0B864j8T', }), }), dict({ - 'added_at': datetime.datetime(2024, 10, 5, 12, 38, 37, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1fIhC9q6hrlU3TUIKcUEVD', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '17IDrizGUiveZm4P77Kkio', - 'name': 'Icarus', - 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', - }), - dict({ - 'artist_id': '6F5RA03n6HZYIWB7SsqCtI', - 'name': 'Quelle T', - 'uri': 'spotify:artist:6F5RA03n6HZYIWB7SsqCtI', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2737b49ecd18eb7dbe560b64fae', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e027b49ecd18eb7dbe560b64fae', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048517b49ecd18eb7dbe560b64fae', - 'width': 64, - }), - ]), - 'name': 'Gravity', - 'release_date': '2024-09-17', - 'release_date_precision': , - 'total_tracks': 3, - 'uri': 'spotify:album:1fIhC9q6hrlU3TUIKcUEVD', - }), + 'added_at': datetime.datetime(2017, 8, 11, 16, 48, 33, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '6LaLU27ZPXimJIbpbiOahr', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '17IDrizGUiveZm4P77Kkio', - 'name': 'Icarus', - 'uri': 'spotify:artist:17IDrizGUiveZm4P77Kkio', + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27330800bfbfff51ddb031d9bd7', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0230800bfbfff51ddb031d9bd7', + 'width': 300, }), dict({ - 'artist_id': '6F5RA03n6HZYIWB7SsqCtI', - 'name': 'Quelle T', - 'uri': 'spotify:artist:6F5RA03n6HZYIWB7SsqCtI', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485130800bfbfff51ddb031d9bd7', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 192129, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4ikKo7qGunFFuTKhWNQm8f', - }), - 'href': 'https://api.spotify.com/v1/tracks/4ikKo7qGunFFuTKhWNQm8f', - 'is_local': False, - 'name': 'Gravity', - 'track_id': '4ikKo7qGunFFuTKhWNQm8f', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:4ikKo7qGunFFuTKhWNQm8f', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 10, 1, 11, 23, 15, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '7dPYE1Uoic9mBMFgwcqPaR', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7uGeDBa1LJ7T1X4fpl8mwk', - 'name': 'Bad Computer', - 'uri': 'spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk', - }), - dict({ - 'artist_id': '22TzutcnmM3B1e7mWLY0f7', - 'name': 'Ryan Coss', - 'uri': 'spotify:artist:22TzutcnmM3B1e7mWLY0f7', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b53ceefc28ae70e4189fbcdc', - 'width': 640, + 'name': 'AVĪCI (01)', + 'release_date': '2017-08-10', + 'release_date_precision': , + 'total_tracks': 6, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '2fVW2ix4ANKiofDZIsy1XR', + 'name': 'Vargas & Lagola', + 'uri': 'spotify:artist:2fVW2ix4ANKiofDZIsy1XR', + }), + ]), + 'disc_number': 1, + 'duration_ms': 159863, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo', }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b53ceefc28ae70e4189fbcdc', - 'width': 300, + 'href': 'https://api.spotify.com/v1/tracks/79UX8fkSsowWI1HOd8VoYt', + 'is_local': False, + 'name': 'Friend Of Mine (feat. Vargas & Lagola)', + 'track_id': '79UX8fkSsowWI1HOd8VoYt', + 'track_number': 1, + 'uri': 'spotify:track:79UX8fkSsowWI1HOd8VoYt', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '5CCwRZC6euC8Odo6y9X8jr', + 'name': 'Rita Ora', + 'uri': 'spotify:artist:5CCwRZC6euC8Odo6y9X8jr', + }), + ]), + 'disc_number': 1, + 'duration_ms': 181812, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b53ceefc28ae70e4189fbcdc', - 'width': 64, + 'href': 'https://api.spotify.com/v1/tracks/75NhhYjHO43mvZgYtnXgti', + 'is_local': False, + 'name': 'Lonely Together (feat. Rita Ora)', + 'track_id': '75NhhYjHO43mvZgYtnXgti', + 'track_number': 2, + 'uri': 'spotify:track:75NhhYjHO43mvZgYtnXgti', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '5gw5ANPCVcxU0maLiGRzzP', + 'name': 'Billy Raffoul', + 'uri': 'spotify:artist:5gw5ANPCVcxU0maLiGRzzP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 207545, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl', }), - ]), - 'name': '4D', - 'release_date': '2024-01-08', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:7dPYE1Uoic9mBMFgwcqPaR', - }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/tracks/630svau24EHHzw1kNk0Bdq', + 'is_local': False, + 'name': 'You Be Love (feat. Billy Raffoul)', + 'track_id': '630svau24EHHzw1kNk0Bdq', + 'track_number': 3, + 'uri': 'spotify:track:630svau24EHHzw1kNk0Bdq', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '5JYo7gm2dkyLLlWHjxS7Dy', + 'name': 'Sandro Cavazza', + 'uri': 'spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy', + }), + ]), + 'disc_number': 1, + 'duration_ms': 181672, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE', + }), + 'href': 'https://api.spotify.com/v1/tracks/6Pgkp4qUoTmJIPn7ReaGxL', + 'is_local': False, + 'name': 'Without You (feat. Sandro Cavazza)', + 'track_id': '6Pgkp4qUoTmJIPn7ReaGxL', + 'track_number': 4, + 'uri': 'spotify:track:6Pgkp4qUoTmJIPn7ReaGxL', + }), dict({ - 'artist_id': '7uGeDBa1LJ7T1X4fpl8mwk', - 'name': 'Bad Computer', - 'uri': 'spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk', + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '2VAnyOxzJuSAj7XIuEOT38', + 'name': 'AlunaGeorge', + 'uri': 'spotify:artist:2VAnyOxzJuSAj7XIuEOT38', + }), + ]), + 'disc_number': 1, + 'duration_ms': 185454, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j', + }), + 'href': 'https://api.spotify.com/v1/tracks/1vkXc8Tz3dZGNZoU2WF3la', + 'is_local': False, + 'name': 'What Would I Change It To (feat. AlunaGeorge)', + 'track_id': '1vkXc8Tz3dZGNZoU2WF3la', + 'track_number': 5, + 'uri': 'spotify:track:1vkXc8Tz3dZGNZoU2WF3la', }), dict({ - 'artist_id': '22TzutcnmM3B1e7mWLY0f7', - 'name': 'Ryan Coss', - 'uri': 'spotify:artist:22TzutcnmM3B1e7mWLY0f7', + 'artists': list([ + dict({ + 'artist_id': '1vCWHaC5f2uS3yhpwWbIA6', + 'name': 'Avicii', + 'uri': 'spotify:artist:1vCWHaC5f2uS3yhpwWbIA6', + }), + dict({ + 'artist_id': '5JYo7gm2dkyLLlWHjxS7Dy', + 'name': 'Sandro Cavazza', + 'uri': 'spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy', + }), + ]), + 'disc_number': 1, + 'duration_ms': 157152, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn', + }), + 'href': 'https://api.spotify.com/v1/tracks/6i3WMnuvd8DtczaGIMJvwC', + 'is_local': False, + 'name': 'So Much Better - Avicii Remix', + 'track_id': '6i3WMnuvd8DtczaGIMJvwC', + 'track_number': 6, + 'uri': 'spotify:track:6i3WMnuvd8DtczaGIMJvwC', }), ]), - 'disc_number': 1, - 'duration_ms': 176250, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2v4bGopODBEOQqWzg31R2s', - }), - 'href': 'https://api.spotify.com/v1/tracks/2v4bGopODBEOQqWzg31R2s', - 'is_local': False, - 'name': '4D', - 'track_id': '2v4bGopODBEOQqWzg31R2s', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2v4bGopODBEOQqWzg31R2s', + 'uri': 'spotify:album:6LaLU27ZPXimJIbpbiOahr', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 29, 9, 59, 34, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6V1NUr8mrDpCPNinJeyNfZ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2oAPxiUkLs3EdFAtYX4Qr5', - 'name': 'Clarke 99', - 'uri': 'spotify:artist:2oAPxiUkLs3EdFAtYX4Qr5', - }), - dict({ - 'artist_id': '0aUMVkR8QV0LSdv9VZOATn', - 'name': 'TEKKNO', - 'uri': 'spotify:artist:0aUMVkR8QV0LSdv9VZOATn', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ef63fb7204e1c55217b8a74c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ef63fb7204e1c55217b8a74c', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ef63fb7204e1c55217b8a74c', - 'width': 64, - }), - ]), - 'name': 'ART DECO - TEKKNO', - 'release_date': '2024-04-16', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6V1NUr8mrDpCPNinJeyNfZ', - }), + 'added_at': datetime.datetime(2017, 5, 23, 10, 38, 32, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0gIYOk2pcLnZONGE0N9X5p', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '2oAPxiUkLs3EdFAtYX4Qr5', - 'name': 'Clarke 99', - 'uri': 'spotify:artist:2oAPxiUkLs3EdFAtYX4Qr5', + 'artist_id': '5wwneIFdawNgQ7GvKK29Z3', + 'name': 'Lucas & Steve', + 'uri': 'spotify:artist:5wwneIFdawNgQ7GvKK29Z3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273cfb930f506a0243b1f498a1a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02cfb930f506a0243b1f498a1a', + 'width': 300, }), dict({ - 'artist_id': '0aUMVkR8QV0LSdv9VZOATn', - 'name': 'TEKKNO', - 'uri': 'spotify:artist:0aUMVkR8QV0LSdv9VZOATn', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851cfb930f506a0243b1f498a1a', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 198400, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5wr2qcL5WxTMQyiEzQvANe', - }), - 'href': 'https://api.spotify.com/v1/tracks/5wr2qcL5WxTMQyiEzQvANe', - 'is_local': False, - 'name': 'ART DECO - (TEKKNO)', - 'track_id': '5wr2qcL5WxTMQyiEzQvANe', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:5wr2qcL5WxTMQyiEzQvANe', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 24, 17, 32, 9, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6IgSZ5VJ7m1dP5zeaWBUWh', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '33KABng8GO42ojFJVcABxQ', - 'name': 'Eefje de Visser', - 'uri': 'spotify:artist:33KABng8GO42ojFJVcABxQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27350a44227286817c71bb97caa', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0250a44227286817c71bb97caa', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485150a44227286817c71bb97caa', - 'width': 64, - }), - ]), - 'name': 'Heimwee', - 'release_date': '2024-09-13', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:6IgSZ5VJ7m1dP5zeaWBUWh', - }), - 'artists': list([ + 'name': 'Up Till Dawn (On The Move)', + 'release_date': '2017-04-28', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ dict({ - 'artist_id': '33KABng8GO42ojFJVcABxQ', - 'name': 'Eefje de Visser', - 'uri': 'spotify:artist:33KABng8GO42ojFJVcABxQ', + 'artists': list([ + dict({ + 'artist_id': '5wwneIFdawNgQ7GvKK29Z3', + 'name': 'Lucas & Steve', + 'uri': 'spotify:artist:5wwneIFdawNgQ7GvKK29Z3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 186405, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD', + }), + 'href': 'https://api.spotify.com/v1/tracks/6wefD5q8rXOg3xHTUZjyio', + 'is_local': False, + 'name': 'Up Till Dawn (On The Move)', + 'track_id': '6wefD5q8rXOg3xHTUZjyio', + 'track_number': 1, + 'uri': 'spotify:track:6wefD5q8rXOg3xHTUZjyio', }), ]), - 'disc_number': 1, - 'duration_ms': 224341, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5vs5pCSQ8tzS94nsTwKcrL', - }), - 'href': 'https://api.spotify.com/v1/tracks/5vs5pCSQ8tzS94nsTwKcrL', - 'is_local': False, - 'name': 'Weekenden', - 'track_id': '5vs5pCSQ8tzS94nsTwKcrL', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:5vs5pCSQ8tzS94nsTwKcrL', + 'uri': 'spotify:album:0gIYOk2pcLnZONGE0N9X5p', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 24, 15, 30, 27, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '7CRD6yQGeaAmA5AVXluBul', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '59oA5WbbQvomJz2BuRG071', - 'name': 'Jungle', - 'uri': 'spotify:artist:59oA5WbbQvomJz2BuRG071', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27315ecd6926b2b357a546b02fc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0215ecd6926b2b357a546b02fc', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485115ecd6926b2b357a546b02fc', - 'width': 64, - }), - ]), - 'name': "Let's Go Back", - 'release_date': '2024-09-04', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:7CRD6yQGeaAmA5AVXluBul', - }), + 'added_at': datetime.datetime(2017, 2, 6, 18, 22, 32, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '3KzCJaaRVza9FnSsqtAFeO', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '59oA5WbbQvomJz2BuRG071', - 'name': 'Jungle', - 'uri': 'spotify:artist:59oA5WbbQvomJz2BuRG071', + 'artist_id': '53XhwfbYqKCa1cC15pYq2q', + 'name': 'Imagine Dragons', + 'uri': 'spotify:artist:53XhwfbYqKCa1cC15pYq2q', }), ]), - 'disc_number': 1, - 'duration_ms': 169651, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3fvZo45Y28ly1QBo05pujJ', - }), - 'href': 'https://api.spotify.com/v1/tracks/3fvZo45Y28ly1QBo05pujJ', - 'is_local': False, - 'name': "Let's Go Back", - 'track_id': '3fvZo45Y28ly1QBo05pujJ', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:3fvZo45Y28ly1QBo05pujJ', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 23, 20, 29, 47, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1jWcipGHDLJ94RMB2XUhgK', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', - 'name': 'Purple Disco Machine', - 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273fffecb767fcfa6c02c6987f3', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02fffecb767fcfa6c02c6987f3', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851fffecb767fcfa6c02c6987f3', - 'width': 64, - }), - ]), - 'name': 'Paradise', - 'release_date': '2024-09-20', - 'release_date_precision': , - 'total_tracks': 15, - 'uri': 'spotify:album:1jWcipGHDLJ94RMB2XUhgK', - }), - 'artists': list([ + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273156aeddf54ed40b1d9d30c9f', + 'width': 640, + }), dict({ - 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', - 'name': 'Purple Disco Machine', - 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02156aeddf54ed40b1d9d30c9f', + 'width': 300, }), dict({ - 'artist_id': '4WUGQykLBGFfsl0Qjl6TDM', - 'name': 'The Magician', - 'uri': 'spotify:artist:4WUGQykLBGFfsl0Qjl6TDM', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851156aeddf54ed40b1d9d30c9f', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 202935, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6NOlVkuAFtqTiBInHuqlrs', - }), - 'href': 'https://api.spotify.com/v1/tracks/6NOlVkuAFtqTiBInHuqlrs', - 'is_local': False, - 'name': 'All My Life', - 'track_id': '6NOlVkuAFtqTiBInHuqlrs', - 'track_number': 14, - 'type': , - 'uri': 'spotify:track:6NOlVkuAFtqTiBInHuqlrs', + 'name': 'Believer', + 'release_date': '2017-01-31', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '53XhwfbYqKCa1cC15pYq2q', + 'name': 'Imagine Dragons', + 'uri': 'spotify:artist:53XhwfbYqKCa1cC15pYq2q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 203782, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh', + }), + 'href': 'https://api.spotify.com/v1/tracks/0pqnGHJpmpxLKifKRmU6WP', + 'is_local': False, + 'name': 'Believer', + 'track_id': '0pqnGHJpmpxLKifKRmU6WP', + 'track_number': 1, + 'uri': 'spotify:track:0pqnGHJpmpxLKifKRmU6WP', + }), + ]), + 'uri': 'spotify:album:3KzCJaaRVza9FnSsqtAFeO', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 19, 15, 55, 57, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '3NusFNH0u0wmIiKZqoHt6p', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0bUZrFj7rstq07E4iAJHgZ', - 'name': 'KC Lights', - 'uri': 'spotify:artist:0bUZrFj7rstq07E4iAJHgZ', - }), - dict({ - 'artist_id': '4hlzEVQyBgze0kLOLwTV2r', - 'name': 'Welt', - 'uri': 'spotify:artist:4hlzEVQyBgze0kLOLwTV2r', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f792f45a66a0193016e5843f', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f792f45a66a0193016e5843f', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f792f45a66a0193016e5843f', - 'width': 64, - }), - ]), - 'name': 'Fly', - 'release_date': '2024-07-12', - 'release_date_precision': , - 'total_tracks': 2, - 'uri': 'spotify:album:3NusFNH0u0wmIiKZqoHt6p', - }), + 'added_at': datetime.datetime(2017, 1, 19, 12, 31, 37, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '64vx3cUb97lQGlgt8zozWL', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '0bUZrFj7rstq07E4iAJHgZ', - 'name': 'KC Lights', - 'uri': 'spotify:artist:0bUZrFj7rstq07E4iAJHgZ', + 'artist_id': '69GGBxA162lTqCwzJG5jLp', + 'name': 'The Chainsmokers', + 'uri': 'spotify:artist:69GGBxA162lTqCwzJG5jLp', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e9cb236aa581ad999b3a73b7', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e9cb236aa581ad999b3a73b7', + 'width': 300, }), dict({ - 'artist_id': '4hlzEVQyBgze0kLOLwTV2r', - 'name': 'Welt', - 'uri': 'spotify:artist:4hlzEVQyBgze0kLOLwTV2r', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e9cb236aa581ad999b3a73b7', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 168189, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4hB6Riwyg06VWFVgOTiKWz', - }), - 'href': 'https://api.spotify.com/v1/tracks/4hB6Riwyg06VWFVgOTiKWz', - 'is_local': False, - 'name': 'Fly', - 'track_id': '4hB6Riwyg06VWFVgOTiKWz', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:4hB6Riwyg06VWFVgOTiKWz', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 14, 15, 19, 51, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '1Mo92916G2mmG7ajpmSVrc', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6M2wZ9GZgrQXHCFfjv46we', - 'name': 'Dua Lipa', - 'uri': 'spotify:artist:6M2wZ9GZgrQXHCFfjv46we', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273778c1e4660aa23f6728b32a1', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02778c1e4660aa23f6728b32a1', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851778c1e4660aa23f6728b32a1', - 'width': 64, - }), - ]), - 'name': 'Radical Optimism', - 'release_date': '2024-05-03', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:1Mo92916G2mmG7ajpmSVrc', - }), - 'artists': list([ + 'name': 'Paris', + 'release_date': '2017-01-13', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ dict({ - 'artist_id': '6M2wZ9GZgrQXHCFfjv46we', - 'name': 'Dua Lipa', - 'uri': 'spotify:artist:6M2wZ9GZgrQXHCFfjv46we', + 'artists': list([ + dict({ + 'artist_id': '69GGBxA162lTqCwzJG5jLp', + 'name': 'The Chainsmokers', + 'uri': 'spotify:artist:69GGBxA162lTqCwzJG5jLp', + }), + ]), + 'disc_number': 1, + 'duration_ms': 221509, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/15vzANxN8G9wWfwAJLLMCg', + }), + 'href': 'https://api.spotify.com/v1/tracks/15vzANxN8G9wWfwAJLLMCg', + 'is_local': False, + 'name': 'Paris', + 'track_id': '15vzANxN8G9wWfwAJLLMCg', + 'track_number': 1, + 'uri': 'spotify:track:15vzANxN8G9wWfwAJLLMCg', }), ]), - 'disc_number': 1, - 'duration_ms': 198198, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6bAkr9wkQyPM4IDrP4tuwR', - }), - 'href': 'https://api.spotify.com/v1/tracks/6bAkr9wkQyPM4IDrP4tuwR', - 'is_local': False, - 'name': 'Whatcha Doing', - 'track_id': '6bAkr9wkQyPM4IDrP4tuwR', - 'track_number': 5, - 'type': , - 'uri': 'spotify:track:6bAkr9wkQyPM4IDrP4tuwR', + 'uri': 'spotify:album:64vx3cUb97lQGlgt8zozWL', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 13, 13, 8, 40, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '4wCx7hQCIOVtuN3DkNGhYm', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1l9d7B8W0IHy3LqWsxP2SH', - 'name': 'Phantogram', - 'uri': 'spotify:artist:1l9d7B8W0IHy3LqWsxP2SH', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27356f72c3ee8aca5233000f7b0', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0256f72c3ee8aca5233000f7b0', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485156f72c3ee8aca5233000f7b0', - 'width': 64, - }), - ]), - 'name': 'Come Alive', - 'release_date': '2024-08-23', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4wCx7hQCIOVtuN3DkNGhYm', - }), + 'added_at': datetime.datetime(2017, 1, 17, 19, 1, 16, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '0of0qWNbNmUck9ODJzBPA3', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '1l9d7B8W0IHy3LqWsxP2SH', - 'name': 'Phantogram', - 'uri': 'spotify:artist:1l9d7B8W0IHy3LqWsxP2SH', + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', }), ]), - 'disc_number': 1, - 'duration_ms': 253698, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2TvwhdrUqEDUg0Z7LOmUOd', - }), - 'href': 'https://api.spotify.com/v1/tracks/2TvwhdrUqEDUg0Z7LOmUOd', - 'is_local': False, - 'name': 'Come Alive', - 'track_id': '2TvwhdrUqEDUg0Z7LOmUOd', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2TvwhdrUqEDUg0Z7LOmUOd', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 9, 20, 10, 14, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '3QcgmERUy859oM1YDj9hAT', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7dupCiguCFkYZRisA3foPu', - 'name': 'Monie Love', - 'uri': 'spotify:artist:7dupCiguCFkYZRisA3foPu', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2731997f03aceb5147e33e550f8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e021997f03aceb5147e33e550f8', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048511997f03aceb5147e33e550f8', + 'width': 64, + }), + ]), + 'name': 'Nerds by Nature - EP', + 'release_date': '2017-01-13', + 'release_date_precision': , + 'total_tracks': 6, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 249979, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc', }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27320729e6b97543c7aff4545b0', - 'width': 640, + 'href': 'https://api.spotify.com/v1/tracks/6MXPrUXjd3i67WYsNmq61D', + 'is_local': False, + 'name': 'Speed of Light', + 'track_id': '6MXPrUXjd3i67WYsNmq61D', + 'track_number': 1, + 'uri': 'spotify:track:6MXPrUXjd3i67WYsNmq61D', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + dict({ + 'artist_id': '1BeMe0yy4Sqo29rnqkZ1tc', + 'name': 'Desirée Dawson', + 'uri': 'spotify:artist:1BeMe0yy4Sqo29rnqkZ1tc', + }), + ]), + 'disc_number': 1, + 'duration_ms': 236198, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi', }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0220729e6b97543c7aff4545b0', - 'width': 300, + 'href': 'https://api.spotify.com/v1/tracks/3ypAa7Vkji9z5GsoXaT5ic', + 'is_local': False, + 'name': 'Talk About It (feat. Desirée Dawson)', + 'track_id': '3ypAa7Vkji9z5GsoXaT5ic', + 'track_number': 2, + 'uri': 'spotify:track:3ypAa7Vkji9z5GsoXaT5ic', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191349, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485120729e6b97543c7aff4545b0', - 'width': 64, + 'href': 'https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97', + 'is_local': False, + 'name': 'Melodymania', + 'track_id': '6tfMPcat5tsLjiKt3wfM97', + 'track_number': 3, + 'uri': 'spotify:track:6tfMPcat5tsLjiKt3wfM97', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + dict({ + 'artist_id': '0MYmMGmRg8CFZPNZBAdjm1', + 'name': 'Quiet Disorder', + 'uri': 'spotify:artist:0MYmMGmRg8CFZPNZBAdjm1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 207871, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh', }), - ]), - 'name': 'Down to Earth', - 'release_date': '1990-10-20', - 'release_date_precision': , - 'total_tracks': 18, - 'uri': 'spotify:album:3QcgmERUy859oM1YDj9hAT', - }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/tracks/5i4d6fgqkt0rKvkyj8J48F', + 'is_local': False, + 'name': 'Go Berzerk', + 'track_id': '5i4d6fgqkt0rKvkyj8J48F', + 'track_number': 4, + 'uri': 'spotify:track:5i4d6fgqkt0rKvkyj8J48F', + }), dict({ - 'artist_id': '7dupCiguCFkYZRisA3foPu', - 'name': 'Monie Love', - 'uri': 'spotify:artist:7dupCiguCFkYZRisA3foPu', + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 239004, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr', + }), + 'href': 'https://api.spotify.com/v1/tracks/73nWSc3002fGRPrnFDev8x', + 'is_local': False, + 'name': 'BAMF', + 'track_id': '73nWSc3002fGRPrnFDev8x', + 'track_number': 5, + 'uri': 'spotify:track:73nWSc3002fGRPrnFDev8x', }), dict({ - 'artist_id': '5rWgwZwzlVQb3Ltn6NnIVj', - 'name': 'True Image', - 'uri': 'spotify:artist:5rWgwZwzlVQb3Ltn6NnIVj', + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212323, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL', + }), + 'href': 'https://api.spotify.com/v1/tracks/1rjMexUleyOewga9qRrEqb', + 'is_local': False, + 'name': 'Blackout', + 'track_id': '1rjMexUleyOewga9qRrEqb', + 'track_number': 6, + 'uri': 'spotify:track:1rjMexUleyOewga9qRrEqb', }), ]), - 'disc_number': 1, - 'duration_ms': 222840, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6ir6C7AHGMVLGQN7hv7gTA', - }), - 'href': 'https://api.spotify.com/v1/tracks/6ir6C7AHGMVLGQN7hv7gTA', - 'is_local': False, - 'name': "It's a Shame (My Sister)", - 'track_id': '6ir6C7AHGMVLGQN7hv7gTA', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:6ir6C7AHGMVLGQN7hv7gTA', + 'uri': 'spotify:album:0of0qWNbNmUck9ODJzBPA3', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 8, 14, 24, 25, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '7Gsu8XlxWUsQbFZGajdxdC', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2CpLIMBoE2ZzyY3ZBCRZ7j', - 'name': 'BUNT.', - 'uri': 'spotify:artist:2CpLIMBoE2ZzyY3ZBCRZ7j', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273de9b66fc971d8d7d2fea4fb2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02de9b66fc971d8d7d2fea4fb2', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851de9b66fc971d8d7d2fea4fb2', - 'width': 64, - }), - ]), - 'name': 'Crown', - 'release_date': '2024-08-30', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:7Gsu8XlxWUsQbFZGajdxdC', - }), + 'added_at': datetime.datetime(2016, 12, 25, 0, 26, 44, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '5TOcXQ3t05FyNZPdWOWAn4', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '2CpLIMBoE2ZzyY3ZBCRZ7j', - 'name': 'BUNT.', - 'uri': 'spotify:artist:2CpLIMBoE2ZzyY3ZBCRZ7j', + 'artist_id': '2kQ4uyd7WPQI9xcmeZbI0G', + 'name': 'The Yogscast', + 'uri': 'spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2736f555a58589dfb4504a320de', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e026f555a58589dfb4504a320de', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048516f555a58589dfb4504a320de', + 'width': 64, + }), + ]), + 'name': 'Brand New Friend at Christmas Time', + 'release_date': '2017-01-17', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '2kQ4uyd7WPQI9xcmeZbI0G', + 'name': 'The Yogscast', + 'uri': 'spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G', + }), + ]), + 'disc_number': 1, + 'duration_ms': 187499, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4lsqZRyqmntgpilnjdd6gm', + }), + 'href': 'https://api.spotify.com/v1/tracks/4lsqZRyqmntgpilnjdd6gm', + 'is_local': False, + 'name': 'Brand New Friend at Christmas Time', + 'track_id': '4lsqZRyqmntgpilnjdd6gm', + 'track_number': 1, + 'uri': 'spotify:track:4lsqZRyqmntgpilnjdd6gm', }), ]), - 'disc_number': 1, - 'duration_ms': 240937, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/48HjuSOCti5mGKg6rUjAfB', - }), - 'href': 'https://api.spotify.com/v1/tracks/48HjuSOCti5mGKg6rUjAfB', - 'is_local': False, - 'name': 'Crown', - 'track_id': '48HjuSOCti5mGKg6rUjAfB', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:48HjuSOCti5mGKg6rUjAfB', + 'uri': 'spotify:album:5TOcXQ3t05FyNZPdWOWAn4', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 8, 14, 6, 7, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5mBSawja8ThkqKHqMagoCk', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736d59f0706b0e4a8fbc0908fe', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026d59f0706b0e4a8fbc0908fe', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516d59f0706b0e4a8fbc0908fe', - 'width': 64, - }), - ]), - 'name': 'All You Children', - 'release_date': '2024-07-30', - 'release_date_precision': , - 'total_tracks': 3, - 'uri': 'spotify:album:5mBSawja8ThkqKHqMagoCk', - }), + 'added_at': datetime.datetime(2016, 12, 8, 18, 0, 51, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '4ALxbRHMIs5DBtnUaE3hBG', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27311ce9419e0e9ac0a3c5b8fcf', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0211ce9419e0e9ac0a3c5b8fcf', + 'width': 300, }), dict({ - 'artist_id': '3C8RpaI3Go0yFF9whvKoED', - 'name': 'The Avalanches', - 'uri': 'spotify:artist:3C8RpaI3Go0yFF9whvKoED', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485111ce9419e0e9ac0a3c5b8fcf', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 254142, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1zYuc5YFYlFfSSq6IslHVY', - }), - 'href': 'https://api.spotify.com/v1/tracks/1zYuc5YFYlFfSSq6IslHVY', - 'is_local': False, - 'name': 'All You Children', - 'track_id': '1zYuc5YFYlFfSSq6IslHVY', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:1zYuc5YFYlFfSSq6IslHVY', + 'name': 'Melodymania', + 'release_date': '2016-12-05', + 'release_date_precision': , + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 191349, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF', + }), + 'href': 'https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97', + 'is_local': False, + 'name': 'Melodymania', + 'track_id': '6tfMPcat5tsLjiKt3wfM97', + 'track_number': 1, + 'uri': 'spotify:track:6tfMPcat5tsLjiKt3wfM97', + }), + ]), + 'uri': 'spotify:album:4ALxbRHMIs5DBtnUaE3hBG', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 8, 13, 24, 33, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '3DQueEd1Ft9PHWgovDzPKh', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736b8a4828e057b7dc1c4a4d39', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026b8a4828e057b7dc1c4a4d39', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516b8a4828e057b7dc1c4a4d39', - 'width': 64, - }), - ]), - 'name': 'ten days', - 'release_date': '2024-09-06', - 'release_date_precision': , - 'total_tracks': 20, - 'uri': 'spotify:album:3DQueEd1Ft9PHWgovDzPKh', - }), + 'added_at': datetime.datetime(2015, 3, 2, 17, 21, 6, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '7MKwNQ5mBmm3GAYRZI6Zxe', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273dd85489b03fc971554fad163', + 'width': 640, }), dict({ - 'artist_id': '3IunaFjvNKj98JW89JYv9u', - 'name': 'The Japanese House', - 'uri': 'spotify:artist:3IunaFjvNKj98JW89JYv9u', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02dd85489b03fc971554fad163', + 'width': 300, }), dict({ - 'artist_id': '6M98IZJK2tx6x2YVyHua9K', - 'name': 'Scott Hardkiss', - 'uri': 'spotify:artist:6M98IZJK2tx6x2YVyHua9K', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851dd85489b03fc971554fad163', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 314007, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO', - }), - 'href': 'https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO', - 'is_local': False, - 'name': 'backseat', - 'track_id': '61pyjiweMDS1h930OgS0XO', - 'track_number': 20, - 'type': , - 'uri': 'spotify:track:61pyjiweMDS1h930OgS0XO', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 8, 13, 6, 11, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '0K7hOcNhAGs54ANFnXw6uM', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1np8xozf7ATJZDi9JX8Dx5', - 'name': 'salute', - 'uri': 'spotify:artist:1np8xozf7ATJZDi9JX8Dx5', + 'name': 'Rise Of A Digital Nation', + 'release_date': '2012-01-01', + 'release_date_precision': , + 'total_tracks': 10, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 294026, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT', }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f38ea35a4cbce6ef51f2a176', - 'width': 640, + 'href': 'https://api.spotify.com/v1/tracks/5jAuvjSuxiZkuHIC06tcht', + 'is_local': False, + 'name': 'All Of My Angels', + 'track_id': '5jAuvjSuxiZkuHIC06tcht', + 'track_number': 1, + 'uri': 'spotify:track:5jAuvjSuxiZkuHIC06tcht', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246706, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs', }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f38ea35a4cbce6ef51f2a176', - 'width': 300, + 'href': 'https://api.spotify.com/v1/tracks/7y8U4mJI4LLxwE2Sw1wmwu', + 'is_local': False, + 'name': 'Laser Speed Force', + 'track_id': '7y8U4mJI4LLxwE2Sw1wmwu', + 'track_number': 2, + 'uri': 'spotify:track:7y8U4mJI4LLxwE2Sw1wmwu', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 248520, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f38ea35a4cbce6ef51f2a176', - 'width': 64, + 'href': 'https://api.spotify.com/v1/tracks/64AEiTYzHycNe3CDI3rDWp', + 'is_local': False, + 'name': 'Transgenic', + 'track_id': '64AEiTYzHycNe3CDI3rDWp', + 'track_number': 3, + 'uri': 'spotify:track:64AEiTYzHycNe3CDI3rDWp', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 247600, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj', }), - ]), - 'name': 'TRUE MAGIC', - 'release_date': '2024-07-12', - 'release_date_precision': , - 'total_tracks': 14, - 'uri': 'spotify:album:0K7hOcNhAGs54ANFnXw6uM', - }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/tracks/6dW047Jdz5KJIFKijonoYV', + 'is_local': False, + 'name': 'Rise Of A Digital Nation', + 'track_id': '6dW047Jdz5KJIFKijonoYV', + 'track_number': 4, + 'uri': 'spotify:track:6dW047Jdz5KJIFKijonoYV', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 256120, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo', + }), + 'href': 'https://api.spotify.com/v1/tracks/54GRGBhoT1E9bY4VFmCG02', + 'is_local': False, + 'name': 'Pieces', + 'track_id': '54GRGBhoT1E9bY4VFmCG02', + 'track_number': 5, + 'uri': 'spotify:track:54GRGBhoT1E9bY4VFmCG02', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 86080, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2', + }), + 'href': 'https://api.spotify.com/v1/tracks/6lB2UMmpjL8BlXEtR7JLP6', + 'is_local': False, + 'name': 'Cyber Warfare', + 'track_id': '6lB2UMmpjL8BlXEtR7JLP6', + 'track_number': 6, + 'uri': 'spotify:track:6lB2UMmpjL8BlXEtR7JLP6', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 253760, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0', + }), + 'href': 'https://api.spotify.com/v1/tracks/2jgAMjoVW1T2BGgextCquW', + 'is_local': False, + 'name': 'Republic Of Gamers', + 'track_id': '2jgAMjoVW1T2BGgextCquW', + 'track_number': 7, + 'uri': 'spotify:track:2jgAMjoVW1T2BGgextCquW', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 255920, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs', + }), + 'href': 'https://api.spotify.com/v1/tracks/5kLPMs5samTF1KHSCaubbw', + 'is_local': False, + 'name': 'Battlecry', + 'track_id': '5kLPMs5samTF1KHSCaubbw', + 'track_number': 8, + 'uri': 'spotify:track:5kLPMs5samTF1KHSCaubbw', + }), dict({ - 'artist_id': '1np8xozf7ATJZDi9JX8Dx5', - 'name': 'salute', - 'uri': 'spotify:artist:1np8xozf7ATJZDi9JX8Dx5', + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 325880, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M', + }), + 'href': 'https://api.spotify.com/v1/tracks/2WRZHrs3PykkeNxSYYKtdy', + 'is_local': False, + 'name': '99', + 'track_id': '2WRZHrs3PykkeNxSYYKtdy', + 'track_number': 9, + 'uri': 'spotify:track:2WRZHrs3PykkeNxSYYKtdy', }), dict({ - 'artist_id': '2KEqzdPS7M5YwGmiuPTdr5', - 'name': 'Rina Sawayama', - 'uri': 'spotify:artist:2KEqzdPS7M5YwGmiuPTdr5', + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 323680, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2', + }), + 'href': 'https://api.spotify.com/v1/tracks/54DNZAJaVrE0foL1dAZHRJ', + 'is_local': False, + 'name': 'Hero', + 'track_id': '54DNZAJaVrE0foL1dAZHRJ', + 'track_number': 10, + 'uri': 'spotify:track:54DNZAJaVrE0foL1dAZHRJ', }), ]), - 'disc_number': 1, - 'duration_ms': 210785, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5s54Ts1rJwUwaxQqoTC4jQ', - }), - 'href': 'https://api.spotify.com/v1/tracks/5s54Ts1rJwUwaxQqoTC4jQ', - 'is_local': False, - 'name': 'saving flowers', - 'track_id': '5s54Ts1rJwUwaxQqoTC4jQ', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:5s54Ts1rJwUwaxQqoTC4jQ', + 'uri': 'spotify:album:7MKwNQ5mBmm3GAYRZI6Zxe', }), }), dict({ - 'added_at': datetime.datetime(2024, 9, 8, 11, 56, 12, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5D3qYKt4IFBEQENqzzlh1Y', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5nki7yRhxgM509M5ADlN1p', - 'name': 'Oliver Heldens', - 'uri': 'spotify:artist:5nki7yRhxgM509M5ADlN1p', - }), - dict({ - 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', - 'name': 'David Guetta', - 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', - }), - dict({ - 'artist_id': '56Qz2XwGj7FxnNKrfkWjnb', - 'name': 'FAST BOY', - 'uri': 'spotify:artist:56Qz2XwGj7FxnNKrfkWjnb', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273a37595d03e9df79b71a9640f', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02a37595d03e9df79b71a9640f', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851a37595d03e9df79b71a9640f', - 'width': 64, - }), - ]), - 'name': 'Chills (Feel My Love)', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5D3qYKt4IFBEQENqzzlh1Y', - }), + 'added_at': datetime.datetime(2015, 1, 27, 17, 23, 11, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '6kqOHnshP4RMTUWKrhm6Sy', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '5nki7yRhxgM509M5ADlN1p', - 'name': 'Oliver Heldens', - 'uri': 'spotify:artist:5nki7yRhxgM509M5ADlN1p', + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732bc58e4de7c41e84aeacee40', + 'width': 640, }), dict({ - 'artist_id': '1Cs0zKBU1kc0i8ypK3B9ai', - 'name': 'David Guetta', - 'uri': 'spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022bc58e4de7c41e84aeacee40', + 'width': 300, }), dict({ - 'artist_id': '56Qz2XwGj7FxnNKrfkWjnb', - 'name': 'FAST BOY', - 'uri': 'spotify:artist:56Qz2XwGj7FxnNKrfkWjnb', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512bc58e4de7c41e84aeacee40', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 163399, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0jjE8w7Rtu3NCImWhKKX8x', - }), - 'href': 'https://api.spotify.com/v1/tracks/0jjE8w7Rtu3NCImWhKKX8x', - 'is_local': False, - 'name': 'Chills (Feel My Love)', - 'track_id': '0jjE8w7Rtu3NCImWhKKX8x', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:0jjE8w7Rtu3NCImWhKKX8x', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 8, 11, 22, 23, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '5iEtQfZATfimid3Ogvce5m', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '67hb7towEyKvt5Z8Bx306c', - 'name': 'Empire Of The Sun', - 'uri': 'spotify:artist:67hb7towEyKvt5Z8Bx306c', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273539b85bf093856207373e138', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02539b85bf093856207373e138', - 'width': 300, + 'name': 'Listen', + 'release_date': '2014-01-01', + 'release_date_precision': , + 'total_tracks': 11, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 250692, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/36pHJ5lqNQTLLzGTy8G7xV', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851539b85bf093856207373e138', - 'width': 64, + 'href': 'https://api.spotify.com/v1/tracks/36pHJ5lqNQTLLzGTy8G7xV', + 'is_local': False, + 'name': 'Around Town', + 'track_id': '36pHJ5lqNQTLLzGTy8G7xV', + 'track_number': 1, + 'uri': 'spotify:track:36pHJ5lqNQTLLzGTy8G7xV', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 237248, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2xxMXbsjhqPzTYAclUOQlI', }), - ]), - 'name': 'Ask That God', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:5iEtQfZATfimid3Ogvce5m', - }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/tracks/2xxMXbsjhqPzTYAclUOQlI', + 'is_local': False, + 'name': 'Forgive & Forget', + 'track_id': '2xxMXbsjhqPzTYAclUOQlI', + 'track_number': 2, + 'uri': 'spotify:track:2xxMXbsjhqPzTYAclUOQlI', + }), dict({ - 'artist_id': '67hb7towEyKvt5Z8Bx306c', - 'name': 'Empire Of The Sun', - 'uri': 'spotify:artist:67hb7towEyKvt5Z8Bx306c', + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 210193, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5BtyHl1eRqip2PkHhFYzHG', + }), + 'href': 'https://api.spotify.com/v1/tracks/5BtyHl1eRqip2PkHhFYzHG', + 'is_local': False, + 'name': 'Westside', + 'track_id': '5BtyHl1eRqip2PkHhFYzHG', + 'track_number': 3, + 'uri': 'spotify:track:5BtyHl1eRqip2PkHhFYzHG', }), - ]), - 'disc_number': 1, - 'duration_ms': 207587, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/7eqIZPAPLQhkjSVTzBT7UR', - }), - 'href': 'https://api.spotify.com/v1/tracks/7eqIZPAPLQhkjSVTzBT7UR', - 'is_local': False, - 'name': 'Cherry Blossom', - 'track_id': '7eqIZPAPLQhkjSVTzBT7UR', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:7eqIZPAPLQhkjSVTzBT7UR', - }), - }), - dict({ - 'added_at': datetime.datetime(2024, 9, 6, 20, 46, 53, tzinfo=datetime.timezone.utc), - 'track': dict({ - 'album': dict({ - 'album_id': '6DExt1eX4lflLacVjHHbOs', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4MVyzYMgTwdP7Z49wAZHx0', - 'name': 'Lynyrd Skynyrd', - 'uri': 'spotify:artist:4MVyzYMgTwdP7Z49wAZHx0', + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 181026, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5iRNKJoGqjD8RG7RNwOWYb', }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8', - 'width': 640, + 'href': 'https://api.spotify.com/v1/tracks/5iRNKJoGqjD8RG7RNwOWYb', + 'is_local': False, + 'name': 'See Me Now', + 'track_id': '5iRNKJoGqjD8RG7RNwOWYb', + 'track_number': 4, + 'uri': 'spotify:track:5iRNKJoGqjD8RG7RNwOWYb', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 193293, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6FeAfj1h12aakG9KqK7u3u', }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02128450651c9f0442780d8eb8', - 'width': 300, + 'href': 'https://api.spotify.com/v1/tracks/6FeAfj1h12aakG9KqK7u3u', + 'is_local': False, + 'name': 'It Was London', + 'track_id': '6FeAfj1h12aakG9KqK7u3u', + 'track_number': 5, + 'uri': 'spotify:track:6FeAfj1h12aakG9KqK7u3u', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 221413, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3huV7eiNpaQlCB3LbZi9bB', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851128450651c9f0442780d8eb8', - 'width': 64, + 'href': 'https://api.spotify.com/v1/tracks/3huV7eiNpaQlCB3LbZi9bB', + 'is_local': False, + 'name': 'Bad Habit', + 'track_id': '3huV7eiNpaQlCB3LbZi9bB', + 'track_number': 6, + 'uri': 'spotify:track:3huV7eiNpaQlCB3LbZi9bB', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 163733, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0mkxwzF6TYJh8xIJ1MCpy1', }), - ]), - 'name': "Pronounced' Leh-'Nerd 'Skin-'Nerd", - 'release_date': '1973-01-01', - 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:6DExt1eX4lflLacVjHHbOs', - }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/tracks/0mkxwzF6TYJh8xIJ1MCpy1', + 'is_local': False, + 'name': 'Down', + 'track_id': '0mkxwzF6TYJh8xIJ1MCpy1', + 'track_number': 7, + 'uri': 'spotify:track:0mkxwzF6TYJh8xIJ1MCpy1', + }), dict({ - 'artist_id': '4MVyzYMgTwdP7Z49wAZHx0', - 'name': 'Lynyrd Skynyrd', - 'uri': 'spotify:artist:4MVyzYMgTwdP7Z49wAZHx0', + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 180773, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4PTEa5uZirN5C86dvq7vWt', + }), + 'href': 'https://api.spotify.com/v1/tracks/4PTEa5uZirN5C86dvq7vWt', + 'is_local': False, + 'name': 'Dreams', + 'track_id': '4PTEa5uZirN5C86dvq7vWt', + 'track_number': 8, + 'uri': 'spotify:track:4PTEa5uZirN5C86dvq7vWt', }), - ]), - 'disc_number': 1, - 'duration_ms': 547106, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5EWPGh7jbTNO2wakv8LjUI', - }), - 'href': 'https://api.spotify.com/v1/tracks/5EWPGh7jbTNO2wakv8LjUI', - 'is_local': False, - 'name': 'Free Bird', - 'track_id': '5EWPGh7jbTNO2wakv8LjUI', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:5EWPGh7jbTNO2wakv8LjUI', - }), - }), - ]) -# --- -# name: test_get_show - dict({ - 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', - 'episodes': list([ - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3690161, - 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', - }), - 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246106, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/52xzfQXzhRFTcuXVIAdI7H', + }), + 'href': 'https://api.spotify.com/v1/tracks/52xzfQXzhRFTcuXVIAdI7H', + 'is_local': False, + 'name': 'Are We Electric', + 'track_id': '52xzfQXzhRFTcuXVIAdI7H', + 'track_number': 9, + 'uri': 'spotify:track:52xzfQXzhRFTcuXVIAdI7H', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 194613, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/15aMD4JcaPzoM9QKDYF42m', + }), + 'href': 'https://api.spotify.com/v1/tracks/15aMD4JcaPzoM9QKDYF42m', + 'is_local': False, + 'name': 'Sunrise', + 'track_id': '15aMD4JcaPzoM9QKDYF42m', + 'track_number': 10, + 'uri': 'spotify:track:15aMD4JcaPzoM9QKDYF42m', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1GLtl8uqKmnyCWxHmw9tL4', + 'name': 'The Kooks', + 'uri': 'spotify:artist:1GLtl8uqKmnyCWxHmw9tL4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 308569, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0hIGUS1PQbv5NIrHIf6Fza', + }), + 'href': 'https://api.spotify.com/v1/tracks/0hIGUS1PQbv5NIrHIf6Fza', + 'is_local': False, + 'name': 'Sweet Emotion', + 'track_id': '0hIGUS1PQbv5NIrHIf6Fza', + 'track_number': 11, + 'uri': 'spotify:track:0hIGUS1PQbv5NIrHIf6Fza', }), ]), - 'name': 'My Squirrel Has Brain Damage - Safety Third 119', - 'release_date': '2024-07-26', - 'release_date_precision': , - 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', + 'uri': 'spotify:album:6kqOHnshP4RMTUWKrhm6Sy', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5690591, - 'episode_id': '7CbsFHQq8ljztiUSGw46Fj', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj', - }), - 'href': 'https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), + }), + dict({ + 'added_at': datetime.datetime(2015, 1, 22, 17, 24, 49, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1nLeRbHToiAF8icVAgzke6', + 'album_type': , + 'artists': list([ dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artist_id': '7momuad2Twkv5O7MY3dODa', + 'name': 'Frontliner', + 'uri': 'spotify:artist:7momuad2Twkv5O7MY3dODa', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '320fB6pkVQ7vp95y2N9qkC', + 'name': 'SERi', + 'uri': 'spotify:artist:320fB6pkVQ7vp95y2N9qkC', }), ]), - 'name': 'Math Haters vs Math Nerd - Safety Third 118', - 'release_date': '2024-07-18', - 'release_date_precision': , - 'uri': 'spotify:episode:7CbsFHQq8ljztiUSGw46Fj', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5808720, - 'episode_id': '7I6SU4lQbmxipsRNN5hGGk', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk', - }), - 'href': 'https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f1a22ddc7a2b07c8e006e623', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f1a22ddc7a2b07c8e006e623', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00004851f1a22ddc7a2b07c8e006e623', 'width': 64, }), ]), - 'name': 'Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117', - 'release_date': '2024-07-11', + 'name': 'Rains Of Fire', + 'release_date': '2014-11-17', 'release_date_precision': , - 'uri': 'spotify:episode:7I6SU4lQbmxipsRNN5hGGk', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5290728, - 'episode_id': '5RTOrKLydGUJxiebaBbEbe', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe', - }), - 'href': 'https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), + 'total_tracks': 1, + 'tracks': list([ dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '7momuad2Twkv5O7MY3dODa', + 'name': 'Frontliner', + 'uri': 'spotify:artist:7momuad2Twkv5O7MY3dODa', + }), + dict({ + 'artist_id': '320fB6pkVQ7vp95y2N9qkC', + 'name': 'SERi', + 'uri': 'spotify:artist:320fB6pkVQ7vp95y2N9qkC', + }), + ]), + 'disc_number': 1, + 'duration_ms': 277960, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs', + }), + 'href': 'https://api.spotify.com/v1/tracks/7skiHghGcwtlFqaLMfiOuz', + 'is_local': False, + 'name': 'Rains Of Fire', + 'track_id': '7skiHghGcwtlFqaLMfiOuz', + 'track_number': 1, + 'uri': 'spotify:track:7skiHghGcwtlFqaLMfiOuz', }), + ]), + 'uri': 'spotify:album:1nLeRbHToiAF8icVAgzke6', + }), + }), + dict({ + 'added_at': datetime.datetime(2015, 1, 8, 16, 58, 36, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1zzigYZU8igjHhCG24wBkm', + 'album_type': , + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '4UXqAaa6dQYAk18Lv7PEgX', + 'name': 'Fall Out Boy', + 'uri': 'spotify:artist:4UXqAaa6dQYAk18Lv7PEgX', }), ]), - 'name': "NileRed's Most Important Employee - Safety Third 116", - 'release_date': '2024-07-04', - 'release_date_precision': , - 'uri': 'spotify:episode:5RTOrKLydGUJxiebaBbEbe', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 6685800, - 'episode_id': '2cxiMfCIlOPiMQhsdRMKG0', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0', - }), - 'href': 'https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000b273b4b49b8dc3853e01eb8cecef', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00001e02b4b49b8dc3853e01eb8cecef', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00004851b4b49b8dc3853e01eb8cecef', 'width': 64, }), ]), - 'name': 'How Real Engineering Got Fired - Safety Third 115', - 'release_date': '2024-06-27', + 'name': 'Centuries', + 'release_date': '2014-09-09', 'release_date_precision': , - 'uri': 'spotify:episode:2cxiMfCIlOPiMQhsdRMKG0', + 'total_tracks': 1, + 'tracks': list([ + dict({ + 'artists': list([ + dict({ + 'artist_id': '4UXqAaa6dQYAk18Lv7PEgX', + 'name': 'Fall Out Boy', + 'uri': 'spotify:artist:4UXqAaa6dQYAk18Lv7PEgX', + }), + ]), + 'disc_number': 1, + 'duration_ms': 231813, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U', + }), + 'href': 'https://api.spotify.com/v1/tracks/04aAxqtGp5pv12UXAg4pkq', + 'is_local': False, + 'name': 'Centuries', + 'track_id': '04aAxqtGp5pv12UXAg4pkq', + 'track_number': 1, + 'uri': 'spotify:track:04aAxqtGp5pv12UXAg4pkq', + }), + ]), + 'uri': 'spotify:album:1zzigYZU8igjHhCG24wBkm', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5509825, - 'episode_id': '2jALMGr63flWEdRl8NxvQR', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR', - }), - 'href': 'https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR', + }), + dict({ + 'added_at': datetime.datetime(2015, 1, 7, 15, 51, 45, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '2zdCtvku47tZOXv6WYt5az', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000b27323203f03e8f921b62c7037cc', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00001e0223203f03e8f921b62c7037cc', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000485123203f03e8f921b62c7037cc', 'width': 64, }), ]), - 'name': 'Thin Mint Zyns - Safety Third 114', - 'release_date': '2024-06-20', + 'name': 'Underline', + 'release_date': '2014-11-03', 'release_date_precision': , - 'uri': 'spotify:episode:2jALMGr63flWEdRl8NxvQR', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2731702, - 'episode_id': '0Rr3sI7wj3VaNQFPhalCVj', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj', - }), - 'href': 'https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj', - 'images': list([ + 'total_tracks': 3, + 'tracks': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 223346, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD', + }), + 'href': 'https://api.spotify.com/v1/tracks/6uM8rQRRzPmRZNKGYqpEkd', + 'is_local': False, + 'name': 'Are You Listening?', + 'track_id': '6uM8rQRRzPmRZNKGYqpEkd', + 'track_number': 1, + 'uri': 'spotify:track:6uM8rQRRzPmRZNKGYqpEkd', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 279240, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A', + }), + 'href': 'https://api.spotify.com/v1/tracks/5B2U6awRptWQ3l4OpjZdBG', + 'is_local': False, + 'name': 'In the Blind', + 'track_id': '5B2U6awRptWQ3l4OpjZdBG', + 'track_number': 2, + 'uri': 'spotify:track:5B2U6awRptWQ3l4OpjZdBG', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 263466, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG', + }), + 'href': 'https://api.spotify.com/v1/tracks/3rftx1PF0BezDK29VE125h', + 'is_local': False, + 'name': 'Override (A)', + 'track_id': '3rftx1PF0BezDK29VE125h', + 'track_number': 3, + 'uri': 'spotify:track:3rftx1PF0BezDK29VE125h', }), ]), - 'name': 'Live from Open Sauce 2023 - Safety Third 113', - 'release_date': '2024-06-13', - 'release_date_precision': , - 'uri': 'spotify:episode:0Rr3sI7wj3VaNQFPhalCVj', + 'uri': 'spotify:album:2zdCtvku47tZOXv6WYt5az', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5192437, - 'episode_id': '3XKOIVuGVzzEPNnlyz7PX4', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4', - }), - 'href': 'https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4', + }), + dict({ + 'added_at': datetime.datetime(2015, 1, 3, 12, 49, 56, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '7H1iZSYcbOjGCjR8eW9Kx3', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f50a1c8e82b7be0090914bb2', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f50a1c8e82b7be0090914bb2', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00004851f50a1c8e82b7be0090914bb2', 'width': 64, }), ]), - 'name': 'He Tried Hiring a Child Bartender - Safety Third 112', - 'release_date': '2024-06-06', + 'name': 'All the Lights in the Sky', + 'release_date': '2013-01-31', 'release_date_precision': , - 'uri': 'spotify:episode:3XKOIVuGVzzEPNnlyz7PX4', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4338191, - 'episode_id': '5qGMPBYEW5Izdm9W5F7PSb', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb', - }), - 'href': 'https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb', - 'images': list([ + 'total_tracks': 11, + 'tracks': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 64213, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL', + }), + 'href': 'https://api.spotify.com/v1/tracks/1Wn8W35A0VW3Tk2O1t3BNd', + 'is_local': False, + 'name': 'System;Start', + 'track_id': '1Wn8W35A0VW3Tk2O1t3BNd', + 'track_number': 1, + 'uri': 'spotify:track:1Wn8W35A0VW3Tk2O1t3BNd', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 286200, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5gUhgCZwqSyspR7alzGTmL', + }), + 'href': 'https://api.spotify.com/v1/tracks/5gUhgCZwqSyspR7alzGTmL', + 'is_local': False, + 'name': 'Vectors', + 'track_id': '5gUhgCZwqSyspR7alzGTmL', + 'track_number': 2, + 'uri': 'spotify:track:5gUhgCZwqSyspR7alzGTmL', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 220920, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0A8gZrdgGCar7LYflX8R0h', + }), + 'href': 'https://api.spotify.com/v1/tracks/0A8gZrdgGCar7LYflX8R0h', + 'is_local': False, + 'name': 'Euphemia', + 'track_id': '0A8gZrdgGCar7LYflX8R0h', + 'track_number': 3, + 'uri': 'spotify:track:0A8gZrdgGCar7LYflX8R0h', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 204866, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw', + }), + 'href': 'https://api.spotify.com/v1/tracks/7ICQJPECy8842wCa6AfwCK', + 'is_local': False, + 'name': 'Knightmare/Frame', + 'track_id': '7ICQJPECy8842wCa6AfwCK', + 'track_number': 4, + 'uri': 'spotify:track:7ICQJPECy8842wCa6AfwCK', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 262493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU', + }), + 'href': 'https://api.spotify.com/v1/tracks/7cSMDMR2URe6p3qKcACXnm', + 'is_local': False, + 'name': 'Tokyo House Party', + 'track_id': '7cSMDMR2URe6p3qKcACXnm', + 'track_number': 5, + 'uri': 'spotify:track:7cSMDMR2URe6p3qKcACXnm', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + dict({ + 'artist_id': '292ZlwqNqc8lbEvzYN82Ey', + 'name': 'Beckii Cruel', + 'uri': 'spotify:artist:292ZlwqNqc8lbEvzYN82Ey', + }), + ]), + 'disc_number': 1, + 'duration_ms': 319386, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb', + }), + 'href': 'https://api.spotify.com/v1/tracks/028eHoODO39uXKd2UGYq4t', + 'is_local': False, + 'name': 'Shi No Barado (feat. Beckii Cruel)', + 'track_id': '028eHoODO39uXKd2UGYq4t', + 'track_number': 6, + 'uri': 'spotify:track:028eHoODO39uXKd2UGYq4t', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 201626, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs', + }), + 'href': 'https://api.spotify.com/v1/tracks/77L7IkqBv11gA6HNtY6Cka', + 'is_local': False, + 'name': 'Cassandra (Pt II)', + 'track_id': '77L7IkqBv11gA6HNtY6Cka', + 'track_number': 7, + 'uri': 'spotify:track:77L7IkqBv11gA6HNtY6Cka', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 274133, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0', + }), + 'href': 'https://api.spotify.com/v1/tracks/0f6m0HRlcGLGveWg3de4zG', + 'is_local': False, + 'name': 'The Strays', + 'track_id': '0f6m0HRlcGLGveWg3de4zG', + 'track_number': 8, + 'uri': 'spotify:track:0f6m0HRlcGLGveWg3de4zG', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 234080, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE', + }), + 'href': 'https://api.spotify.com/v1/tracks/0BmV8OlrvNbLbu9ZmIpdvg', + 'is_local': False, + 'name': 'Dream & Reality', + 'track_id': '0BmV8OlrvNbLbu9ZmIpdvg', + 'track_number': 9, + 'uri': 'spotify:track:0BmV8OlrvNbLbu9ZmIpdvg', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 258613, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj', + }), + 'href': 'https://api.spotify.com/v1/tracks/2eG2Ey9FdvvVpinePpIlCV', + 'is_local': False, + 'name': 'Heaven-Piercing Giga Drill', + 'track_id': '2eG2Ey9FdvvVpinePpIlCV', + 'track_number': 10, + 'uri': 'spotify:track:2eG2Ey9FdvvVpinePpIlCV', + }), + dict({ + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + ]), + 'disc_number': 1, + 'duration_ms': 671160, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN', + }), + 'href': 'https://api.spotify.com/v1/tracks/52vB77kTjHlxHc6utDMIMI', + 'is_local': False, + 'name': 'Bōsōzoku Symphonic', + 'track_id': '52vB77kTjHlxHc6utDMIMI', + 'track_number': 11, + 'uri': 'spotify:track:52vB77kTjHlxHc6utDMIMI', }), ]), - 'name': 'Ted Nivison Has a Disgusting Keyboard - Safety Third 111', - 'release_date': '2024-05-30', - 'release_date_precision': , - 'uri': 'spotify:episode:5qGMPBYEW5Izdm9W5F7PSb', + 'uri': 'spotify:album:7H1iZSYcbOjGCjR8eW9Kx3', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5367528, - 'episode_id': '7G5CGTUvtSpLP67O4cYAWq', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq', - }), - 'href': 'https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq', + }), + dict({ + 'added_at': datetime.datetime(1998, 1, 25, 15, 47, 12, tzinfo=datetime.timezone.utc), + 'album': dict({ + 'album_id': '1sSoDKCPSMPQ8CMAWYUabB', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f21eb2f7f39a49ade2daca2c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f21eb2f7f39a49ade2daca2c', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67616d00004851f21eb2f7f39a49ade2daca2c', 'width': 64, }), ]), - 'name': 'The Worst Parts of Dating a Mad Scientist - Safety Third 110', - 'release_date': '2024-05-23', + 'name': 'USB', + 'release_date': '2022-01-18', 'release_date_precision': , - 'uri': 'spotify:episode:7G5CGTUvtSpLP67O4cYAWq', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 6502817, - 'episode_id': '3cJk5Cfvpkrdf9hxY5Hi3p', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p', - }), - 'href': 'https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p', - 'images': list([ + 'total_tracks': 18, + 'tracks': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '79NDEw5QWlDC9KaIbogNhS', + 'name': 'Plaqueboymax', + 'uri': 'spotify:artist:79NDEw5QWlDC9KaIbogNhS', + }), + ]), + 'disc_number': 1, + 'duration_ms': 165857, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n', + }), + 'href': 'https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP', + 'is_local': False, + 'name': 'Victory Lap', + 'track_id': '1lbNgoJ5iMrMluCyhI4OQP', + 'track_number': 1, + 'uri': 'spotify:track:1lbNgoJ5iMrMluCyhI4OQP', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '0aIpJqqTLf683ojWREc5lg', + 'name': 'Joy Orbison', + 'uri': 'spotify:artist:0aIpJqqTLf683ojWREc5lg', + }), + dict({ + 'artist_id': '6icQOAFXDZKsumw3YXyusw', + 'name': 'Lil Yachty', + 'uri': 'spotify:artist:6icQOAFXDZKsumw3YXyusw', + }), + dict({ + 'artist_id': '1RyvyyTE3xzB2ZywiAwp0i', + 'name': 'Future', + 'uri': 'spotify:artist:1RyvyyTE3xzB2ZywiAwp0i', + }), + dict({ + 'artist_id': '699OTQXzgjhIYAHMy9RyPD', + 'name': 'Playboi Carti', + 'uri': 'spotify:artist:699OTQXzgjhIYAHMy9RyPD', + }), + ]), + 'disc_number': 1, + 'duration_ms': 246909, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj', + }), + 'href': 'https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9', + 'is_local': False, + 'name': 'flex fm (freddit)', + 'track_id': '7qpZh0yIXeZzXZk3mE6Fj9', + 'track_number': 2, + 'uri': 'spotify:track:7qpZh0yIXeZzXZk3mE6Fj9', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', + 'name': 'Anderson .Paak', + 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + }), + dict({ + 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', + 'name': 'CHIKA', + 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + }), + dict({ + 'artist_id': '4VsVLz3Uw6d0fdM6gFtLfo', + 'name': 'MESSIE', + 'uri': 'spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219310, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre', + }), + 'href': 'https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV', + 'is_local': False, + 'name': 'places to be - MESSIE remix', + 'track_id': '73s1r3Jfn8pqXJv9ahKfNV', + 'track_number': 3, + 'uri': 'spotify:track:73s1r3Jfn8pqXJv9ahKfNV', }), - ]), - 'name': 'Confronting His Old Boss - Safety Third 109', - 'release_date': '2024-05-16', - 'release_date_precision': , - 'uri': 'spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5386488, - 'episode_id': '0OV7VAkyKacrcmBEsBtyWJ', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0OV7VAkyKacrcmBEsBtyWJ', - }), - 'href': 'https://api.spotify.com/v1/episodes/0OV7VAkyKacrcmBEsBtyWJ', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1fDV6gCETmlkCUugBxq59g', + 'name': 'Duoteque', + 'uri': 'spotify:artist:1fDV6gCETmlkCUugBxq59g', + }), + dict({ + 'artist_id': '2efrqekWSHlvhATD50AG3m', + 'name': 'Orion Sun', + 'uri': 'spotify:artist:2efrqekWSHlvhATD50AG3m', + }), + ]), + 'disc_number': 1, + 'duration_ms': 327508, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v', + }), + 'href': 'https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o', + 'is_local': False, + 'name': 'ItsNotREEAALLLLLLLL', + 'track_id': '2la8LWSxedRoulmz0UHE7o', + 'track_number': 4, + 'uri': 'spotify:track:2la8LWSxedRoulmz0UHE7o', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5zatdvej2AxogC5pbu2msR', + 'name': 'BERWYN', + 'uri': 'spotify:artist:5zatdvej2AxogC5pbu2msR', + }), + ]), + 'disc_number': 1, + 'duration_ms': 123607, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr', + }), + 'href': 'https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv', + 'is_local': False, + 'name': 'BerwynGesaffNeighbours', + 'track_id': '59DFl0vh8FoBmmD43ruznv', + 'track_number': 5, + 'uri': 'spotify:track:59DFl0vh8FoBmmD43ruznv', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', + 'name': 'Anderson .Paak', + 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + }), + dict({ + 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', + 'name': 'CHIKA', + 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + }), + dict({ + 'artist_id': '6b0TSaLAeLXilOPoId8udE', + 'name': 'CLIPZ', + 'uri': 'spotify:artist:6b0TSaLAeLXilOPoId8udE', + }), + ]), + 'disc_number': 1, + 'duration_ms': 184827, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY', + }), + 'href': 'https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK', + 'is_local': False, + 'name': 'places to be - CLIPZ remix', + 'track_id': '4n4VUdx6tr7MylOySvDhPK', + 'track_number': 6, + 'uri': 'spotify:track:4n4VUdx6tr7MylOySvDhPK', }), - ]), - 'name': 'Is the Nuclear Power in Fallout Realistic? ft. Kyle Hill - Safety Third 108', - 'release_date': '2024-05-09', - 'release_date_precision': , - 'uri': 'spotify:episode:0OV7VAkyKacrcmBEsBtyWJ', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5431056, - 'episode_id': '6QzBsbaokkbGKee5Y19KHR', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6QzBsbaokkbGKee5Y19KHR', - }), - 'href': 'https://api.spotify.com/v1/episodes/6QzBsbaokkbGKee5Y19KHR', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '6icQOAFXDZKsumw3YXyusw', + 'name': 'Lil Yachty', + 'uri': 'spotify:artist:6icQOAFXDZKsumw3YXyusw', + }), + dict({ + 'artist_id': '01PnN11ovfen6xUOHfNpn3', + 'name': 'Overmono', + 'uri': 'spotify:artist:01PnN11ovfen6xUOHfNpn3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 274925, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5', + }), + 'href': 'https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj', + 'is_local': False, + 'name': 'stayinit', + 'track_id': '2iUMh8RrpUiakMnneanOPj', + 'track_number': 7, + 'uri': 'spotify:track:2iUMh8RrpUiakMnneanOPj', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5SXuuuRpukkTvsLuUknva1', + 'name': 'Baby Keem', + 'uri': 'spotify:artist:5SXuuuRpukkTvsLuUknva1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 222784, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h', + }), + 'href': 'https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c', + 'is_local': False, + 'name': 'leavemealone', + 'track_id': '2tSP95IyUkPv5Wj83xWh1c', + 'track_number': 8, + 'uri': 'spotify:track:2tSP95IyUkPv5Wj83xWh1c', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5he5w2lnU9x7JFhnwcekXX', + 'name': 'Skrillex', + 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', + }), + dict({ + 'artist_id': '7Eu1txygG6nJttLHbZdQOh', + 'name': 'Four Tet', + 'uri': 'spotify:artist:7Eu1txygG6nJttLHbZdQOh', + }), + ]), + 'disc_number': 1, + 'duration_ms': 319963, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD', + }), + 'href': 'https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI', + 'is_local': False, + 'name': 'Baby again..', + 'track_id': '6EpIDF3GW1dRBujSp4bJxI', + 'track_number': 9, + 'uri': 'spotify:track:6EpIDF3GW1dRBujSp4bJxI', }), - ]), - 'name': 'What’s the Fastest Way to Melt Butter - Safety Third 107', - 'release_date': '2024-05-02', - 'release_date_precision': , - 'uri': 'spotify:episode:6QzBsbaokkbGKee5Y19KHR', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5152800, - 'episode_id': '4gl883BUIWA8KolJGzefMp', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4gl883BUIWA8KolJGzefMp', - }), - 'href': 'https://api.spotify.com/v1/episodes/4gl883BUIWA8KolJGzefMp', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '5he5w2lnU9x7JFhnwcekXX', + 'name': 'Skrillex', + 'uri': 'spotify:artist:5he5w2lnU9x7JFhnwcekXX', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '07CimrZi5vs9iEao47TNQ4', + 'name': 'Flowdan', + 'uri': 'spotify:artist:07CimrZi5vs9iEao47TNQ4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 146571, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV', + }), + 'href': 'https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD', + 'is_local': False, + 'name': 'Rumble', + 'track_id': '74fmYjFwt9CqEFAh8ybeBD', + 'track_number': 10, + 'uri': 'spotify:track:74fmYjFwt9CqEFAh8ybeBD', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '1h6Cn3P4NGzXbaXidqURXs', + 'name': 'Swedish House Mafia', + 'uri': 'spotify:artist:1h6Cn3P4NGzXbaXidqURXs', + }), + dict({ + 'artist_id': '1RyvyyTE3xzB2ZywiAwp0i', + 'name': 'Future', + 'uri': 'spotify:artist:1RyvyyTE3xzB2ZywiAwp0i', + }), + ]), + 'disc_number': 1, + 'duration_ms': 267946, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1', + }), + 'href': 'https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe', + 'is_local': False, + 'name': 'Turn On The Lights again.. (feat. Future)', + 'track_id': '2E6peXBRbjUmGkkR3dUNGe', + 'track_number': 11, + 'uri': 'spotify:track:2E6peXBRbjUmGkkR3dUNGe', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 198805, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy', + }), + 'href': 'https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c', + 'is_local': False, + 'name': 'Jungle', + 'track_id': '3BKkroNdTKfNijLG9oHW7c', + 'track_number': 12, + 'uri': 'spotify:track:3BKkroNdTKfNijLG9oHW7c', }), - ]), - 'name': 'Science Used to Be Weird - Safety Third 106', - 'release_date': '2024-04-25', - 'release_date_precision': , - 'uri': 'spotify:episode:4gl883BUIWA8KolJGzefMp', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3784803, - 'episode_id': '0am1OCbZW8AbxRI8eqHVhc', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0am1OCbZW8AbxRI8eqHVhc', - }), - 'href': 'https://api.spotify.com/v1/episodes/0am1OCbZW8AbxRI8eqHVhc', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5RMLpCv3ic2KtGnqJ7eMG4', + 'name': 'I. JORDAN', + 'uri': 'spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 385074, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a', + }), + 'href': 'https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z', + 'is_local': False, + 'name': 'Admit It (u dont want 2)', + 'track_id': '7c0DlxLjlEEK2VKQJIIU1Z', + 'track_number': 13, + 'uri': 'spotify:track:7c0DlxLjlEEK2VKQJIIU1Z', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', + 'name': 'Romy', + 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + }), + dict({ + 'artist_id': '0pkLgeB9j465x1QB2kRoy4', + 'name': 'HAAi', + 'uri': 'spotify:artist:0pkLgeB9j465x1QB2kRoy4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 288348, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R', + }), + 'href': 'https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX', + 'is_local': False, + 'name': 'Lights Out', + 'track_id': '1RlBD9ays0WfNHSVzxHiKX', + 'track_number': 14, + 'uri': 'spotify:track:1RlBD9ays0WfNHSVzxHiKX', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2p1fiYHYiXz9qi0JJyxBzN', + 'name': 'Skepta', + 'uri': 'spotify:artist:2p1fiYHYiXz9qi0JJyxBzN', + }), + dict({ + 'artist_id': '79NDEw5QWlDC9KaIbogNhS', + 'name': 'Plaqueboymax', + 'uri': 'spotify:artist:79NDEw5QWlDC9KaIbogNhS', + }), + dict({ + 'artist_id': '6fxyWrfmjcbj5d12gXeiNV', + 'name': 'Denzel Curry', + 'uri': 'spotify:artist:6fxyWrfmjcbj5d12gXeiNV', + }), + dict({ + 'artist_id': '4nVa6XlBFlIkF6msW57PHp', + 'name': 'Hanumankind', + 'uri': 'spotify:artist:4nVa6XlBFlIkF6msW57PHp', + }), + dict({ + 'artist_id': '3BAgmPNIK5IJl7zMK1wvMA', + 'name': 'That Mexican OT', + 'uri': 'spotify:artist:3BAgmPNIK5IJl7zMK1wvMA', + }), + dict({ + 'artist_id': '6bwkMlweHsBCpI2a0C5nnN', + 'name': 'D Double E', + 'uri': 'spotify:artist:6bwkMlweHsBCpI2a0C5nnN', + }), + dict({ + 'artist_id': '7xqIp1044Z2vd9v9ZphjLa', + 'name': 'LYNY', + 'uri': 'spotify:artist:7xqIp1044Z2vd9v9ZphjLa', + }), + ]), + 'disc_number': 1, + 'duration_ms': 344571, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k', + }), + 'href': 'https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg', + 'is_local': False, + 'name': 'Victory Lap Five', + 'track_id': '3bsAYGy83D6sl1a5otGuUg', + 'track_number': 15, + 'uri': 'spotify:track:3bsAYGy83D6sl1a5otGuUg', }), - ]), - 'name': 'Bill Nye Stole Your Mom - Safety Third 105', - 'release_date': '2024-04-18', - 'release_date_precision': , - 'uri': 'spotify:episode:0am1OCbZW8AbxRI8eqHVhc', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 6872842, - 'episode_id': '6EDbQAIcNbDEIylf2LADzi', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6EDbQAIcNbDEIylf2LADzi', - }), - 'href': 'https://api.spotify.com/v1/episodes/6EDbQAIcNbDEIylf2LADzi', - 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '5SXuuuRpukkTvsLuUknva1', + 'name': 'Baby Keem', + 'uri': 'spotify:artist:5SXuuuRpukkTvsLuUknva1', + }), + dict({ + 'artist_id': '7BMR0fwtEvzGtK4rNGdoiQ', + 'name': 'Nia Archives', + 'uri': 'spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ', + }), + ]), + 'disc_number': 1, + 'duration_ms': 179441, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5', + }), + 'href': 'https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK', + 'is_local': False, + 'name': 'leavemealone - Nia Archives Remix', + 'track_id': '5u84pGbxFomiV66Uk2kOQK', + 'track_number': 16, + 'uri': 'spotify:track:5u84pGbxFomiV66Uk2kOQK', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '2OaHYHb2XcFPvqL3VsyPzU', + 'name': 'Rico Nasty', + 'uri': 'spotify:artist:2OaHYHb2XcFPvqL3VsyPzU', + }), + ]), + 'disc_number': 1, + 'duration_ms': 213133, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv', + }), + 'href': 'https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms', + 'is_local': False, + 'name': 'Jungle - Rico Nasty Remix', + 'track_id': '3ycgBFWvzxjLtY2YJuQMms', + 'track_number': 17, + 'uri': 'spotify:track:3ycgBFWvzxjLtY2YJuQMms', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', + 'name': 'Romy', + 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + }), + dict({ + 'artist_id': '0pkLgeB9j465x1QB2kRoy4', + 'name': 'HAAi', + 'uri': 'spotify:artist:0pkLgeB9j465x1QB2kRoy4', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 375087, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA', + }), + 'href': 'https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ', + 'is_local': False, + 'name': 'Lights Out (feat. Fred again..) - HAAi Remix', + 'track_id': '5HZJuJphtUWc6wuTHt50oQ', + 'track_number': 18, + 'uri': 'spotify:track:5HZJuJphtUWc6wuTHt50oQ', }), ]), - 'name': 'Trolling Chevron with DougDoug - Safety Third 104', - 'release_date': '2024-04-11', - 'release_date_precision': , - 'uri': 'spotify:episode:6EDbQAIcNbDEIylf2LADzi', + 'uri': 'spotify:album:1sSoDKCPSMPQ8CMAWYUabB', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 6336360, - 'episode_id': '0XKM3iy8JuMpaW5ohU3zUu', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0XKM3iy8JuMpaW5ohU3zUu', + }), + ]) +# --- +# name: test_get_saved_audiobooks + list([ + dict({ + 'audiobook_id': '58cFIY8IT7yGqR3kHnKqzV', + 'authors': list([ + dict({ + 'name': 'Anya Niewierra', }), - 'href': 'https://api.spotify.com/v1/episodes/0XKM3iy8JuMpaW5ohU3zUu', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'How Allen Sneaks Knives Past TSA - Safety Third 103', - 'release_date': '2024-04-04', - 'release_date_precision': , - 'uri': 'spotify:episode:0XKM3iy8JuMpaW5ohU3zUu', + ]), + 'description': 'Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger', + 'edition': 'Unabridged', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4120560, - 'episode_id': '2LQerIBzWHRSVuRFLYLC0s', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2LQerIBzWHRSVuRFLYLC0s', + 'html_description': 'Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e', + 'width': 640, }), - 'href': 'https://api.spotify.com/v1/episodes/2LQerIBzWHRSVuRFLYLC0s', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Mythbusters vs Killdozer - Safety Third 102', - 'release_date': '2024-03-28', - 'release_date_precision': , - 'uri': 'spotify:episode:2LQerIBzWHRSVuRFLYLC0s', + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e', + 'width': 64, + }), + ]), + 'languages': list([ + 'nl', + ]), + 'name': 'De nomade', + 'narrators': list([ + dict({ + 'name': 'Nienke Brinkhuis', + }), + dict({ + 'name': 'Cees van Ede', + }), + dict({ + 'name': 'Mattijn Hartemink', + }), + ]), + 'publisher': 'Anya Niewierra', + 'total_chapters': 49, + 'type': 'audiobook', + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', + }), + dict({ + 'audiobook_id': '7iHfbu1YPACw6oZPAFJtqe', + 'authors': list([ + dict({ + 'name': 'Frank Herbert', + }), + ]), + 'description': "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + 'edition': 'Unabridged', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4992470, - 'episode_id': '0Ybbd43X9KtiZKL3I2f6df', - 'explicit': False, + 'html_description': 'Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', + 'width': 64, + }), + ]), + 'languages': list([ + 'en', + ]), + 'name': 'Dune: Book One in the Dune Chronicles', + 'narrators': list([ + dict({ + 'name': 'Scott Brick', + }), + dict({ + 'name': 'Orlagh Cassidy', + }), + dict({ + 'name': 'Euan Morton', + }), + dict({ + 'name': 'Ilyana Kadushin', + }), + dict({ + 'name': 'Simon Vance', + }), + ]), + 'publisher': 'Frank Herbert', + 'total_chapters': 52, + 'type': 'audiobook', + 'uri': 'spotify:show:7iHfbu1YPACw6oZPAFJtqe', + }), + ]) +# --- +# name: test_get_saved_episodes + list([ + dict({ + 'added_at': datetime.datetime(2021, 4, 1, 23, 21, 46, tzinfo=datetime.timezone.utc), + 'episode': dict({ + 'description': "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com\xa0Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster\xa0For all your Taskmaster goodies visit\xa0www.taskmasterstore.com\xa0\xa0Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", + 'duration_ms': 3724303, + 'episode_id': '0x25dVaCtjWMmcjDJyuMM5', + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0Ybbd43X9KtiZKL3I2f6df', + 'spotify': 'https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5', }), - 'href': 'https://api.spotify.com/v1/episodes/0Ybbd43X9KtiZKL3I2f6df', + 'href': 'https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131', 'width': 64, }), ]), - 'name': 'Uncle Roger Roasts - Safety Third 101', - 'release_date': '2024-03-21', + 'name': 'Ep 26. Katherine Parkinson - S11 Ep.3', + 'release_date': '2021-04-01', 'release_date_precision': , - 'uri': 'spotify:episode:0Ybbd43X9KtiZKL3I2f6df', + 'show': dict({ + 'description': 'This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.', + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg', + }), + 'href': 'https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2', + 'width': 64, + }), + ]), + 'name': 'Taskmaster The Podcast', + 'show_id': '4BZc9sOdNilJJ8irsuOzdg', + 'total_episodes': 255, + 'uri': 'spotify:show:4BZc9sOdNilJJ8irsuOzdg', + }), + 'type': , + 'uri': 'spotify:episode:0x25dVaCtjWMmcjDJyuMM5', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5745263, - 'episode_id': '4mcoLIatd3aofPnkTcfB2a', - 'explicit': False, + }), + ]) +# --- +# name: test_get_saved_shows + list([ + dict({ + 'added_at': datetime.datetime(2025, 5, 7, 18, 5, 23, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4mcoLIatd3aofPnkTcfB2a', + 'spotify': 'https://open.spotify.com/show/21YVDAzO2H21WCndbowuRk', }), - 'href': 'https://api.spotify.com/v1/episodes/4mcoLIatd3aofPnkTcfB2a', + 'href': 'https://api.spotify.com/v1/shows/21YVDAzO2H21WCndbowuRk', 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6765630000f68d1e0cd69bb20b9b3dfe26b37d', 'width': 64, }), - ]), - 'name': 'We Kidnapped NileRed - Safety Third 100', - 'release_date': '2024-03-07', - 'release_date_precision': , - 'uri': 'spotify:episode:4mcoLIatd3aofPnkTcfB2a', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3589056, - 'episode_id': '1ghUYVMZwHiManmG68lbwP', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1ghUYVMZwHiManmG68lbwP', - }), - 'href': 'https://api.spotify.com/v1/episodes/1ghUYVMZwHiManmG68lbwP', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f1e0cd69bb20b9b3dfe26b37d', 'width': 300, }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Making Salt Out of Blood - Safety Third 99', - 'release_date': '2024-02-29', - 'release_date_precision': , - 'uri': 'spotify:episode:1ghUYVMZwHiManmG68lbwP', - }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4496928, - 'episode_id': '5Rbsn0a8lCjrXMvOnMNkHb', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5Rbsn0a8lCjrXMvOnMNkHb', - }), - 'href': 'https://api.spotify.com/v1/episodes/5Rbsn0a8lCjrXMvOnMNkHb', - 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6765630000ba8a1e0cd69bb20b9b3dfe26b37d', 'width': 640, }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), ]), - 'name': 'Eating a Giant Ostrich Egg - Safety Third 98', - 'release_date': '2024-02-22', - 'release_date_precision': , - 'uri': 'spotify:episode:5Rbsn0a8lCjrXMvOnMNkHb', + 'name': 'Open Source Stories', + 'show_id': '21YVDAzO2H21WCndbowuRk', + 'total_episodes': 29, + 'uri': 'spotify:show:21YVDAzO2H21WCndbowuRk', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5378591, - 'episode_id': '0T9S0GAx8XMrRcOhY93ywy', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2024, 10, 20, 20, 20, 54, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0T9S0GAx8XMrRcOhY93ywy', + 'spotify': 'https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV', }), - 'href': 'https://api.spotify.com/v1/episodes/0T9S0GAx8XMrRcOhY93ywy', + 'href': 'https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e', + 'width': 640, }), ]), - 'name': 'We’re in New Zealand - Safety Third 97', - 'release_date': '2024-02-16', - 'release_date_precision': , - 'uri': 'spotify:episode:0T9S0GAx8XMrRcOhY93ywy', + 'name': 'De nomade', + 'show_id': '58cFIY8IT7yGqR3kHnKqzV', + 'total_episodes': 49, + 'uri': 'spotify:show:58cFIY8IT7yGqR3kHnKqzV', }), - dict({ - 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4408398, - 'episode_id': '402Qeru3caMcL8EF4fKVGd', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2024, 10, 20, 20, 19, 29, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/402Qeru3caMcL8EF4fKVGd', + 'spotify': 'https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe', }), - 'href': 'https://api.spotify.com/v1/episodes/402Qeru3caMcL8EF4fKVGd', + 'href': 'https://api.spotify.com/v1/shows/7iHfbu1YPACw6oZPAFJtqe', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314', + 'width': 640, }), ]), - 'name': '9 Boys 1 House - Safety Third 96', - 'release_date': '2024-02-08', - 'release_date_precision': , - 'uri': 'spotify:episode:402Qeru3caMcL8EF4fKVGd', + 'name': 'Dune: Book One in the Dune Chronicles', + 'show_id': '7iHfbu1YPACw6oZPAFJtqe', + 'total_episodes': 52, + 'uri': 'spotify:show:7iHfbu1YPACw6oZPAFJtqe', }), - dict({ - 'description': "Jabrils' Site: https://www.haxware.io/ubearlyPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - 'duration_ms': 4754016, - 'episode_id': '0YFLBqCKdPEhaz7RGdCC71', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2023, 8, 10, 8, 17, 9, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.Join us everywhere: linktr.ee/ToniAndRyan Hosted on Acast. See acast.com/privacy for more information.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0YFLBqCKdPEhaz7RGdCC71', + 'spotify': 'https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt', }), - 'href': 'https://api.spotify.com/v1/episodes/0YFLBqCKdPEhaz7RGdCC71', + 'href': 'https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b', + 'width': 640, }), ]), - 'name': 'We’re Obsessed With Cookie Clicker - Safety Third 95', - 'release_date': '2024-02-02', - 'release_date_precision': , - 'uri': 'spotify:episode:0YFLBqCKdPEhaz7RGdCC71', + 'name': 'Toni and Ryan', + 'show_id': '5OzkclFjD6iAjtAuo7aIYt', + 'total_episodes': 1036, + 'uri': 'spotify:show:5OzkclFjD6iAjtAuo7aIYt', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 6086582, - 'episode_id': '6n1pJAaVA5BZeiQeGO5ERh', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2022, 9, 15, 23, 48, 23, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6n1pJAaVA5BZeiQeGO5ERh', + 'spotify': 'https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2', }), - 'href': 'https://api.spotify.com/v1/episodes/6n1pJAaVA5BZeiQeGO5ERh', + 'href': 'https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c', + 'width': 640, }), ]), - 'name': 'Becoming Radioactive With Hank Green - Safety Third 94', - 'release_date': '2024-01-25', - 'release_date_precision': , - 'uri': 'spotify:episode:6n1pJAaVA5BZeiQeGO5ERh', + 'name': 'BLAST Push To Talk', + 'show_id': '6XYRres0KZtnTqKcLavWR2', + 'total_episodes': 19, + 'uri': 'spotify:show:6XYRres0KZtnTqKcLavWR2', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5252597, - 'episode_id': '4QokmiQDvlRx6NGKNEW9xZ', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2022, 8, 14, 11, 59, 6, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': "Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.Get awesome rewards & support the show: patreon.com/falloutlorecastWatch live at youtube.com/c/robotsradioCheck out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zEAdvertise with us & business inquiries: robotsnetwork@gmail.com", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4QokmiQDvlRx6NGKNEW9xZ', + 'spotify': 'https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db', }), - 'href': 'https://api.spotify.com/v1/episodes/4QokmiQDvlRx6NGKNEW9xZ', + 'href': 'https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d29e54f611da80fb306bf5321', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f29e54f611da80fb306bf5321', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a29e54f611da80fb306bf5321', + 'width': 640, }), ]), - 'name': 'Micha - Safety Third 93', - 'release_date': '2024-01-18', - 'release_date_precision': , - 'uri': 'spotify:episode:4QokmiQDvlRx6NGKNEW9xZ', + 'name': 'Fallout Lorecast - The Fallout Video Game & TV Lore Podcast', + 'show_id': '0e30iIgSffe6xJhFKe35Db', + 'total_episodes': 395, + 'uri': 'spotify:show:0e30iIgSffe6xJhFKe35Db', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3821113, - 'episode_id': '0aA6a1o0GlNjp8hvBBEWp2', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2021, 3, 7, 14, 12, 29, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0aA6a1o0GlNjp8hvBBEWp2', + 'spotify': 'https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg', }), - 'href': 'https://api.spotify.com/v1/episodes/0aA6a1o0GlNjp8hvBBEWp2', + 'href': 'https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2', + 'width': 640, }), ]), - 'name': 'Hacking Into Billionaire Discord Groups - Safety Third 92', - 'release_date': '2024-01-11', - 'release_date_precision': , - 'uri': 'spotify:episode:0aA6a1o0GlNjp8hvBBEWp2', + 'name': 'Taskmaster The Podcast', + 'show_id': '4BZc9sOdNilJJ8irsuOzdg', + 'total_episodes': 255, + 'uri': 'spotify:show:4BZc9sOdNilJJ8irsuOzdg', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5902236, - 'episode_id': '24DaIDj7RU30dBwi2AlVVz', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2021, 3, 6, 0, 14, 9, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/24DaIDj7RU30dBwi2AlVVz', + 'spotify': 'https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq', }), - 'href': 'https://api.spotify.com/v1/episodes/24DaIDj7RU30dBwi2AlVVz', + 'href': 'https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c', + 'width': 640, }), ]), - 'name': 'Building a Sexy Robot Therapist - Safety Third 91', - 'release_date': '2024-01-04', - 'release_date_precision': , - 'uri': 'spotify:episode:24DaIDj7RU30dBwi2AlVVz', + 'name': 'Off Menu with Ed Gamble and James Acaster', + 'show_id': '0azMejb7zrmAqctVsUSAdq', + 'total_episodes': 368, + 'uri': 'spotify:show:0azMejb7zrmAqctVsUSAdq', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4540003, - 'episode_id': '3jarlp7UfYZG5K1MVuOly9', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2021, 3, 6, 0, 13, 55, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3jarlp7UfYZG5K1MVuOly9', + 'spotify': 'https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV', }), - 'href': 'https://api.spotify.com/v1/episodes/3jarlp7UfYZG5K1MVuOly9', + 'href': 'https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758', + 'width': 640, }), ]), - 'name': 'Mythbusters Are Upset With Allen - Safety Third 90', - 'release_date': '2023-12-28', - 'release_date_precision': , - 'uri': 'spotify:episode:3jarlp7UfYZG5K1MVuOly9', + 'name': 'Ed Gamble & Matthew Crosby on Radio X', + 'show_id': '4CNsZjGkK371UAnyQgX9jV', + 'total_episodes': 358, + 'uri': 'spotify:show:4CNsZjGkK371UAnyQgX9jV', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3922680, - 'episode_id': '4ms1xU3AOGTPBqoOHU0krv', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2020, 12, 29, 1, 21, 38, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4ms1xU3AOGTPBqoOHU0krv', + 'spotify': 'https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ', }), - 'href': 'https://api.spotify.com/v1/episodes/4ms1xU3AOGTPBqoOHU0krv', + 'href': 'https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d59da2a4ed5cd8a5809f6904b', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f59da2a4ed5cd8a5809f6904b', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a59da2a4ed5cd8a5809f6904b', + 'width': 640, }), ]), - 'name': 'The Internet Is Cursed With Tom Scott - Safety Third 89', - 'release_date': '2023-12-21', - 'release_date_precision': , - 'uri': 'spotify:episode:4ms1xU3AOGTPBqoOHU0krv', + 'name': 'You Can Sit With Us', + 'show_id': '6xglolTDhKYA8OKyM8IgZQ', + 'total_episodes': 284, + 'uri': 'spotify:show:6xglolTDhKYA8OKyM8IgZQ', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3879209, - 'episode_id': '26T6rILJ0HfpXDLabPsmFF', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2020, 12, 29, 1, 21, 21, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': "The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!", 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/26T6rILJ0HfpXDLabPsmFF', + 'spotify': 'https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ', }), - 'href': 'https://api.spotify.com/v1/episodes/26T6rILJ0HfpXDLabPsmFF', + 'href': 'https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d403fd54e9434b88f53bddab3', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f403fd54e9434b88f53bddab3', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a403fd54e9434b88f53bddab3', + 'width': 640, }), ]), - 'name': 'Podcast in a Ball Pit - Safety Third 88', - 'release_date': '2023-12-14', - 'release_date_precision': , - 'uri': 'spotify:episode:26T6rILJ0HfpXDLabPsmFF', + 'name': 'The TryPod', + 'show_id': '3qCNuzujMoeNsMHp8c79dJ', + 'total_episodes': 353, + 'uri': 'spotify:show:3qCNuzujMoeNsMHp8c79dJ', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4298448, - 'episode_id': '4BwSypd7qt2yItrj4lQAzM', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2020, 11, 6, 13, 38, 49, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4BwSypd7qt2yItrj4lQAzM', + 'spotify': 'https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA', }), - 'href': 'https://api.spotify.com/v1/episodes/4BwSypd7qt2yItrj4lQAzM', + 'href': 'https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dd106b2a18dc9fa6f52fef9b1', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1fd106b2a18dc9fa6f52fef9b1', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ad106b2a18dc9fa6f52fef9b1', + 'width': 640, }), ]), - 'name': 'Trapped in a Room With a Combat Robot - Safety Third 87', - 'release_date': '2023-12-07', - 'release_date_precision': , - 'uri': 'spotify:episode:4BwSypd7qt2yItrj4lQAzM', + 'name': 'Office Ladies', + 'show_id': '3OHCFs84lqizjkL4C9bNTA', + 'total_episodes': 423, + 'uri': 'spotify:show:3OHCFs84lqizjkL4C9bNTA', }), - dict({ - 'description': 'Watch us fight our robot live at NHRL Havoc All-Stars, three pulsating nights of robot combat with NHRL stars.Livestream - https://bit.ly/WatchNHRLAllStarsTickets - https://bit.ly/HavocAllStarsTicketsDec 5th, 6th, 7th4pm-7pm PacificPatreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5365629, - 'episode_id': '5YYkQuJVOT6tKUJPTTUJDA', - 'explicit': False, + }), + dict({ + 'added_at': datetime.datetime(2020, 8, 20, 6, 52, 51, tzinfo=datetime.timezone.utc), + 'show': dict({ + 'description': 'Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.', 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5YYkQuJVOT6tKUJPTTUJDA', + 'spotify': 'https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI', }), - 'href': 'https://api.spotify.com/v1/episodes/5YYkQuJVOT6tKUJPTTUJDA', + 'href': 'https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI', 'images': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d16a7cc88bc0bbef0aed05f4f', + 'width': 64, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'url': 'https://i.scdn.co/image/ab67656300005f1f16a7cc88bc0bbef0aed05f4f', 'width': 300, }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a16a7cc88bc0bbef0aed05f4f', + 'width': 640, }), ]), - 'name': 'Does Ball Lightning Actually Exist - Safety Third 86', - 'release_date': '2023-11-30', - 'release_date_precision': , - 'uri': 'spotify:episode:5YYkQuJVOT6tKUJPTTUJDA', + 'name': 'Wat een Week!', + 'show_id': '6AeemTu3AwFDGkM50OtnbI', + 'total_episodes': 477, + 'uri': 'spotify:show:6AeemTu3AwFDGkM50OtnbI', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5767653, - 'episode_id': '2xhUEr1zUZVtjHnd4xVLaC', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2xhUEr1zUZVtjHnd4xVLaC', + }), + ]) +# --- +# name: test_get_saved_tracks + list([ + dict({ + 'added_at': datetime.datetime(2026, 2, 23, 13, 28, 26, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1X0ak6iQZOYqdVXzj8Tfbz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d', + 'width': 64, + }), + ]), + 'name': 'Cold Silver', + 'release_date': '2025-10-08', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:1X0ak6iQZOYqdVXzj8Tfbz', }), - 'href': 'https://api.spotify.com/v1/episodes/2xhUEr1zUZVtjHnd4xVLaC', - 'images': list([ + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', }), + ]), + 'disc_number': 1, + 'duration_ms': 222242, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv', + 'is_local': False, + 'name': 'Cold Silver', + 'track_id': '0Y0PdrwwWtYTFhCY5Kj0iv', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 18, 23, 33, 21, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6voJTR0ZT84lekqx3gyZ2M', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2GgySUiN0AJwFJLdZCE9Ce', + 'name': 'Lolita KompleX', + 'uri': 'spotify:artist:2GgySUiN0AJwFJLdZCE9Ce', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2737be5c309088b465e688dd4e5', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e027be5c309088b465e688dd4e5', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048517be5c309088b465e688dd4e5', + 'width': 64, + }), + ]), + 'name': 'Escapism', + 'release_date': '2019-07-05', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:6voJTR0ZT84lekqx3gyZ2M', + }), + 'artists': list([ dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artist_id': '2GgySUiN0AJwFJLdZCE9Ce', + 'name': 'Lolita KompleX', + 'uri': 'spotify:artist:2GgySUiN0AJwFJLdZCE9Ce', }), + ]), + 'disc_number': 1, + 'duration_ms': 181039, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3TaqQSf0dmZNLen5ogqUH7', + }), + 'href': 'https://api.spotify.com/v1/tracks/3TaqQSf0dmZNLen5ogqUH7', + 'is_local': False, + 'name': 'Dystopia', + 'track_id': '3TaqQSf0dmZNLen5ogqUH7', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:3TaqQSf0dmZNLen5ogqUH7', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 17, 11, 44, 29, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3Qabstvdx4TfWujTzy5Gee', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3CjlHNtplJyTf9npxaPl5w', + 'name': 'CHVRCHES', + 'uri': 'spotify:artist:3CjlHNtplJyTf9npxaPl5w', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a425e7a03d90b49694716fba', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a425e7a03d90b49694716fba', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a425e7a03d90b49694716fba', + 'width': 64, + }), + ]), + 'name': 'Such Great Heights [From "Tell Me Lies (Season 3)"]', + 'release_date': '2026-02-17', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3Qabstvdx4TfWujTzy5Gee', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '3CjlHNtplJyTf9npxaPl5w', + 'name': 'CHVRCHES', + 'uri': 'spotify:artist:3CjlHNtplJyTf9npxaPl5w', }), ]), - 'name': 'Living Off Grid in LA - Safety Third 85', - 'release_date': '2023-11-23', - 'release_date_precision': , - 'uri': 'spotify:episode:2xhUEr1zUZVtjHnd4xVLaC', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5213910, - 'episode_id': '3MZaSUfsw9fxo6pGlgdIYS', + 'disc_number': 1, + 'duration_ms': 267976, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3MZaSUfsw9fxo6pGlgdIYS', + 'spotify': 'https://open.spotify.com/track/2UJ5jlXlRkBx4dyVGIEGc0', }), - 'href': 'https://api.spotify.com/v1/episodes/3MZaSUfsw9fxo6pGlgdIYS', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Baiting Rats With Milk Duds - Safety Third 84', - 'release_date': '2023-11-17', - 'release_date_precision': , - 'uri': 'spotify:episode:3MZaSUfsw9fxo6pGlgdIYS', + 'href': 'https://api.spotify.com/v1/tracks/2UJ5jlXlRkBx4dyVGIEGc0', + 'is_local': False, + 'name': 'Such Great Heights - From "Tell Me Lies (Season 3)"', + 'track_id': '2UJ5jlXlRkBx4dyVGIEGc0', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2UJ5jlXlRkBx4dyVGIEGc0', }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4436532, - 'episode_id': '5VhmbKirE6qtU383S1eU5E', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5VhmbKirE6qtU383S1eU5E', + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 16, 22, 56, 14, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4TQyTokknRMto3WhTdodZK', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4EvbQBS99RXzFGGimAS3i9', + 'name': 'Blood Stain Child', + 'uri': 'spotify:artist:4EvbQBS99RXzFGGimAS3i9', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d396dcff123c425a196ac2f1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d396dcff123c425a196ac2f1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d396dcff123c425a196ac2f1', + 'width': 64, + }), + ]), + 'name': 'Epsilon', + 'release_date': '2011-06-30', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:4TQyTokknRMto3WhTdodZK', }), - 'href': 'https://api.spotify.com/v1/episodes/5VhmbKirE6qtU383S1eU5E', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '4EvbQBS99RXzFGGimAS3i9', + 'name': 'Blood Stain Child', + 'uri': 'spotify:artist:4EvbQBS99RXzFGGimAS3i9', }), ]), - 'name': 'Don’t Listen to YouTube Scientists - Safety Third 83', - 'release_date': '2023-11-09', - 'release_date_precision': , - 'uri': 'spotify:episode:5VhmbKirE6qtU383S1eU5E', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4394657, - 'episode_id': '0h89PlADXgTCT9vuaqYUmV', + 'disc_number': 1, + 'duration_ms': 261013, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0h89PlADXgTCT9vuaqYUmV', + 'spotify': 'https://open.spotify.com/track/0YyBaPhV9rGcDhs3dS7V6q', }), - 'href': 'https://api.spotify.com/v1/episodes/0h89PlADXgTCT9vuaqYUmV', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/0YyBaPhV9rGcDhs3dS7V6q', + 'is_local': False, + 'name': 'Stargazer', + 'track_id': '0YyBaPhV9rGcDhs3dS7V6q', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:0YyBaPhV9rGcDhs3dS7V6q', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 16, 22, 27, 42, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6VoutwXXcQBDbcZlmlYbxc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '16AVsBqzmIZTNHd0eX8VbK', + 'name': 'The Birthday Massacre', + 'uri': 'spotify:artist:16AVsBqzmIZTNHd0eX8VbK', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1', + 'width': 64, + }), + ]), + 'name': 'Pins And Needles', + 'release_date': '2010-09-14', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:6VoutwXXcQBDbcZlmlYbxc', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '16AVsBqzmIZTNHd0eX8VbK', + 'name': 'The Birthday Massacre', + 'uri': 'spotify:artist:16AVsBqzmIZTNHd0eX8VbK', }), ]), - 'name': 'Murdering Children for XP - Safety Third 82', - 'release_date': '2023-11-02', - 'release_date_precision': , - 'uri': 'spotify:episode:0h89PlADXgTCT9vuaqYUmV', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4442640, - 'episode_id': '1Foe3FZd7BvRs38I8dH7Sq', + 'disc_number': 1, + 'duration_ms': 229600, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1Foe3FZd7BvRs38I8dH7Sq', + 'spotify': 'https://open.spotify.com/track/7Gfg6IiBYzsq1XG9dm1oRG', }), - 'href': 'https://api.spotify.com/v1/episodes/1Foe3FZd7BvRs38I8dH7Sq', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/7Gfg6IiBYzsq1XG9dm1oRG', + 'is_local': False, + 'name': 'Sleepwalking', + 'track_id': '7Gfg6IiBYzsq1XG9dm1oRG', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:7Gfg6IiBYzsq1XG9dm1oRG', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 16, 21, 15, 43, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6VoutwXXcQBDbcZlmlYbxc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '16AVsBqzmIZTNHd0eX8VbK', + 'name': 'The Birthday Massacre', + 'uri': 'spotify:artist:16AVsBqzmIZTNHd0eX8VbK', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1', + 'width': 64, + }), + ]), + 'name': 'Pins And Needles', + 'release_date': '2010-09-14', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:6VoutwXXcQBDbcZlmlYbxc', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '16AVsBqzmIZTNHd0eX8VbK', + 'name': 'The Birthday Massacre', + 'uri': 'spotify:artist:16AVsBqzmIZTNHd0eX8VbK', }), ]), - 'name': 'Mark Rober Makes a Lot of Money - Safety Third 81', - 'release_date': '2023-10-26', - 'release_date_precision': , - 'uri': 'spotify:episode:1Foe3FZd7BvRs38I8dH7Sq', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5048320, - 'episode_id': '08fFiLgTzEZrbFIvAoeQQf', + 'disc_number': 1, + 'duration_ms': 200266, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/08fFiLgTzEZrbFIvAoeQQf', + 'spotify': 'https://open.spotify.com/track/6wRnCFOePoaifD2SmZ7K7B', }), - 'href': 'https://api.spotify.com/v1/episodes/08fFiLgTzEZrbFIvAoeQQf', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/6wRnCFOePoaifD2SmZ7K7B', + 'is_local': False, + 'name': 'Control', + 'track_id': '6wRnCFOePoaifD2SmZ7K7B', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:6wRnCFOePoaifD2SmZ7K7B', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 13, 10, 59, 8, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1HGrQZLhmqlEuACUnQY7yy', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945', + 'width': 64, + }), + ]), + 'name': 'FATE of ALL', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1HGrQZLhmqlEuACUnQY7yy', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', }), ]), - 'name': 'Cooking Burgers With Lasers - Safety Third 80', - 'release_date': '2023-10-05', - 'release_date_precision': , - 'uri': 'spotify:episode:08fFiLgTzEZrbFIvAoeQQf', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4946599, - 'episode_id': '3eq79MRpzfuGB7Grixux8R', + 'disc_number': 1, + 'duration_ms': 244360, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3eq79MRpzfuGB7Grixux8R', + 'spotify': 'https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs', + }), + 'href': 'https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs', + 'is_local': False, + 'name': 'FATE of ALL', + 'track_id': '29DpW469MK56dBqxSfzwDs', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:29DpW469MK56dBqxSfzwDs', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 11, 21, 37, 52, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7mvXPtV4jvA1hp5Wx2FAJA', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4G9NDjRyZFDlJKMRL8hx3S', + 'name': 'sombr', + 'uri': 'spotify:artist:4G9NDjRyZFDlJKMRL8hx3S', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734229702de91cb3d3a4383302', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024229702de91cb3d3a4383302', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514229702de91cb3d3a4383302', + 'width': 64, + }), + ]), + 'name': 'I Barely Know Her', + 'release_date': '2025-08-22', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:7mvXPtV4jvA1hp5Wx2FAJA', }), - 'href': 'https://api.spotify.com/v1/episodes/3eq79MRpzfuGB7Grixux8R', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '4G9NDjRyZFDlJKMRL8hx3S', + 'name': 'sombr', + 'uri': 'spotify:artist:4G9NDjRyZFDlJKMRL8hx3S', }), ]), - 'name': 'Building the World’s Largest Bear Trap - Safety Third 79', - 'release_date': '2023-09-28', - 'release_date_precision': , - 'uri': 'spotify:episode:3eq79MRpzfuGB7Grixux8R', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4390817, - 'episode_id': '6iRGwNvFSwTI9HqOiBBm3Q', + 'disc_number': 1, + 'duration_ms': 242903, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6iRGwNvFSwTI9HqOiBBm3Q', + 'spotify': 'https://open.spotify.com/track/05od2qm2MTSKCHxy1GBp5W', }), - 'href': 'https://api.spotify.com/v1/episodes/6iRGwNvFSwTI9HqOiBBm3Q', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/05od2qm2MTSKCHxy1GBp5W', + 'is_local': False, + 'name': '12 to 12', + 'track_id': '05od2qm2MTSKCHxy1GBp5W', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:05od2qm2MTSKCHxy1GBp5W', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 10, 22, 19, 19, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1dMkUqXlm5b3JxSzBmVIX5', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7zt6Af78CalxaPDqORfw8L', + 'name': 'Annie', + 'uri': 'spotify:artist:7zt6Af78CalxaPDqORfw8L', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2730570e34fef3c011c35486001', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e020570e34fef3c011c35486001', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048510570e34fef3c011c35486001', + 'width': 64, + }), + ]), + 'name': 'Dark Hearts', + 'release_date': '2020-10-16', + 'release_date_precision': , + 'total_tracks': 13, + 'uri': 'spotify:album:1dMkUqXlm5b3JxSzBmVIX5', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '7zt6Af78CalxaPDqORfw8L', + 'name': 'Annie', + 'uri': 'spotify:artist:7zt6Af78CalxaPDqORfw8L', }), ]), - 'name': 'Making a Tesla Boat - Safety Third 78', - 'release_date': '2023-09-14', - 'release_date_precision': , - 'uri': 'spotify:episode:6iRGwNvFSwTI9HqOiBBm3Q', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4180609, - 'episode_id': '1OKJ9A9sAzEaZMLY8acimk', + 'disc_number': 1, + 'duration_ms': 226869, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1OKJ9A9sAzEaZMLY8acimk', + 'spotify': 'https://open.spotify.com/track/7t1C2Z5kYtmhZGMs5mIFz2', }), - 'href': 'https://api.spotify.com/v1/episodes/1OKJ9A9sAzEaZMLY8acimk', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/7t1C2Z5kYtmhZGMs5mIFz2', + 'is_local': False, + 'name': 'American Cars', + 'track_id': '7t1C2Z5kYtmhZGMs5mIFz2', + 'track_number': 7, + 'type': , + 'uri': 'spotify:track:7t1C2Z5kYtmhZGMs5mIFz2', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 10, 21, 44, 5, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7kz0Hn6RArQSJVQfyIqaxp', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0JXwYf8x27ZfMO2gGuh6HO', + 'name': 'Brooke Combe', + 'uri': 'spotify:artist:0JXwYf8x27ZfMO2gGuh6HO', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27347bda116b82088a2a40fb9c0', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0247bda116b82088a2a40fb9c0', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485147bda116b82088a2a40fb9c0', + 'width': 64, + }), + ]), + 'name': 'Black Is The New Gold', + 'release_date': '2023-04-21', + 'release_date_precision': , + 'total_tracks': 8, + 'uri': 'spotify:album:7kz0Hn6RArQSJVQfyIqaxp', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '0JXwYf8x27ZfMO2gGuh6HO', + 'name': 'Brooke Combe', + 'uri': 'spotify:artist:0JXwYf8x27ZfMO2gGuh6HO', }), ]), - 'name': 'Code Bullet - Safety Third 77', - 'release_date': '2023-09-07', - 'release_date_precision': , - 'uri': 'spotify:episode:1OKJ9A9sAzEaZMLY8acimk', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4458292, - 'episode_id': '2I1GcL68euLDaxLu3GU5AP', + 'disc_number': 1, + 'duration_ms': 179354, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2I1GcL68euLDaxLu3GU5AP', + 'spotify': 'https://open.spotify.com/track/6xXx3GFDuZe2kaLRbyNqqa', }), - 'href': 'https://api.spotify.com/v1/episodes/2I1GcL68euLDaxLu3GU5AP', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/6xXx3GFDuZe2kaLRbyNqqa', + 'is_local': False, + 'name': 'Miss Me Now', + 'track_id': '6xXx3GFDuZe2kaLRbyNqqa', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:6xXx3GFDuZe2kaLRbyNqqa', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 10, 21, 44, 4, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7gnf1UNA18n7SThlTZa3CS', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6NvsbUgzHkjZK3ZUEWui41', + 'name': 'Kai Bosch', + 'uri': 'spotify:artist:6NvsbUgzHkjZK3ZUEWui41', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273acd4f105323904b6cc1cf4e1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02acd4f105323904b6cc1cf4e1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851acd4f105323904b6cc1cf4e1', + 'width': 64, + }), + ]), + 'name': 'Angel', + 'release_date': '2025-02-19', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:7gnf1UNA18n7SThlTZa3CS', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '6NvsbUgzHkjZK3ZUEWui41', + 'name': 'Kai Bosch', + 'uri': 'spotify:artist:6NvsbUgzHkjZK3ZUEWui41', }), ]), - 'name': 'Getting Rejected by MIT - Safety Third 76', - 'release_date': '2023-08-24', - 'release_date_precision': , - 'uri': 'spotify:episode:2I1GcL68euLDaxLu3GU5AP', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 5523905, - 'episode_id': '23FWMozdgC4ypzyFJAew3Y', + 'disc_number': 1, + 'duration_ms': 202593, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/23FWMozdgC4ypzyFJAew3Y', + 'spotify': 'https://open.spotify.com/track/04GhEfWKEragdPIlf1s8hd', }), - 'href': 'https://api.spotify.com/v1/episodes/23FWMozdgC4ypzyFJAew3Y', - 'images': list([ + 'href': 'https://api.spotify.com/v1/tracks/04GhEfWKEragdPIlf1s8hd', + 'is_local': False, + 'name': 'Angel', + 'track_id': '04GhEfWKEragdPIlf1s8hd', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:04GhEfWKEragdPIlf1s8hd', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 8, 21, 58, 53, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '05U0USUzKB8vLfdOWggfqC', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6os1temnovzJIEGRUmn3fG', + 'name': 'BNYX®', + 'uri': 'spotify:artist:6os1temnovzJIEGRUmn3fG', + }), + dict({ + 'artist_id': '0fA0VVWsXO9YnASrzqfmYu', + 'name': 'Kid Cudi', + 'uri': 'spotify:artist:0fA0VVWsXO9YnASrzqfmYu', + }), + dict({ + 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', + 'name': 'Röyksopp', + 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491', + 'width': 64, + }), + ]), + 'name': 'EVERYWHERE I GO (REMIND ME) feat. Kid Cudi', + 'release_date': '2026-01-30', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:05U0USUzKB8vLfdOWggfqC', + }), + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, + 'artist_id': '6os1temnovzJIEGRUmn3fG', + 'name': 'BNYX®', + 'uri': 'spotify:artist:6os1temnovzJIEGRUmn3fG', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, + 'artist_id': '0fA0VVWsXO9YnASrzqfmYu', + 'name': 'Kid Cudi', + 'uri': 'spotify:artist:0fA0VVWsXO9YnASrzqfmYu', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', + 'name': 'Röyksopp', + 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', }), ]), - 'name': 'Nigel - Safety Third 75', - 'release_date': '2023-06-26', - 'release_date_precision': , - 'uri': 'spotify:episode:23FWMozdgC4ypzyFJAew3Y', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4153025, - 'episode_id': '4raWEAFTONzYXt8ghbvmNd', - 'explicit': False, + 'disc_number': 1, + 'duration_ms': 217243, + 'explicit': True, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4raWEAFTONzYXt8ghbvmNd', + 'spotify': 'https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T', }), - 'href': 'https://api.spotify.com/v1/episodes/4raWEAFTONzYXt8ghbvmNd', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T', + 'is_local': False, + 'name': 'EVERYWHERE I GO (REMIND ME) feat. Kid Cudi', + 'track_id': '55QDC1UHFcqlnH0xSvvB7T', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:55QDC1UHFcqlnH0xSvvB7T', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 5, 23, 55, 38, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5sq7TecbA0bzgELXZmlXgg', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273614f462559ae5b794074f12e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02614f462559ae5b794074f12e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851614f462559ae5b794074f12e', + 'width': 64, + }), + ]), + 'name': 'Under the Covers, Vol. II', + 'release_date': '2017-10-27', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:5sq7TecbA0bzgELXZmlXgg', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', }), ]), - 'name': "The Mother's Day Podcast - Safety Third 74", - 'release_date': '2023-06-26', - 'release_date_precision': , - 'uri': 'spotify:episode:4raWEAFTONzYXt8ghbvmNd', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3716702, - 'episode_id': '34dyUuqVHVxMdttDNHnxb8', + 'disc_number': 1, + 'duration_ms': 250862, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/34dyUuqVHVxMdttDNHnxb8', + 'spotify': 'https://open.spotify.com/track/6UbGGbBpSfmFDyG17OFuId', }), - 'href': 'https://api.spotify.com/v1/episodes/34dyUuqVHVxMdttDNHnxb8', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId', + 'is_local': False, + 'name': 'Rocket Man', + 'track_id': '6UbGGbBpSfmFDyG17OFuId', + 'track_number': 12, + 'type': , + 'uri': 'spotify:track:6UbGGbBpSfmFDyG17OFuId', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 4, 19, 13, 21, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4B5d3LOYzvyPtv8zfFBV9N', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5R8aSm8lobxbG7h2AjmKAW', + 'name': 'KROMEA', + 'uri': 'spotify:artist:5R8aSm8lobxbG7h2AjmKAW', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273164b1c0ca47cfe70d742f526', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02164b1c0ca47cfe70d742f526', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851164b1c0ca47cfe70d742f526', + 'width': 64, + }), + ]), + 'name': 'Overtake EP', + 'release_date': '2018-05-25', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:4B5d3LOYzvyPtv8zfFBV9N', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '5R8aSm8lobxbG7h2AjmKAW', + 'name': 'KROMEA', + 'uri': 'spotify:artist:5R8aSm8lobxbG7h2AjmKAW', }), ]), - 'name': 'We Got Moist! - Safety Third 73', - 'release_date': '2023-06-26', - 'release_date_precision': , - 'uri': 'spotify:episode:34dyUuqVHVxMdttDNHnxb8', - }), - dict({ - 'description': 'Open Sauce tickets on sale NOW: https://opensauce.liveAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4187926, - 'episode_id': '41IkE6whRLBBzZPLkvH67x', + 'disc_number': 1, + 'duration_ms': 222546, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/41IkE6whRLBBzZPLkvH67x', + 'spotify': 'https://open.spotify.com/track/5KGbSUW1wwV5nOq359erDf', }), - 'href': 'https://api.spotify.com/v1/episodes/41IkE6whRLBBzZPLkvH67x', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/5KGbSUW1wwV5nOq359erDf', + 'is_local': False, + 'name': 'Planets', + 'track_id': '5KGbSUW1wwV5nOq359erDf', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:5KGbSUW1wwV5nOq359erDf', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 2, 14, 23, 23, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4GO80k3K2QDOrSCeC2ASCn', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0JseT2AZzVMKsBlrAywFcO', + 'name': 'Anavae', + 'uri': 'spotify:artist:0JseT2AZzVMKsBlrAywFcO', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2737a2e6ff1c77488da072fbddb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e027a2e6ff1c77488da072fbddb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048517a2e6ff1c77488da072fbddb', + 'width': 64, + }), + ]), + 'name': '45', + 'release_date': '2019-11-01', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:4GO80k3K2QDOrSCeC2ASCn', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '0JseT2AZzVMKsBlrAywFcO', + 'name': 'Anavae', + 'uri': 'spotify:artist:0JseT2AZzVMKsBlrAywFcO', }), ]), - 'name': 'Eating Illegal German Candy - Safety Third 72', - 'release_date': '2023-04-27', - 'release_date_precision': , - 'uri': 'spotify:episode:41IkE6whRLBBzZPLkvH67x', - }), - dict({ - 'description': 'https://www.patreon.com/safetythirdAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3597049, - 'episode_id': '3xH6uxYcVMKrajKi394Ii1', + 'disc_number': 1, + 'duration_ms': 216823, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3xH6uxYcVMKrajKi394Ii1', + 'spotify': 'https://open.spotify.com/track/3dOgdq9C19ZyOJCV2qGwWm', }), - 'href': 'https://api.spotify.com/v1/episodes/3xH6uxYcVMKrajKi394Ii1', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), + 'href': 'https://api.spotify.com/v1/tracks/3dOgdq9C19ZyOJCV2qGwWm', + 'is_local': False, + 'name': 'Human', + 'track_id': '3dOgdq9C19ZyOJCV2qGwWm', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:3dOgdq9C19ZyOJCV2qGwWm', + }), + }), + dict({ + 'added_at': datetime.datetime(2026, 2, 2, 13, 49, 13, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6LuMBvlwocn2SFOE6GcawL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e46418c0c40f94f033ad3d73', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e46418c0c40f94f033ad3d73', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e46418c0c40f94f033ad3d73', + 'width': 64, + }), + ]), + 'name': 'Japanese Rooms', + 'release_date': '2019-04-19', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:6LuMBvlwocn2SFOE6GcawL', + }), + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', }), ]), - 'name': "Kevin's VRChat Mistake - Safety Third 71", - 'release_date': '2023-04-14', - 'release_date_precision': , - 'uri': 'spotify:episode:3xH6uxYcVMKrajKi394Ii1', - }), - dict({ - 'description': 'Patreon:\xa0https://www.patreon.com/safetythirdMerch: https://safetythird.shopYoutube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 3905724, - 'episode_id': '1hNvtZECICRmbEjjFqgk3O', + 'disc_number': 1, + 'duration_ms': 227366, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1hNvtZECICRmbEjjFqgk3O', + 'spotify': 'https://open.spotify.com/track/2ikMCoZog1nUFApExQFgo2', }), - 'href': 'https://api.spotify.com/v1/episodes/1hNvtZECICRmbEjjFqgk3O', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Who Can Open Their Mouth the Biggest? - Safety Third 70', - 'release_date': '2023-04-06', - 'release_date_precision': , - 'uri': 'spotify:episode:1hNvtZECICRmbEjjFqgk3O', + 'href': 'https://api.spotify.com/v1/tracks/2ikMCoZog1nUFApExQFgo2', + 'is_local': False, + 'name': 'Far from Heaven', + 'track_id': '2ikMCoZog1nUFApExQFgo2', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:2ikMCoZog1nUFApExQFgo2', }), - ]), - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', }), - 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD?locale=en-US%2Cen%3Bq%3D0.5', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', - 'width': 64, - }), - ]), - 'name': 'Safety Third', - 'publisher': 'Safety Third ', - 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', - 'total_episodes': 120, - 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', - }) -# --- -# name: test_get_show_episodes - list([ dict({ - 'description': 'The Great War of 2077 and how the Fallout world diverged from our own.Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecastBuy cool stuff and support the show!Fallout 76: https://amzn.to/3h99B3UFallout Cookbook: https://amzn.to/3aGjeodFallout Boardgame: https://amzn.to/2EgmBq3The Art of Fallout 4: https://amzn.to/3gfQST3Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zGFallout Funco Pop Figures: https://amzn.to/3gcYsOcLinks: Live Shows every Monday Night and game streams: twitch.tv/robotsradioFallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hubTalk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2117616, - 'episode_id': '3ssmxnilHYaKhwRWoBGMbU', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU', - }), - 'href': 'https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8af44e9ef63c2d6fb44cb0c9bf', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1ff44e9ef63c2d6fb44cb0c9bf', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 30, 8, 57, 30, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2S3PYJxfbcMMxaHOwWXjAq', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d43ddbd12bfe5f282cdb4d2d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d43ddbd12bfe5f282cdb4d2d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d43ddbd12bfe5f282cdb4d2d', + 'width': 64, + }), + ]), + 'name': '21st Century (Digital Boy)', + 'release_date': '2026-01-27', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2S3PYJxfbcMMxaHOwWXjAq', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68df44e9ef63c2d6fb44cb0c9bf', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'disc_number': 1, + 'duration_ms': 165282, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/62CvzSF6JMfrNY317ZiNZc', }), - ]), - 'name': 'The Great War - Fallout Lorecast EP 1', - 'release_date': '2019-01-09', - 'release_date_precision': , - 'uri': 'spotify:episode:3ssmxnilHYaKhwRWoBGMbU', + 'href': 'https://api.spotify.com/v1/tracks/62CvzSF6JMfrNY317ZiNZc', + 'is_local': False, + 'name': '21st Century (Digital Boy)', + 'track_id': '62CvzSF6JMfrNY317ZiNZc', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:62CvzSF6JMfrNY317ZiNZc', + }), }), dict({ - 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2376881, - 'episode_id': '1bbj9aqeeZ3UMUlcWN0S03', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03', - }), - 'href': 'https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a655b54a66471089d27dbb03f', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f655b54a66471089d27dbb03f', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 20, 22, 35, 35, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4IY5p6bgi73zzEOjKBIXmL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3vV6kgqJHi1rg46i4Iwzr1', + 'name': 'Masters of Prophecy', + 'uri': 'spotify:artist:3vV6kgqJHi1rg46i4Iwzr1', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273235800a8fcf394b99855abac', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02235800a8fcf394b99855abac', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851235800a8fcf394b99855abac', + 'width': 64, + }), + ]), + 'name': 'Liquid Lightning', + 'release_date': '2025-11-23', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:4IY5p6bgi73zzEOjKBIXmL', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d655b54a66471089d27dbb03f', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3vV6kgqJHi1rg46i4Iwzr1', + 'name': 'Masters of Prophecy', + 'uri': 'spotify:artist:3vV6kgqJHi1rg46i4Iwzr1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 256437, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1jcctkKfRKJoYNjEKA2k42', }), - ]), - 'name': 'Who Dropped the First Bomb?', - 'release_date': '2019-01-15', - 'release_date_precision': , - 'uri': 'spotify:episode:1bbj9aqeeZ3UMUlcWN0S03', + 'href': 'https://api.spotify.com/v1/tracks/1jcctkKfRKJoYNjEKA2k42', + 'is_local': False, + 'name': 'Liquid Lightning', + 'track_id': '1jcctkKfRKJoYNjEKA2k42', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1jcctkKfRKJoYNjEKA2k42', + }), }), dict({ - 'description': 'The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2163252, - 'episode_id': '4zui8zWBisCfnTkZ1vgIc0', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0', - }), - 'href': 'https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac2181d67c5a5072353f70cc5', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc2181d67c5a5072353f70cc5', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 19, 9, 42, 31, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2ZYmViriDHQS2bzBohrLXj', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4v4qHupYi7eRJfkniHrp4Z', + 'name': 'Young Guns', + 'uri': 'spotify:artist:4v4qHupYi7eRJfkniHrp4Z', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe', + 'width': 64, + }), + ]), + 'name': 'Ones And Zeros', + 'release_date': '2015-02-18', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:2ZYmViriDHQS2bzBohrLXj', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc2181d67c5a5072353f70cc5', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4v4qHupYi7eRJfkniHrp4Z', + 'name': 'Young Guns', + 'uri': 'spotify:artist:4v4qHupYi7eRJfkniHrp4Z', + }), + ]), + 'disc_number': 1, + 'duration_ms': 224213, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK', }), - ]), - 'name': 'Vault-Tec Corporation', - 'release_date': '2019-01-22', - 'release_date_precision': , - 'uri': 'spotify:episode:4zui8zWBisCfnTkZ1vgIc0', + 'href': 'https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK', + 'is_local': False, + 'name': 'I Want Out', + 'track_id': '0QSMTHdo8JRa7PazhGrbIK', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:0QSMTHdo8JRa7PazhGrbIK', + }), }), dict({ - 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 499968, - 'episode_id': '7wH4iaoceRIympxiLVZPHF', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF', - }), - 'href': 'https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a7c3370eabc0c6db7b2936fe2', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f7c3370eabc0c6db7b2936fe2', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 19, 9, 37, 47, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '10VNoWgGKiAas5dWkpCUHL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6JslXiAQgoATL9rPmLE5du', + 'name': 'Anike Ekina', + 'uri': 'spotify:artist:6JslXiAQgoATL9rPmLE5du', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0', + 'width': 64, + }), + ]), + 'name': 'Light Back In (Special Metal version)', + 'release_date': '2025-08-01', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:10VNoWgGKiAas5dWkpCUHL', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d7c3370eabc0c6db7b2936fe2', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '6JslXiAQgoATL9rPmLE5du', + 'name': 'Anike Ekina', + 'uri': 'spotify:artist:6JslXiAQgoATL9rPmLE5du', + }), + ]), + 'disc_number': 1, + 'duration_ms': 202805, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH', }), - ]), - 'name': 'Vault 3 A Fiendish Finish', - 'release_date': '2019-01-24', - 'release_date_precision': , - 'uri': 'spotify:episode:7wH4iaoceRIympxiLVZPHF', + 'href': 'https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH', + 'is_local': False, + 'name': 'Light Back In - Special Metal Version - Radio Edit', + 'track_id': '34vearIqjyFqWWPZKPPxvH', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:34vearIqjyFqWWPZKPPxvH', + }), }), dict({ - 'description': 'The lore behind Vault 8 and Vault City.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 713586, - 'episode_id': '4Z2MUOz9GBHzHsEIAc5Ltl', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl', - }), - 'href': 'https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab3e39f9b402368fc2698dedb', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb3e39f9b402368fc2698dedb', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 19, 9, 5, 4, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0UulNUxyPHQ2Dcnc2fuak7', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5ySYeIhqg4Rfs5tjteVMz3', + 'name': 'Blondfire', + 'uri': 'spotify:artist:5ySYeIhqg4Rfs5tjteVMz3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2737a591fe36aa65157f11de048', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e027a591fe36aa65157f11de048', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048517a591fe36aa65157f11de048', + 'width': 64, + }), + ]), + 'name': 'True Confessions', + 'release_date': '2016-02-05', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:0UulNUxyPHQ2Dcnc2fuak7', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db3e39f9b402368fc2698dedb', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '5ySYeIhqg4Rfs5tjteVMz3', + 'name': 'Blondfire', + 'uri': 'spotify:artist:5ySYeIhqg4Rfs5tjteVMz3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 217708, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5Th9qF4aR9PJRrSyukyGLx', }), - ]), - 'name': 'Vault 8 & Vault City', - 'release_date': '2019-01-26', - 'release_date_precision': , - 'uri': 'spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl', + 'href': 'https://api.spotify.com/v1/tracks/5Th9qF4aR9PJRrSyukyGLx', + 'is_local': False, + 'name': 'True Confessions', + 'track_id': '5Th9qF4aR9PJRrSyukyGLx', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:5Th9qF4aR9PJRrSyukyGLx', + }), }), dict({ - 'description': 'The origins of the Brotherhood of Steel and Roger Maxson.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2211631, - 'episode_id': '24IzdUok36xLkgQEjOjS6V', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V', - }), - 'href': 'https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a7cc679b360d6c0b7088890c5', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f7cc679b360d6c0b7088890c5', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 10, 10, 37, 48, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1jmVSpWhzD8vciWg2Qtd5V', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', + 'name': 'Sonny Fodera', + 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', + }), + dict({ + 'artist_id': '0Cs47vvRsPgEfliBU9KDiB', + 'name': 'D.O.D', + 'uri': 'spotify:artist:0Cs47vvRsPgEfliBU9KDiB', + }), + dict({ + 'artist_id': '4STmXOXUF3UieHU46NWLVt', + 'name': 'Poppy Baskcomb', + 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae', + 'width': 64, + }), + ]), + 'name': 'Think About Us', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1jmVSpWhzD8vciWg2Qtd5V', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d7cc679b360d6c0b7088890c5', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', + 'name': 'Sonny Fodera', + 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', + }), + dict({ + 'artist_id': '0Cs47vvRsPgEfliBU9KDiB', + 'name': 'D.O.D', + 'uri': 'spotify:artist:0Cs47vvRsPgEfliBU9KDiB', + }), + dict({ + 'artist_id': '4STmXOXUF3UieHU46NWLVt', + 'name': 'Poppy Baskcomb', + 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', + }), + ]), + 'disc_number': 1, + 'duration_ms': 178148, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj', }), - ]), - 'name': 'The Brotherhood of Steel (Origin)', - 'release_date': '2019-01-28', - 'release_date_precision': , - 'uri': 'spotify:episode:24IzdUok36xLkgQEjOjS6V', + 'href': 'https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj', + 'is_local': False, + 'name': 'Think About Us', + 'track_id': '0lRnxwJeUOxwEvWMw4uQKj', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0lRnxwJeUOxwEvWMw4uQKj', + }), }), dict({ - 'description': 'The lore behind Vault 11 and the dilemma of self-preservation versus morality.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 737593, - 'episode_id': '6fUziggVu74s6JwZ0lsIjX', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX', - }), - 'href': 'https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a302e925456f7ac2727bc1d63', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f302e925456f7ac2727bc1d63', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 8, 23, 48, 41, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3nL6S2DQUe71FicS2UpJ4b', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '29GuyTDTPnxeRQhEdbmGLn', + 'name': 'HEXXENMIND', + 'uri': 'spotify:artist:29GuyTDTPnxeRQhEdbmGLn', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487', + 'width': 64, + }), + ]), + 'name': 'The Fate of Ophelia - Rock', + 'release_date': '2025-10-15', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:3nL6S2DQUe71FicS2UpJ4b', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d302e925456f7ac2727bc1d63', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '29GuyTDTPnxeRQhEdbmGLn', + 'name': 'HEXXENMIND', + 'uri': 'spotify:artist:29GuyTDTPnxeRQhEdbmGLn', + }), + ]), + 'disc_number': 1, + 'duration_ms': 267697, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7', }), - ]), - 'name': 'Vault 11 The Sacrifice', - 'release_date': '2019-01-31', - 'release_date_precision': , - 'uri': 'spotify:episode:6fUziggVu74s6JwZ0lsIjX', + 'href': 'https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7', + 'is_local': False, + 'name': 'The Fate of Ophelia', + 'track_id': '7sa0Obv4Y9y7rpIYhudEu7', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:7sa0Obv4Y9y7rpIYhudEu7', + }), }), dict({ - 'description': 'The lore behind Vault 12 and the origins of a ghoulish city.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 529606, - 'episode_id': '1pYEeMveLHGbbIo10G34dx', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx', - }), - 'href': 'https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a3e610ca700324f3bef0a48cc', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f3e610ca700324f3bef0a48cc', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 8, 23, 30, 42, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3oj49xNyRWGKpWXI6I8p8U', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2731980c65519ce49d2471700e6', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e021980c65519ce49d2471700e6', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048511980c65519ce49d2471700e6', + 'width': 64, + }), + ]), + 'name': 'Somebody Else', + 'release_date': '2025-12-03', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:3oj49xNyRWGKpWXI6I8p8U', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d3e610ca700324f3bef0a48cc', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), + 'disc_number': 1, + 'duration_ms': 225085, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4YpWdFAPE72zuMkQe2bE47', }), - ]), - 'name': 'Vault 12 A Ghoulish Experience', - 'release_date': '2019-02-02', - 'release_date_precision': , - 'uri': 'spotify:episode:1pYEeMveLHGbbIo10G34dx', + 'href': 'https://api.spotify.com/v1/tracks/4YpWdFAPE72zuMkQe2bE47', + 'is_local': False, + 'name': 'Somebody Else', + 'track_id': '4YpWdFAPE72zuMkQe2bE47', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4YpWdFAPE72zuMkQe2bE47', + }), }), dict({ - 'description': 'The origins and ideology of the Enclave.\xa0Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 1996538, - 'episode_id': '1h69SINnBwMCqfEXjPAVIl', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl', - }), - 'href': 'https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a848643fae2be31bac82cc05a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f848643fae2be31bac82cc05a', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 6, 14, 23, 27, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6wZ6bHs81VeaqrAP7LYax1', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4DWnSG0RYPAds8EIKY26q3', + 'name': 'Blue Stahli', + 'uri': 'spotify:artist:4DWnSG0RYPAds8EIKY26q3', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27320d06426954869610e4a052f', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0220d06426954869610e4a052f', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485120d06426954869610e4a052f', + 'width': 64, + }), + ]), + 'name': 'The Devil (Deluxe Edition)', + 'release_date': '2015-10-02', + 'release_date_precision': , + 'total_tracks': 23, + 'uri': 'spotify:album:6wZ6bHs81VeaqrAP7LYax1', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d848643fae2be31bac82cc05a', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4DWnSG0RYPAds8EIKY26q3', + 'name': 'Blue Stahli', + 'uri': 'spotify:artist:4DWnSG0RYPAds8EIKY26q3', + }), + ]), + 'disc_number': 1, + 'duration_ms': 227386, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6roRQM5LLinr2ScyOh1ZHw', }), - ]), - 'name': 'The Enclave (Origin)', - 'release_date': '2019-02-04', - 'release_date_precision': , - 'uri': 'spotify:episode:1h69SINnBwMCqfEXjPAVIl', + 'href': 'https://api.spotify.com/v1/tracks/6roRQM5LLinr2ScyOh1ZHw', + 'is_local': False, + 'name': 'The Fall', + 'track_id': '6roRQM5LLinr2ScyOh1ZHw', + 'track_number': 8, + 'type': , + 'uri': 'spotify:track:6roRQM5LLinr2ScyOh1ZHw', + }), }), dict({ - 'description': 'The lore behind Vault 13 and an invasion by intelligent deathclaws.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 930638, - 'episode_id': '33UquUg4oftJ4ereH4nrNO', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO', - }), - 'href': 'https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a87fd9a8d362fd30aaab4e9d5', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f87fd9a8d362fd30aaab4e9d5', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 5, 21, 54, 42, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3ZdwtiZ6iYOtkRtFq2tmO9', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1NcsVSxFdXsnwvE64zV9xX', + 'name': 'Rave The Reqviem', + 'uri': 'spotify:artist:1NcsVSxFdXsnwvE64zV9xX', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75', + 'width': 64, + }), + ]), + 'name': 'The Gospel of Nil - Revised Standard Version', + 'release_date': '2016-10-06', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d87fd9a8d362fd30aaab4e9d5', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1NcsVSxFdXsnwvE64zV9xX', + 'name': 'Rave The Reqviem', + 'uri': 'spotify:artist:1NcsVSxFdXsnwvE64zV9xX', + }), + ]), + 'disc_number': 1, + 'duration_ms': 194085, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r', }), - ]), - 'name': 'Vault 13 & Intelligent Deathclaws', - 'release_date': '2019-02-07', - 'release_date_precision': , - 'uri': 'spotify:episode:33UquUg4oftJ4ereH4nrNO', + 'href': 'https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r', + 'is_local': False, + 'name': 'Mono Heart', + 'track_id': '6vy64DzPmsCUNue0FpmM6r', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:6vy64DzPmsCUNue0FpmM6r', + }), }), dict({ - 'description': 'Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\xa0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2282187, - 'episode_id': '5nkbQDDCKSH4CwYalm62er', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er', - }), - 'href': 'https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 5, 21, 22, 46, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '54apQNp3ruFrK20sYZvmdf', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95', + 'width': 64, + }), + ]), + 'name': 'Bardcore Mayhem, Vol. 1', + 'release_date': '2025-09-24', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:54apQNp3ruFrK20sYZvmdf', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', + }), + ]), + 'disc_number': 1, + 'duration_ms': 172079, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q', }), - ]), - 'name': '[SNEAK PEEK] - Elder Scrolls Lorecast First Episode', - 'release_date': '2019-02-11', - 'release_date_precision': , - 'uri': 'spotify:episode:5nkbQDDCKSH4CwYalm62er', + 'href': 'https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q', + 'is_local': False, + 'name': 'Arrow splitter', + 'track_id': '0f56nfzpUaXE6t5E3oza3q', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:0f56nfzpUaXE6t5E3oza3q', + }), }), dict({ - 'description': 'Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\xa0Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 4648594, - 'episode_id': '18tLLTavfPIPoJxau3xDQJ', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ', - }), - 'href': 'https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a28474d982684a3bd43d68198', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f28474d982684a3bd43d68198', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 5, 10, 41, 32, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4Xv90HE4uhD2e71SV7gSEZ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3hvgLXeDFNiqDOVXl0xTge', + 'name': 'LukHash', + 'uri': 'spotify:artist:3hvgLXeDFNiqDOVXl0xTge', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813', + 'width': 64, + }), + ]), + 'name': 'Home Arcade', + 'release_date': '2025-05-02', + 'release_date_precision': , + 'total_tracks': 13, + 'uri': 'spotify:album:4Xv90HE4uhD2e71SV7gSEZ', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d28474d982684a3bd43d68198', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3hvgLXeDFNiqDOVXl0xTge', + 'name': 'LukHash', + 'uri': 'spotify:artist:3hvgLXeDFNiqDOVXl0xTge', + }), + ]), + 'disc_number': 1, + 'duration_ms': 176280, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf', }), - ]), - 'name': 'Power Armor w/ Duke from Out of the Vault', - 'release_date': '2019-02-13', - 'release_date_precision': , - 'uri': 'spotify:episode:18tLLTavfPIPoJxau3xDQJ', + 'href': 'https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf', + 'is_local': False, + 'name': 'Touching the Sky', + 'track_id': '0qvDlGZL5TnvV80AMH3lYf', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:0qvDlGZL5TnvV80AMH3lYf', + }), }), dict({ - 'description': "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - 'duration_ms': 716591, - 'episode_id': '1EQ6z4eaCRs6kJeVXjWIcm', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm', - }), - 'href': 'https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a7d1afb3118607dba3602faff', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f7d1afb3118607dba3602faff', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 5, 10, 35, 53, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3PO0IfUeN5wVemwQlYSIVa', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3Wcyta3gkOdQ4TfY0WyZpu', + 'name': 'YONAKA', + 'uri': 'spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273903ede5546f4ef01bf4240ef', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02903ede5546f4ef01bf4240ef', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851903ede5546f4ef01bf4240ef', + 'width': 64, + }), + ]), + 'name': 'CREATURE', + 'release_date': '2018-11-16', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:3PO0IfUeN5wVemwQlYSIVa', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d7d1afb3118607dba3602faff', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3Wcyta3gkOdQ4TfY0WyZpu', + 'name': 'YONAKA', + 'uri': 'spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu', + }), + ]), + 'disc_number': 1, + 'duration_ms': 190206, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1ldVaFbdm2axVLe6TQox6H', }), - ]), - 'name': 'Vault 15 The Origin of The Khans', - 'release_date': '2019-02-16', - 'release_date_precision': , - 'uri': 'spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm', + 'href': 'https://api.spotify.com/v1/tracks/1ldVaFbdm2axVLe6TQox6H', + 'is_local': False, + 'name': 'Death By Love', + 'track_id': '1ldVaFbdm2axVLe6TQox6H', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:1ldVaFbdm2axVLe6TQox6H', + }), }), dict({ - 'description': 'In this episode, we discuss the origin, research, and importance of West Tek.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2103248, - 'episode_id': '5ia7J0CaNRhuxsB0yVxdcn', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn', - }), - 'href': 'https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8af2608bb76816d3baffba9fd1', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1ff2608bb76816d3baffba9fd1', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 3, 22, 26, 12, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7i4Kb4tSmsvXWTM399KKct', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4enJurkJhWYJxokouQ02ky', + 'name': 'Paperwater', + 'uri': 'spotify:artist:4enJurkJhWYJxokouQ02ky', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f73aa7e970746c696069a52f', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f73aa7e970746c696069a52f', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f73aa7e970746c696069a52f', + 'width': 64, + }), + ]), + 'name': 'GIRL I WANT YOU', + 'release_date': '2025-09-11', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:7i4Kb4tSmsvXWTM399KKct', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68df2608bb76816d3baffba9fd1', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4enJurkJhWYJxokouQ02ky', + 'name': 'Paperwater', + 'uri': 'spotify:artist:4enJurkJhWYJxokouQ02ky', + }), + ]), + 'disc_number': 1, + 'duration_ms': 211653, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5ocaIFjQEcuZni3guyHoHl', }), - ]), - 'name': 'West Tek - FEV & Power Armor', - 'release_date': '2019-02-20', - 'release_date_precision': , - 'uri': 'spotify:episode:5ia7J0CaNRhuxsB0yVxdcn', + 'href': 'https://api.spotify.com/v1/tracks/5ocaIFjQEcuZni3guyHoHl', + 'is_local': False, + 'name': 'GIRL I WANT YOU', + 'track_id': '5ocaIFjQEcuZni3guyHoHl', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:5ocaIFjQEcuZni3guyHoHl', + }), }), dict({ - 'description': 'In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 786625, - 'episode_id': '1rzpxakE5YSwvSX6rXlG1V', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V', - }), - 'href': 'https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a7f0006d898957db4dacc948b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f7f0006d898957db4dacc948b', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 2, 22, 2, 50, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2729tzbbE6CeRuFmbGOUry', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7k5jeohQCF20a8foBD9ize', + 'name': 'Battle Beast', + 'uri': 'spotify:artist:7k5jeohQCF20a8foBD9ize', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c', + 'width': 64, + }), + ]), + 'name': 'Steelbound', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:2729tzbbE6CeRuFmbGOUry', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d7f0006d898957db4dacc948b', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '7k5jeohQCF20a8foBD9ize', + 'name': 'Battle Beast', + 'uri': 'spotify:artist:7k5jeohQCF20a8foBD9ize', + }), + ]), + 'disc_number': 1, + 'duration_ms': 230786, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e', }), - ]), - 'name': 'Vault 19 Red vs Blue (or On Tribalism)', - 'release_date': '2019-02-25', - 'release_date_precision': , - 'uri': 'spotify:episode:1rzpxakE5YSwvSX6rXlG1V', + 'href': 'https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e', + 'is_local': False, + 'name': 'Riders Of The Storm', + 'track_id': '5CEM8PzhisIOQAr8TmG79e', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:5CEM8PzhisIOQAr8TmG79e', + }), }), dict({ - 'description': 'Super Mutants. Nuff said. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2156747, - 'episode_id': '1PI4CPzbfD5HFEMWlaNQAV', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV', - }), - 'href': 'https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a30f58504d487e1f3bb5a9595', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f30f58504d487e1f3bb5a9595', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 2, 18, 49, 2, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '301WuaWtWbDOlsAih6cITQ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '28eLrVsohdXynlnIzQ2VvI', + 'name': 'Lord Of The Lost', + 'uri': 'spotify:artist:28eLrVsohdXynlnIzQ2VvI', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273a39a5a7a9213a9b107c716ac', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02a39a5a7a9213a9b107c716ac', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851a39a5a7a9213a9b107c716ac', + 'width': 64, + }), + ]), + 'name': 'Raveyard', + 'release_date': '2025-09-03', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:301WuaWtWbDOlsAih6cITQ', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d30f58504d487e1f3bb5a9595', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '28eLrVsohdXynlnIzQ2VvI', + 'name': 'Lord Of The Lost', + 'uri': 'spotify:artist:28eLrVsohdXynlnIzQ2VvI', + }), + dict({ + 'artist_id': '6LkMGN0t3HDNL8hIvma70r', + 'name': 'Käärijä', + 'uri': 'spotify:artist:6LkMGN0t3HDNL8hIvma70r', + }), + ]), + 'disc_number': 1, + 'duration_ms': 225307, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2GJVCzNulP71igNkJtJ9ZO', }), - ]), - 'name': 'Super Mutants', - 'release_date': '2019-02-27', - 'release_date_precision': , - 'uri': 'spotify:episode:1PI4CPzbfD5HFEMWlaNQAV', + 'href': 'https://api.spotify.com/v1/tracks/2GJVCzNulP71igNkJtJ9ZO', + 'is_local': False, + 'name': 'Raveyard (feat. Käärijä)', + 'track_id': '2GJVCzNulP71igNkJtJ9ZO', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2GJVCzNulP71igNkJtJ9ZO', + }), }), dict({ - 'description': 'Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2779715, - 'episode_id': '4CZKdqqXWP5ez2rOzT5eL6', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6', - }), - 'href': 'https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a9c2656a3e5f340dfa5f7e82c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f9c2656a3e5f340dfa5f7e82c', - 'width': 300, + 'added_at': datetime.datetime(2026, 1, 2, 18, 30, 43, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '5oFAGk4EQNN5uEah2C5HWI', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4pQN0GB0fNEEOfQCaWotsY', + 'name': 'Helloween', + 'uri': 'spotify:artist:4pQN0GB0fNEEOfQCaWotsY', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273399785f2588d4b348a1b246c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02399785f2588d4b348a1b246c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851399785f2588d4b348a1b246c', + 'width': 64, + }), + ]), + 'name': 'Giants & Monsters', + 'release_date': '2025-08-29', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:5oFAGk4EQNN5uEah2C5HWI', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d9c2656a3e5f340dfa5f7e82c', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '4pQN0GB0fNEEOfQCaWotsY', + 'name': 'Helloween', + 'uri': 'spotify:artist:4pQN0GB0fNEEOfQCaWotsY', + }), + ]), + 'disc_number': 1, + 'duration_ms': 210253, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4uFUalyidCKsnJbFCzRmhs', }), - ]), - 'name': 'West Virginia and Fallout 76 w/ Dave from Vault Boys WV', - 'release_date': '2019-03-06', - 'release_date_precision': , - 'uri': 'spotify:episode:4CZKdqqXWP5ez2rOzT5eL6', + 'href': 'https://api.spotify.com/v1/tracks/4uFUalyidCKsnJbFCzRmhs', + 'is_local': False, + 'name': 'A Little Is A Little Too Much', + 'track_id': '4uFUalyidCKsnJbFCzRmhs', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:4uFUalyidCKsnJbFCzRmhs', + }), }), dict({ - 'description': 'This episode we discuss Ghouls! Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2051500, - 'episode_id': '1SOZlOQl3FYwatj6Zvfrsj', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj', - }), - 'href': 'https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a3a68fdbc55e15ba2b6a720b6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f3a68fdbc55e15ba2b6a720b6', - 'width': 300, + 'added_at': datetime.datetime(2025, 12, 29, 20, 40, 58, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0wk685JsrY5zGqCjXtcLBv', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3iCJOi5YKh247eutgCyLFe', + 'name': 'I See Stars', + 'uri': 'spotify:artist:3iCJOi5YKh247eutgCyLFe', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27339e218ccf7e285fa70e18ea2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0239e218ccf7e285fa70e18ea2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485139e218ccf7e285fa70e18ea2', + 'width': 64, + }), + ]), + 'name': 'THE WHEEL', + 'release_date': '2025-09-12', + 'release_date_precision': , + 'total_tracks': 14, + 'uri': 'spotify:album:0wk685JsrY5zGqCjXtcLBv', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d3a68fdbc55e15ba2b6a720b6', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '3iCJOi5YKh247eutgCyLFe', + 'name': 'I See Stars', + 'uri': 'spotify:artist:3iCJOi5YKh247eutgCyLFe', + }), + ]), + 'disc_number': 1, + 'duration_ms': 209000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0lkPcWWGuj2q9YHox1GWZE', }), - ]), - 'name': 'Ghouls!', - 'release_date': '2019-03-13', - 'release_date_precision': , - 'uri': 'spotify:episode:1SOZlOQl3FYwatj6Zvfrsj', + 'href': 'https://api.spotify.com/v1/tracks/0lkPcWWGuj2q9YHox1GWZE', + 'is_local': False, + 'name': 'Eliminator', + 'track_id': '0lkPcWWGuj2q9YHox1GWZE', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:0lkPcWWGuj2q9YHox1GWZE', + }), }), dict({ - 'description': 'Vault 21, where everything was determined randomly. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 1923134, - 'episode_id': '16hX5oaM52mREneUOHdBiA', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA', - }), - 'href': 'https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a605e65537b9b382e2161d602', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f605e65537b9b382e2161d602', - 'width': 300, + 'added_at': datetime.datetime(2025, 12, 27, 19, 39, 6, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6KpFTQPwkK9hY39Tl7Wggv', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1A6HQzOvtGaCYihOuIKjE6', + 'name': 'Mr. Polska', + 'uri': 'spotify:artist:1A6HQzOvtGaCYihOuIKjE6', + }), + dict({ + 'artist_id': '2z9op9COiMU6QquVfY8HTN', + 'name': 'WINSON', + 'uri': 'spotify:artist:2z9op9COiMU6QquVfY8HTN', + }), + dict({ + 'artist_id': '30tToHC6q3nB7Lious0MZW', + 'name': 'Teletech', + 'uri': 'spotify:artist:30tToHC6q3nB7Lious0MZW', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9', + 'width': 64, + }), + ]), + 'name': 'Otherside', + 'release_date': '2025-12-19', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:6KpFTQPwkK9hY39Tl7Wggv', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d605e65537b9b382e2161d602', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '1A6HQzOvtGaCYihOuIKjE6', + 'name': 'Mr. Polska', + 'uri': 'spotify:artist:1A6HQzOvtGaCYihOuIKjE6', + }), + dict({ + 'artist_id': '2z9op9COiMU6QquVfY8HTN', + 'name': 'WINSON', + 'uri': 'spotify:artist:2z9op9COiMU6QquVfY8HTN', + }), + dict({ + 'artist_id': '30tToHC6q3nB7Lious0MZW', + 'name': 'Teletech', + 'uri': 'spotify:artist:30tToHC6q3nB7Lious0MZW', + }), + ]), + 'disc_number': 1, + 'duration_ms': 192000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn', }), - ]), - 'name': 'Vault 21 - A Roll of the Dice', - 'release_date': '2019-03-20', - 'release_date_precision': , - 'uri': 'spotify:episode:16hX5oaM52mREneUOHdBiA', + 'href': 'https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn', + 'is_local': False, + 'name': 'Otherside', + 'track_id': '07Zj558j9j9TWq7HIcTFZn', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:07Zj558j9j9TWq7HIcTFZn', + }), }), dict({ - 'description': 'This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', - 'duration_ms': 2674024, - 'episode_id': '2qvIReQpMaGK9OEeuW47VS', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS', - }), - 'href': 'https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a2a75dc2b800ef5d83571ac27', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f2a75dc2b800ef5d83571ac27', - 'width': 300, + 'added_at': datetime.datetime(2025, 12, 23, 21, 27, 53, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2OMCroH113OoIxVbMUwtSY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '343NN0x0NpJGNjwB52gJ5J', + 'name': 'FHE', + 'uri': 'spotify:artist:343NN0x0NpJGNjwB52gJ5J', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647', + 'width': 64, + }), + ]), + 'name': 'Beg For More', + 'release_date': '2020-07-23', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2OMCroH113OoIxVbMUwtSY', }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d2a75dc2b800ef5d83571ac27', - 'width': 64, + 'artists': list([ + dict({ + 'artist_id': '343NN0x0NpJGNjwB52gJ5J', + 'name': 'FHE', + 'uri': 'spotify:artist:343NN0x0NpJGNjwB52gJ5J', + }), + ]), + 'disc_number': 1, + 'duration_ms': 203586, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3', }), - ]), - 'name': 'Deathclaws', - 'release_date': '2019-03-28', - 'release_date_precision': , - 'uri': 'spotify:episode:2qvIReQpMaGK9OEeuW47VS', + 'href': 'https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3', + 'is_local': False, + 'name': 'Beg For More', + 'track_id': '6DEsqinq33fSFFMj6MoEH3', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:6DEsqinq33fSFFMj6MoEH3', + }), }), - ]) -# --- -# name: test_get_top_artists - list([ dict({ - 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf749f53f8bb5ffccf6105ce3', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f749f53f8bb5ffccf6105ce3', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 23, 20, 55, 47, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '58JgOCCyTnvjCq08A0Cl2Q', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0V8zk3mDbTH54fs1bdqx8y', + 'name': 'Ari Mason', + 'uri': 'spotify:artist:0V8zk3mDbTH54fs1bdqx8y', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273ab0eef579685053904e2328c', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02ab0eef579685053904e2328c', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851ab0eef579685053904e2328c', + 'width': 64, + }), + ]), + 'name': 'Creatures', + 'release_date': '2016-03-25', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:58JgOCCyTnvjCq08A0Cl2Q', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f749f53f8bb5ffccf6105ce3', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '0V8zk3mDbTH54fs1bdqx8y', + 'name': 'Ari Mason', + 'uri': 'spotify:artist:0V8zk3mDbTH54fs1bdqx8y', + }), + ]), + 'disc_number': 1, + 'duration_ms': 206535, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6cRk4120UqIZziStFd0Ma3', }), - ]), - 'name': 'Onkruid', - 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', + 'href': 'https://api.spotify.com/v1/tracks/6cRk4120UqIZziStFd0Ma3', + 'is_local': False, + 'name': 'Beasts Tonight', + 'track_id': '6cRk4120UqIZziStFd0Ma3', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:6cRk4120UqIZziStFd0Ma3', + }), }), dict({ - 'artist_id': '6s5ubAp65wXoTZefE01RNR', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb8e750249623067fe3c557cf0', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051748e750249623067fe3c557cf0', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 23, 20, 32, 48, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '7y3DJ8V7R0MbyhbxLL0qvr', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3gjygQY5Q2P3b5F1ZIP0Dj', + 'name': 'BLACKBOOK', + 'uri': 'spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27367da077ab4a88a567edb4713', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0267da077ab4a88a567edb4713', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485167da077ab4a88a567edb4713', + 'width': 64, + }), + ]), + 'name': 'Wait Until Midnight', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:7y3DJ8V7R0MbyhbxLL0qvr', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1788e750249623067fe3c557cf0', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '3gjygQY5Q2P3b5F1ZIP0Dj', + 'name': 'BLACKBOOK', + 'uri': 'spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj', + }), + ]), + 'disc_number': 1, + 'duration_ms': 197760, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/72rDdFFIDIu7QsBUoSYKim', }), - ]), - 'name': 'Joost', - 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + 'href': 'https://api.spotify.com/v1/tracks/72rDdFFIDIu7QsBUoSYKim', + 'is_local': False, + 'name': 'Wait Until Midnight', + 'track_id': '72rDdFFIDIu7QsBUoSYKim', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:72rDdFFIDIu7QsBUoSYKim', + }), }), dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 23, 20, 10, 24, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0dEhAHwtBRfkm3kFvlA4de', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '28NEaGWW9MKwryzTsFX8ko', + 'name': 'Arctis', + 'uri': 'spotify:artist:28NEaGWW9MKwryzTsFX8ko', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2737b5803a0b230a775fa79f322', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e027b5803a0b230a775fa79f322', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048517b5803a0b230a775fa79f322', + 'width': 64, + }), + ]), + 'name': 'Arctis', + 'release_date': '2024-11-01', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:0dEhAHwtBRfkm3kFvlA4de', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '28NEaGWW9MKwryzTsFX8ko', + 'name': 'Arctis', + 'uri': 'spotify:artist:28NEaGWW9MKwryzTsFX8ko', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219130, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3JygLXJ44lWW4PgwFJHnef', }), - ]), - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'href': 'https://api.spotify.com/v1/tracks/3JygLXJ44lWW4PgwFJHnef', + 'is_local': False, + 'name': "I'll Give You Hell", + 'track_id': '3JygLXJ44lWW4PgwFJHnef', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3JygLXJ44lWW4PgwFJHnef', + }), }), dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb1844d25e43cbfb017a74ca77', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051741844d25e43cbfb017a74ca77', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 22, 0, 8, 16, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '2yYylDKJUY5NCfv4YsZpZW', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '586uxXMyD5ObPuzjtrzO1Q', + 'name': 'SOFI TUKKER', + 'uri': 'spotify:artist:586uxXMyD5ObPuzjtrzO1Q', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27347ce7985d84e6715a97cecd8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0247ce7985d84e6715a97cecd8', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485147ce7985d84e6715a97cecd8', + 'width': 64, + }), + ]), + 'name': 'One On One', + 'release_date': '2023-12-08', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2yYylDKJUY5NCfv4YsZpZW', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1781844d25e43cbfb017a74ca77', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '586uxXMyD5ObPuzjtrzO1Q', + 'name': 'SOFI TUKKER', + 'uri': 'spotify:artist:586uxXMyD5ObPuzjtrzO1Q', + }), + ]), + 'disc_number': 1, + 'duration_ms': 212252, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2xmlpRPQUA3lR6HYaeYv7g', }), - ]), - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + 'href': 'https://api.spotify.com/v1/tracks/2xmlpRPQUA3lR6HYaeYv7g', + 'is_local': False, + 'name': 'One On One', + 'track_id': '2xmlpRPQUA3lR6HYaeYv7g', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2xmlpRPQUA3lR6HYaeYv7g', + }), }), dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb2302e6ba3091fcbc6fd5bb54', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051742302e6ba3091fcbc6fd5bb54', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 20, 23, 34, 26, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '45DVKreI7RJd1QX49dRJOS', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2MdFJmUQf3ckA99IhFF9my', + 'name': 'Ely Oaks', + 'uri': 'spotify:artist:2MdFJmUQf3ckA99IhFF9my', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27372b1caa2ab6a5f2221b555ca', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0272b1caa2ab6a5f2221b555ca', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485172b1caa2ab6a5f2221b555ca', + 'width': 64, + }), + ]), + 'name': "Breakin' Dishes", + 'release_date': '2025-09-12', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:45DVKreI7RJd1QX49dRJOS', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1782302e6ba3091fcbc6fd5bb54', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '2MdFJmUQf3ckA99IhFF9my', + 'name': 'Ely Oaks', + 'uri': 'spotify:artist:2MdFJmUQf3ckA99IhFF9my', + }), + ]), + 'disc_number': 1, + 'duration_ms': 133517, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3rTvXpSq6fDU1PitJlmnhm', }), - ]), - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'href': 'https://api.spotify.com/v1/tracks/3rTvXpSq6fDU1PitJlmnhm', + 'is_local': False, + 'name': "Breakin' Dishes", + 'track_id': '3rTvXpSq6fDU1PitJlmnhm', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3rTvXpSq6fDU1PitJlmnhm', + }), }), dict({ - 'artist_id': '0bLxXoUrh0kANKQMWts8KV', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb03c950304cd6fce910de8c59', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab6761610000517403c950304cd6fce910de8c59', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 19, 22, 42, 45, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '0PrVmVD88Xk509v7BOT6a2', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273c62cf08cee6bff48127078ea', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02c62cf08cee6bff48127078ea', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c62cf08cee6bff48127078ea', + 'width': 64, + }), + ]), + 'name': 'Bittersüß', + 'release_date': '2025-02-14', + 'release_date_precision': , + 'total_tracks': 16, + 'uri': 'spotify:album:0PrVmVD88Xk509v7BOT6a2', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f17803c950304cd6fce910de8c59', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '58xrjO7pWlfj2C2uksXScP', + 'name': 'Abor & Tynna', + 'uri': 'spotify:artist:58xrjO7pWlfj2C2uksXScP', + }), + ]), + 'disc_number': 1, + 'duration_ms': 183893, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1H92AxiNEizRr0crbIJRGo', }), - ]), - 'name': 'Felicia Lu', - 'uri': 'spotify:artist:0bLxXoUrh0kANKQMWts8KV', + 'href': 'https://api.spotify.com/v1/tracks/1H92AxiNEizRr0crbIJRGo', + 'is_local': False, + 'name': 'Winnetou', + 'track_id': '1H92AxiNEizRr0crbIJRGo', + 'track_number': 11, + 'type': , + 'uri': 'spotify:track:1H92AxiNEizRr0crbIJRGo', + }), }), dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb7f3519b082ec961f35be7a44', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051747f3519b082ec961f35be7a44', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 18, 21, 39, 7, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4cGfPdyycjpZp07DbCJtbY', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6pIRdCtSE5hLFfIfcTAicI', + 'name': 'Delain', + 'uri': 'spotify:artist:6pIRdCtSE5hLFfIfcTAicI', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738e13be833e2f32f132a1a27b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028e13be833e2f32f132a1a27b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518e13be833e2f32f132a1a27b', + 'width': 64, + }), + ]), + 'name': 'We Are The Others', + 'release_date': '2012-06-01', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:4cGfPdyycjpZp07DbCJtbY', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1787f3519b082ec961f35be7a44', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '6pIRdCtSE5hLFfIfcTAicI', + 'name': 'Delain', + 'uri': 'spotify:artist:6pIRdCtSE5hLFfIfcTAicI', + }), + ]), + 'disc_number': 1, + 'duration_ms': 199280, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6uKvnGeg6xgzPTH3QSPTB6', }), - ]), - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'href': 'https://api.spotify.com/v1/tracks/6uKvnGeg6xgzPTH3QSPTB6', + 'is_local': False, + 'name': 'We Are The Others', + 'track_id': '6uKvnGeg6xgzPTH3QSPTB6', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:6uKvnGeg6xgzPTH3QSPTB6', + }), }), dict({ - 'artist_id': '0PCCGZ0wGLizHt2KZ7hhA2', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb597f1c8c92c4a82734e3af43', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174597f1c8c92c4a82734e3af43', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 18, 21, 15, 33, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '3cyWbMuXwDiHTOzkydUWwN', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6rVZNRKhwhm7DYuJrMARb4', + 'name': 'Venus 5', + 'uri': 'spotify:artist:6rVZNRKhwhm7DYuJrMARb4', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273d07c5fb903eb78c45840ffd3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02d07c5fb903eb78c45840ffd3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851d07c5fb903eb78c45840ffd3', + 'width': 64, + }), + ]), + 'name': 'Like A Witch', + 'release_date': '2025-12-17', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:3cyWbMuXwDiHTOzkydUWwN', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178597f1c8c92c4a82734e3af43', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '6rVZNRKhwhm7DYuJrMARb4', + 'name': 'Venus 5', + 'uri': 'spotify:artist:6rVZNRKhwhm7DYuJrMARb4', + }), + ]), + 'disc_number': 1, + 'duration_ms': 188522, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4BRNp7hCB6HXAT4Pmjs20q', }), - ]), - 'name': 'Artemas', - 'uri': 'spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2', + 'href': 'https://api.spotify.com/v1/tracks/4BRNp7hCB6HXAT4Pmjs20q', + 'is_local': False, + 'name': 'Like A Witch', + 'track_id': '4BRNp7hCB6HXAT4Pmjs20q', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4BRNp7hCB6HXAT4Pmjs20q', + }), }), dict({ - 'artist_id': '3X2DdnmoANw8Rg8luHyZQb', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebef66595edf6f913e0f7c5b93', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174ef66595edf6f913e0f7c5b93', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 18, 18, 27, 31, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6x0GKK1wLHJpQlRg9NViiB', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4cysB2a8Q2cJ5g2ZX1Y0gV', + 'name': "ORDO M'ERA LUNA", + 'uri': 'spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273283ac365388db9cf8f6533cc', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02283ac365388db9cf8f6533cc', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851283ac365388db9cf8f6533cc', + 'width': 64, + }), + ]), + 'name': 'Dark Heart Of The Moon', + 'release_date': '2025-05-09', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:6x0GKK1wLHJpQlRg9NViiB', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178ef66595edf6f913e0f7c5b93', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '4cysB2a8Q2cJ5g2ZX1Y0gV', + 'name': "ORDO M'ERA LUNA", + 'uri': 'spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV', + }), + ]), + 'disc_number': 1, + 'duration_ms': 214093, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0kqIcYezyGQTiXeQFEbJ4m', }), - ]), - 'name': 'Romy', - 'uri': 'spotify:artist:3X2DdnmoANw8Rg8luHyZQb', + 'href': 'https://api.spotify.com/v1/tracks/0kqIcYezyGQTiXeQFEbJ4m', + 'is_local': False, + 'name': 'Dark Heart Of The Moon', + 'track_id': '0kqIcYezyGQTiXeQFEbJ4m', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0kqIcYezyGQTiXeQFEbJ4m', + }), }), dict({ - 'artist_id': '0Lwn2PjwIw7QaoN7gHyqCA', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb659cb7ca4d5e02f48a2ef9f0', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174659cb7ca4d5e02f48a2ef9f0', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 15, 22, 57, 12, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '6gePAokYlEquPQ4LDVc1ri', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7ouEqUl1PCVPlNninecdcz', + 'name': 'HAVEN.', + 'uri': 'spotify:artist:7ouEqUl1PCVPlNninecdcz', + }), + dict({ + 'artist_id': '29G5je6tT7As2ZFY72CdXs', + 'name': 'Kaitlin Aragon', + 'uri': 'spotify:artist:29G5je6tT7As2ZFY72CdXs', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099', + 'width': 64, + }), + ]), + 'name': 'I Run', + 'release_date': '2025-11-21', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:6gePAokYlEquPQ4LDVc1ri', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178659cb7ca4d5e02f48a2ef9f0', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '7ouEqUl1PCVPlNninecdcz', + 'name': 'HAVEN.', + 'uri': 'spotify:artist:7ouEqUl1PCVPlNninecdcz', + }), + dict({ + 'artist_id': '29G5je6tT7As2ZFY72CdXs', + 'name': 'Kaitlin Aragon', + 'uri': 'spotify:artist:29G5je6tT7As2ZFY72CdXs', + }), + ]), + 'disc_number': 1, + 'duration_ms': 129565, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g', }), - ]), - 'name': 'Wolf Saga', - 'uri': 'spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA', + 'href': 'https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g', + 'is_local': False, + 'name': 'I Run', + 'track_id': '1WwQ714xuznu44tEnkem2g', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1WwQ714xuznu44tEnkem2g', + }), }), dict({ - 'artist_id': '7gP3bB2nilZXLfPHJhMdvc', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 15, 22, 51, 25, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '1iEczV3pKJ9MPmRvYGB9bz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '43BxCL6t4c73BQnIJtry5v', + 'name': 'James Hype', + 'uri': 'spotify:artist:43BxCL6t4c73BQnIJtry5v', + }), + dict({ + 'artist_id': '0czTwfZBBvlvlOiypvDvwe', + 'name': 'Sam Harper', + 'uri': 'spotify:artist:0czTwfZBBvlvlOiypvDvwe', + }), + dict({ + 'artist_id': '2biXipa3IRLZUOnXgtKmXc', + 'name': 'Bobby Harvey', + 'uri': 'spotify:artist:2biXipa3IRLZUOnXgtKmXc', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381', + 'width': 64, + }), + ]), + 'name': 'Waterfalls (feat. Sam Harper & Bobby Harvey)', + 'release_date': '2025-08-08', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1iEczV3pKJ9MPmRvYGB9bz', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '43BxCL6t4c73BQnIJtry5v', + 'name': 'James Hype', + 'uri': 'spotify:artist:43BxCL6t4c73BQnIJtry5v', + }), + dict({ + 'artist_id': '0czTwfZBBvlvlOiypvDvwe', + 'name': 'Sam Harper', + 'uri': 'spotify:artist:0czTwfZBBvlvlOiypvDvwe', + }), + dict({ + 'artist_id': '2biXipa3IRLZUOnXgtKmXc', + 'name': 'Bobby Harvey', + 'uri': 'spotify:artist:2biXipa3IRLZUOnXgtKmXc', + }), + ]), + 'disc_number': 1, + 'duration_ms': 120578, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3', }), - ]), - 'name': 'Foster The People', - 'uri': 'spotify:artist:7gP3bB2nilZXLfPHJhMdvc', + 'href': 'https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3', + 'is_local': False, + 'name': 'Waterfalls (feat. Sam Harper & Bobby Harvey)', + 'track_id': '1OcV53oesLQw3VTW9I3uD3', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1OcV53oesLQw3VTW9I3uD3', + }), }), dict({ - 'artist_id': '3hE8S8ohRErocpkY7uJW4a', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebd7fd83f3a54ab822936034b6', - 'width': 640, - }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174d7fd83f3a54ab822936034b6', - 'width': 320, + 'added_at': datetime.datetime(2025, 12, 15, 22, 51, 17, tzinfo=datetime.timezone.utc), + 'track': dict({ + 'album': dict({ + 'album_id': '4MkZ4elzb1iHTMmzyYh1Jc', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0QaSiI5TLA4N7mcsdxShDO', + 'name': 'Sub Focus', + 'uri': 'spotify:artist:0QaSiI5TLA4N7mcsdxShDO', + }), + dict({ + 'artist_id': '2UNjfzEkfsdWVDwnuD6vdH', + 'name': 'bbyclose', + 'uri': 'spotify:artist:2UNjfzEkfsdWVDwnuD6vdH', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273c49f59a5fb56e49d55b36558', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02c49f59a5fb56e49d55b36558', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c49f59a5fb56e49d55b36558', + 'width': 64, + }), + ]), + 'name': 'On & On', + 'release_date': '2025-03-14', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:4MkZ4elzb1iHTMmzyYh1Jc', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178d7fd83f3a54ab822936034b6', - 'width': 160, + 'artists': list([ + dict({ + 'artist_id': '0QaSiI5TLA4N7mcsdxShDO', + 'name': 'Sub Focus', + 'uri': 'spotify:artist:0QaSiI5TLA4N7mcsdxShDO', + }), + dict({ + 'artist_id': '2UNjfzEkfsdWVDwnuD6vdH', + 'name': 'bbyclose', + 'uri': 'spotify:artist:2UNjfzEkfsdWVDwnuD6vdH', + }), + ]), + 'disc_number': 1, + 'duration_ms': 184827, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2B0xsnWUjm7cPLs9gGoepp', }), - ]), - 'name': 'Within Temptation', - 'uri': 'spotify:artist:3hE8S8ohRErocpkY7uJW4a', + 'href': 'https://api.spotify.com/v1/tracks/2B0xsnWUjm7cPLs9gGoepp', + 'is_local': False, + 'name': 'On & On', + 'track_id': '2B0xsnWUjm7cPLs9gGoepp', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2B0xsnWUjm7cPLs9gGoepp', + }), }), - dict({ - 'artist_id': '3jULn43a6xfzqleyeFjPIq', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc', - 'width': 640, + ]) +# --- +# name: test_get_show + dict({ + 'description': 'Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.', + 'episodes': list([ + dict({ + 'description': 'Don\'t back this Kickstarter: http://kck.st/4qBbxoEPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4749648, + 'episode_id': '3TFqlEpcxCgD118RdWy4l6', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3TFqlEpcxCgD118RdWy4l6', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/3TFqlEpcxCgD118RdWy4l6', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'We Tried Making a Better Coke - Safety Third 158', + 'release_date': '2026-02-19', + 'release_date_precision': , + 'uri': 'spotify:episode:3TFqlEpcxCgD118RdWy4l6', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069@WilliamOsman2\u2069\u2068@NileRed\u2069Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4190616, + 'episode_id': '7237hqixNa5Pa1bV5Pak2p', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7237hqixNa5Pa1bV5Pak2p', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/7237hqixNa5Pa1bV5Pak2p', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ae32a1a91e4974bf4cfe752a1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fe32a1a91e4974bf4cfe752a1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68de32a1a91e4974bf4cfe752a1', + 'width': 64, + }), + ]), + 'name': 'how long can we actually keep this up? - Safety Third 157', + 'release_date': '2026-02-12', + 'release_date_precision': , + 'uri': 'spotify:episode:7237hqixNa5Pa1bV5Pak2p', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5486976, + 'episode_id': '2X2dSrYifdwxzNA5I9YGpl', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2X2dSrYifdwxzNA5I9YGpl', + }), + 'href': 'https://api.spotify.com/v1/episodes/2X2dSrYifdwxzNA5I9YGpl', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'are you actually angry or just frustrated? - Safety Third 156', + 'release_date': '2026-02-05', + 'release_date_precision': , + 'uri': 'spotify:episode:2X2dSrYifdwxzNA5I9YGpl', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0\u2068@TheBackyardScientist\u2069\xa0\xa0\u2068@WilliamOsman2\u2069\xa0\xa0\u2068@NileRed\u2069\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3047904, + 'episode_id': '2bA0hdVhjQOR4fwgYwfJK4', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2bA0hdVhjQOR4fwgYwfJK4', + }), + 'href': 'https://api.spotify.com/v1/episodes/2bA0hdVhjQOR4fwgYwfJK4', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a8a97f0d163dfdc3020ddc6a4', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f8a97f0d163dfdc3020ddc6a4', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d8a97f0d163dfdc3020ddc6a4', + 'width': 64, + }), + ]), + 'name': 'Is your workshop just a storage unit? - Safety Third 155', + 'release_date': '2026-01-29', + 'release_date_precision': , + 'uri': 'spotify:episode:2bA0hdVhjQOR4fwgYwfJK4', + }), + dict({ + 'description': 'Watch \xa0@LabCoatz_Science\xa0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUwPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5867928, + 'episode_id': '5jg6DwBwVPbRtafX2bMXfW', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5jg6DwBwVPbRtafX2bMXfW', }), - ]), - 'name': 'Area 11', - 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', - }), - dict({ - 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/5jg6DwBwVPbRtafX2bMXfW', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': "He STOLE Coke's Secret Recipe - Safety Third 154", + 'release_date': '2026-01-22', + 'release_date_precision': , + 'uri': 'spotify:episode:5jg6DwBwVPbRtafX2bMXfW', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5365080, + 'episode_id': '7qu6i0NNgDSQy76Z3HRZ6S', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7qu6i0NNgDSQy76Z3HRZ6S', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/7qu6i0NNgDSQy76Z3HRZ6S', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a7c7f05ad6605e500a55302ee', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f7c7f05ad6605e500a55302ee', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d7c7f05ad6605e500a55302ee', + 'width': 64, + }), + ]), + 'name': 'RAM prices DESTROYED our computer builds- Safety Third 153', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:7qu6i0NNgDSQy76Z3HRZ6S', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3635800, + 'episode_id': '3uNZj71kjRvHqSfRhDuat3', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3uNZj71kjRvHqSfRhDuat3', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/3uNZj71kjRvHqSfRhDuat3', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a7c9b586110f14bfebfc8d12e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f7c9b586110f14bfebfc8d12e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d7c9b586110f14bfebfc8d12e', + 'width': 64, + }), + ]), + 'name': 'Confessing Our Worst Childhood Pranks - Safety Third 152', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:3uNZj71kjRvHqSfRhDuat3', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed2\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5826951, + 'episode_id': '6lhqiOpaAuxilP07sLfuV8', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6lhqiOpaAuxilP07sLfuV8', }), - ]), - 'name': 'Purple Disco Machine', - 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', - }), - dict({ - 'artist_id': '6M2wZ9GZgrQXHCFfjv46we', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb0c68f6c95232e716f0abee8d', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/6lhqiOpaAuxilP07sLfuV8', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a7c8e9118ee68825631a8a2fb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f7c8e9118ee68825631a8a2fb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d7c8e9118ee68825631a8a2fb', + 'width': 64, + }), + ]), + 'name': "I Survived PayMoneyWubby's 24-Hour Torture Stream (And Got PTSD) - Safety Third 151", + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:6lhqiOpaAuxilP07sLfuV8', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4026932, + 'episode_id': '4w4d295F7QwCCy2dCCIVoq', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4w4d295F7QwCCy2dCCIVoq', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051740c68f6c95232e716f0abee8d', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/4w4d295F7QwCCy2dCCIVoq', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a1caeb53f42c57c5041db2e12', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f1caeb53f42c57c5041db2e12', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d1caeb53f42c57c5041db2e12', + 'width': 64, + }), + ]), + 'name': 'how far back do we remember - Safety Third 150', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:4w4d295F7QwCCy2dCCIVoq', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4417018, + 'episode_id': '2Xfuh9pem3qCEA5wWIE3mC', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2Xfuh9pem3qCEA5wWIE3mC', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1780c68f6c95232e716f0abee8d', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/2Xfuh9pem3qCEA5wWIE3mC', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a76337e64fb02e22fed37928f', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f76337e64fb02e22fed37928f', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d76337e64fb02e22fed37928f', + 'width': 64, + }), + ]), + 'name': 'even NileRed can’t afford this - Safety Third 149', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:2Xfuh9pem3qCEA5wWIE3mC', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4553012, + 'episode_id': '2zh1C31QQj9d4zddWtBX1N', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2zh1C31QQj9d4zddWtBX1N', }), - ]), - 'name': 'Dua Lipa', - 'uri': 'spotify:artist:6M2wZ9GZgrQXHCFfjv46we', - }), - dict({ - 'artist_id': '2Ndq6RparrhEoceel7LC4Z', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebf44a22ddf0de309ddf0ae8a9', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/2zh1C31QQj9d4zddWtBX1N', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a1dea658e2ab066895d4cf5bd', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f1dea658e2ab066895d4cf5bd', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d1dea658e2ab066895d4cf5bd', + 'width': 64, + }), + ]), + 'name': 'Why Carbon Nanotubes Are Nearly Impossible to Make - Safety Third 148', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:2zh1C31QQj9d4zddWtBX1N', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \xa0@TheBackyardScientist\xa0 \xa0@WilliamOsman2\xa0 \xa0@NileRed\xa0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3794181, + 'episode_id': '6ilVUUydSRAnaJvjjwNuzt', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6ilVUUydSRAnaJvjjwNuzt', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174f44a22ddf0de309ddf0ae8a9', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/6ilVUUydSRAnaJvjjwNuzt', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a0860f82a32b6efecac503e1e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f0860f82a32b6efecac503e1e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d0860f82a32b6efecac503e1e', + 'width': 64, + }), + ]), + 'name': 'solar is a scam - Safety Third 147', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:6ilVUUydSRAnaJvjjwNuzt', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRedExtra\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4410697, + 'episode_id': '4yYkLICPT4hwKiE12ahmaS', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4yYkLICPT4hwKiE12ahmaS', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178f44a22ddf0de309ddf0ae8a9', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/4yYkLICPT4hwKiE12ahmaS', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': "there's an infestation - Safety Third 146", + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:4yYkLICPT4hwKiE12ahmaS', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@TommyCallaway\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5904953, + 'episode_id': '71lgHMUv6DqIPVSBR0lHIe', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/71lgHMUv6DqIPVSBR0lHIe', }), - ]), - 'name': 'Anna Yvette', - 'uri': 'spotify:artist:2Ndq6RparrhEoceel7LC4Z', - }), - dict({ - 'artist_id': '3oKRxpszQKUjjaHz388fVA', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5ebd178e3af6da2eef262630ee2', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/71lgHMUv6DqIPVSBR0lHIe', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a8271d8dab008b881d45a7876', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f8271d8dab008b881d45a7876', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d8271d8dab008b881d45a7876', + 'width': 64, + }), + ]), + 'name': 'how to make $100000 on youtube - Safety Third 145', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:71lgHMUv6DqIPVSBR0lHIe', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4753006, + 'episode_id': '31Z5wPeZ2QF2ETpX94aTTz', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/31Z5wPeZ2QF2ETpX94aTTz', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174d178e3af6da2eef262630ee2', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/31Z5wPeZ2QF2ETpX94aTTz', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aced64cb5f44b398cf1cb0a93', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fced64cb5f44b398cf1cb0a93', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dced64cb5f44b398cf1cb0a93', + 'width': 64, + }), + ]), + 'name': "We SAVED Will's Farm - Safety Third 144", + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:31Z5wPeZ2QF2ETpX94aTTz', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5129952, + 'episode_id': '57IS2fYCmc0tRR1jtREKXp', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/57IS2fYCmc0tRR1jtREKXp', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178d178e3af6da2eef262630ee2', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/57IS2fYCmc0tRR1jtREKXp', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aca97ae44e72b12aafb9d98b9', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fca97ae44e72b12aafb9d98b9', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dca97ae44e72b12aafb9d98b9', + 'width': 64, + }), + ]), + 'name': 'Our Stupid Childhood Inventions - Safety Third 143', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:57IS2fYCmc0tRR1jtREKXp', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4548284, + 'episode_id': '3m0ohH2FGgFIhyOLnbBc5D', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3m0ohH2FGgFIhyOLnbBc5D', }), - ]), - 'name': 'Parcels', - 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', - }), - dict({ - 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/3m0ohH2FGgFIhyOLnbBc5D', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a07a2e7c0152f1061053d04f4', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f07a2e7c0152f1061053d04f4', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d07a2e7c0152f1061053d04f4', + 'width': 64, + }), + ]), + 'name': "we're back again baby! - Safety Third 142", + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:3m0ohH2FGgFIhyOLnbBc5D', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\xa0@TheBackyardScientist\xa0\xa0@WilliamOsman2\xa0\xa0@NileRed\xa0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it\'s just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4619050, + 'episode_id': '3Djm1peAXhH2DJAcf5EI4t', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3Djm1peAXhH2DJAcf5EI4t', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/3Djm1peAXhH2DJAcf5EI4t', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aed276654b59a905bfa8d3fdb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fed276654b59a905bfa8d3fdb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68ded276654b59a905bfa8d3fdb', + 'width': 64, + }), + ]), + 'name': 'How We Keep Getting Through TSA - Safety Third 141', + 'release_date': '2026-01-16', + 'release_date_precision': , + 'uri': 'spotify:episode:3Djm1peAXhH2DJAcf5EI4t', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5121048, + 'episode_id': '0RGDUnfGOJmsSgoTu6A9wb', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0RGDUnfGOJmsSgoTu6A9wb', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/0RGDUnfGOJmsSgoTu6A9wb', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aaa7ca654e29007b236cf268a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1faa7ca654e29007b236cf268a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68daa7ca654e29007b236cf268a', + 'width': 64, + }), + ]), + 'name': 'What happen to NileRed? - Safety Third 140', + 'release_date': '2025-06-19', + 'release_date_precision': , + 'uri': 'spotify:episode:0RGDUnfGOJmsSgoTu6A9wb', + }), + dict({ + 'description': '🤤Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3700631, + 'episode_id': '6hh4HTvEggU2CtulBw5Bfd', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6hh4HTvEggU2CtulBw5Bfd', }), - ]), - 'name': 'Confidence Man', - 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', - }), - dict({ - 'artist_id': '3PyJHH2wyfQK3WZrk9rpmP', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb200914459687748118b36954', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/6hh4HTvEggU2CtulBw5Bfd', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a24544d9f88e8bea1c4a43541', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f24544d9f88e8bea1c4a43541', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d24544d9f88e8bea1c4a43541', + 'width': 64, + }), + ]), + 'name': 'Gourmet or a Biohazard - Safety Third 139', + 'release_date': '2025-06-05', + 'release_date_precision': , + 'uri': 'spotify:episode:6hh4HTvEggU2CtulBw5Bfd', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 6014520, + 'episode_id': '1pBmRheQbSnndzrsyQxcoO', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1pBmRheQbSnndzrsyQxcoO', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174200914459687748118b36954', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/1pBmRheQbSnndzrsyQxcoO', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a9f444dde32e222b2e0ea809a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f9f444dde32e222b2e0ea809a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d9f444dde32e222b2e0ea809a', + 'width': 64, + }), + ]), + 'name': 'We Did It In 6 Days - Safety Third 138', + 'release_date': '2025-05-29', + 'release_date_precision': , + 'uri': 'spotify:episode:1pBmRheQbSnndzrsyQxcoO', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4768368, + 'episode_id': '4xxuGDc2mV6D4Ilv3Ok8dA', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4xxuGDc2mV6D4Ilv3Ok8dA', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178200914459687748118b36954', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/4xxuGDc2mV6D4Ilv3Ok8dA', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aa7871036b390d33b743dacf2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fa7871036b390d33b743dacf2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68da7871036b390d33b743dacf2', + 'width': 64, + }), + ]), + 'name': "What's In Water?- Safety Third 137", + 'release_date': '2025-05-15', + 'release_date_precision': , + 'uri': 'spotify:episode:4xxuGDc2mV6D4Ilv3Ok8dA', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5291760, + 'episode_id': '0K68py3R90cjUQJiMJypoB', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0K68py3R90cjUQJiMJypoB', }), - ]), - 'name': 'Ashnikko', - 'uri': 'spotify:artist:3PyJHH2wyfQK3WZrk9rpmP', - }), - dict({ - 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6761610000e5eb804f352e162347a18f6401fa', - 'width': 640, + 'href': 'https://api.spotify.com/v1/episodes/0K68py3R90cjUQJiMJypoB', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a172a24c4cd98acaa6651f071', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f172a24c4cd98acaa6651f071', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d172a24c4cd98acaa6651f071', + 'width': 64, + }), + ]), + 'name': 'We Investigate the Bee Problem - Safety Third 136', + 'release_date': '2025-05-08', + 'release_date_precision': , + 'uri': 'spotify:episode:0K68py3R90cjUQJiMJypoB', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5255231, + 'episode_id': '3NMwNuYdExWcYKmyml7Y9S', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3NMwNuYdExWcYKmyml7Y9S', }), - dict({ - 'height': 320, - 'url': 'https://i.scdn.co/image/ab67616100005174804f352e162347a18f6401fa', - 'width': 320, + 'href': 'https://api.spotify.com/v1/episodes/3NMwNuYdExWcYKmyml7Y9S', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a94a8d4c84116774b11869dea', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f94a8d4c84116774b11869dea', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d94a8d4c84116774b11869dea', + 'width': 64, + }), + ]), + 'name': 'The Future of Science Videos... - Safety Third 135', + 'release_date': '2025-05-01', + 'release_date_precision': , + 'uri': 'spotify:episode:3NMwNuYdExWcYKmyml7Y9S', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5718840, + 'episode_id': '1a77xkMaa0L6Ry7deZmX7C', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1a77xkMaa0L6Ry7deZmX7C', }), - dict({ - 'height': 160, - 'url': 'https://i.scdn.co/image/ab6761610000f178804f352e162347a18f6401fa', - 'width': 160, + 'href': 'https://api.spotify.com/v1/episodes/1a77xkMaa0L6Ry7deZmX7C', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a2d89fc55b99736a3f0dc37d2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f2d89fc55b99736a3f0dc37d2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d2d89fc55b99736a3f0dc37d2', + 'width': 64, + }), + ]), + 'name': "Let's Do Dangerous Experiments - Safety Third 134", + 'release_date': '2025-04-24', + 'release_date_precision': , + 'uri': 'spotify:episode:1a77xkMaa0L6Ry7deZmX7C', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5144640, + 'episode_id': '7Iddb7fU6NQK4CVQzg8pRt', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7Iddb7fU6NQK4CVQzg8pRt', }), - ]), - 'name': 'Röyksopp', - 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', - }), - ]) -# --- -# name: test_get_top_tracks - list([ - dict({ - 'album': dict({ - 'album_id': '45Qix7gFNajr6IofEIhhE4', - 'album_type': , - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/7Iddb7fU6NQK4CVQzg8pRt', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a677a69719097ce8c3b30a8bc', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f677a69719097ce8c3b30a8bc', + 'width': 300, + }), dict({ - 'artist_id': '0PCCGZ0wGLizHt2KZ7hhA2', - 'name': 'Artemas', - 'uri': 'spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d677a69719097ce8c3b30a8bc', + 'width': 64, }), ]), + 'name': 'Getting Away with Crime - Safety Third 133', + 'release_date': '2025-04-17', + 'release_date_precision': , + 'uri': 'spotify:episode:7Iddb7fU6NQK4CVQzg8pRt', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4117583, + 'episode_id': '3GMMfTQFAKluh2ZCmDBq0B', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3GMMfTQFAKluh2ZCmDBq0B', + }), + 'href': 'https://api.spotify.com/v1/episodes/3GMMfTQFAKluh2ZCmDBq0B', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273c88e6a4447087f41eb388b14', + 'url': 'https://i.scdn.co/image/ab6765630000ba8a3a79d75ad1e43fcd54120273', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02c88e6a4447087f41eb388b14', + 'url': 'https://i.scdn.co/image/ab67656300005f1f3a79d75ad1e43fcd54120273', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851c88e6a4447087f41eb388b14', + 'url': 'https://i.scdn.co/image/ab6765630000f68d3a79d75ad1e43fcd54120273', 'width': 64, }), ]), - 'name': 'i like the way you kiss me (burnt)', - 'release_date': '2024-03-26', + 'name': 'Is Bigger Better? - Safety Third 132', + 'release_date': '2025-04-10', 'release_date_precision': , - 'total_tracks': 2, - 'uri': 'spotify:album:45Qix7gFNajr6IofEIhhE4', + 'uri': 'spotify:episode:3GMMfTQFAKluh2ZCmDBq0B', }), - 'artists': list([ - dict({ - 'artist_id': '0PCCGZ0wGLizHt2KZ7hhA2', - 'name': 'Artemas', - 'uri': 'spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5034768, + 'episode_id': '1e0uQx6quq5Q8pGkBvmI4z', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1e0uQx6quq5Q8pGkBvmI4z', }), - ]), - 'disc_number': 1, - 'duration_ms': 142514, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3oRoMXsP2NRzm51lldj1RO', + 'href': 'https://api.spotify.com/v1/episodes/1e0uQx6quq5Q8pGkBvmI4z', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': "We're Not Lovin’ It - Safety Third 131 - Safety Third 131", + 'release_date': '2025-04-03', + 'release_date_precision': , + 'uri': 'spotify:episode:1e0uQx6quq5Q8pGkBvmI4z', }), - 'href': 'https://api.spotify.com/v1/tracks/3oRoMXsP2NRzm51lldj1RO', - 'is_local': False, - 'name': 'i like the way you kiss me', - 'track_id': '3oRoMXsP2NRzm51lldj1RO', - 'track_number': 2, - 'type': , - 'uri': 'spotify:track:3oRoMXsP2NRzm51lldj1RO', - }), - dict({ - 'album': dict({ - 'album_id': '3pjMBXbDLg2oGL7HtVxWgY', - 'album_type': , - 'artists': list([ + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5616576, + 'episode_id': '62DQPE6rzL6QubfVmc6wiJ', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/62DQPE6rzL6QubfVmc6wiJ', + }), + 'href': 'https://api.spotify.com/v1/episodes/62DQPE6rzL6QubfVmc6wiJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a09dd0918e72f37f4e45e3484', + 'width': 640, + }), dict({ - 'artist_id': '4YLtscXsxbVgi031ovDDdh', - 'name': 'Chris Stapleton', - 'uri': 'spotify:artist:4YLtscXsxbVgi031ovDDdh', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f09dd0918e72f37f4e45e3484', + 'width': 300, }), dict({ - 'artist_id': '6M2wZ9GZgrQXHCFfjv46we', - 'name': 'Dua Lipa', - 'uri': 'spotify:artist:6M2wZ9GZgrQXHCFfjv46we', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d09dd0918e72f37f4e45e3484', + 'width': 64, }), ]), + 'name': 'Space is Hard - Safety Third 130', + 'release_date': '2025-03-27', + 'release_date_precision': , + 'uri': 'spotify:episode:62DQPE6rzL6QubfVmc6wiJ', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5608823, + 'episode_id': '5xbFenzg8j2MMvVSmUnlR2', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5xbFenzg8j2MMvVSmUnlR2', + }), + 'href': 'https://api.spotify.com/v1/episodes/5xbFenzg8j2MMvVSmUnlR2', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27386f028311a5a746aa46b412f', + 'url': 'https://i.scdn.co/image/ab6765630000ba8a390f4a4fd6167520cbe06250', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0286f028311a5a746aa46b412f', + 'url': 'https://i.scdn.co/image/ab67656300005f1f390f4a4fd6167520cbe06250', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485186f028311a5a746aa46b412f', + 'url': 'https://i.scdn.co/image/ab6765630000f68d390f4a4fd6167520cbe06250', 'width': 64, }), ]), - 'name': "Think I'm In Love With You (With Dua Lipa) (Live From The 59th ACM Awards)", - 'release_date': '2024-05-01', + 'name': 'NileRed’s Childhood Trauma - Safety Third 129', + 'release_date': '2025-03-20', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3pjMBXbDLg2oGL7HtVxWgY', + 'uri': 'spotify:episode:5xbFenzg8j2MMvVSmUnlR2', }), - 'artists': list([ - dict({ - 'artist_id': '4YLtscXsxbVgi031ovDDdh', - 'name': 'Chris Stapleton', - 'uri': 'spotify:artist:4YLtscXsxbVgi031ovDDdh', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5331480, + 'episode_id': '2W8M0lrvTSd6HM4ByLbVBg', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2W8M0lrvTSd6HM4ByLbVBg', }), - dict({ - 'artist_id': '6M2wZ9GZgrQXHCFfjv46we', - 'name': 'Dua Lipa', - 'uri': 'spotify:artist:6M2wZ9GZgrQXHCFfjv46we', + 'href': 'https://api.spotify.com/v1/episodes/2W8M0lrvTSd6HM4ByLbVBg', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac6b7e3a8e1c8b10906f82deb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc6b7e3a8e1c8b10906f82deb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc6b7e3a8e1c8b10906f82deb', + 'width': 64, + }), + ]), + 'name': 'Is it good internship? - Safety Third 128', + 'release_date': '2025-03-13', + 'release_date_precision': , + 'uri': 'spotify:episode:2W8M0lrvTSd6HM4ByLbVBg', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4423368, + 'episode_id': '1cbSydOSIAElmsZ2wG55YF', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1cbSydOSIAElmsZ2wG55YF', }), - ]), - 'disc_number': 1, - 'duration_ms': 277066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/69zgu5rlAie3IPZOEXLxyS', + 'href': 'https://api.spotify.com/v1/episodes/1cbSydOSIAElmsZ2wG55YF', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab618e09100a574e2410b8075', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb618e09100a574e2410b8075', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db618e09100a574e2410b8075', + 'width': 64, + }), + ]), + 'name': 'Our best business idea yet - Safety Third 127', + 'release_date': '2025-03-06', + 'release_date_precision': , + 'uri': 'spotify:episode:1cbSydOSIAElmsZ2wG55YF', }), - 'href': 'https://api.spotify.com/v1/tracks/69zgu5rlAie3IPZOEXLxyS', - 'is_local': False, - 'name': "Think I'm In Love With You (With Dua Lipa) (Live From The 59th ACM Awards)", - 'track_id': '69zgu5rlAie3IPZOEXLxyS', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:69zgu5rlAie3IPZOEXLxyS', - }), - dict({ - 'album': dict({ - 'album_id': '0X9CpcnwoPgzznLDDGx8PI', - 'album_type': , - 'artists': list([ + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5128248, + 'episode_id': '7nkWaQCTwCl0Dy7KQzVKgJ', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7nkWaQCTwCl0Dy7KQzVKgJ', + }), + 'href': 'https://api.spotify.com/v1/episodes/7nkWaQCTwCl0Dy7KQzVKgJ', + 'images': list([ dict({ - 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', - 'name': 'Confidence Man', - 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aaeca1df66b68db2b6ae8eb55', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1faeca1df66b68db2b6ae8eb55', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68daeca1df66b68db2b6ae8eb55', + 'width': 64, }), ]), + 'name': 'NileRed - Safety Third 126', + 'release_date': '2025-02-27', + 'release_date_precision': , + 'uri': 'spotify:episode:7nkWaQCTwCl0Dy7KQzVKgJ', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5082240, + 'episode_id': '316huXjTjaHz3sMZt77F2S', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/316huXjTjaHz3sMZt77F2S', + }), + 'href': 'https://api.spotify.com/v1/episodes/316huXjTjaHz3sMZt77F2S', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f9f4f5a25c823292baed3ae1', + 'url': 'https://i.scdn.co/image/ab6765630000ba8adcf056832b32a240b38888fe', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f9f4f5a25c823292baed3ae1', + 'url': 'https://i.scdn.co/image/ab67656300005f1fdcf056832b32a240b38888fe', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f9f4f5a25c823292baed3ae1', + 'url': 'https://i.scdn.co/image/ab6765630000f68ddcf056832b32a240b38888fe', 'width': 64, }), ]), - 'name': 'TILT', - 'release_date': '2022-04-01', + 'name': 'Hiding NSFW Material in Optical Illusions - Safety Third 125', + 'release_date': '2025-02-20', 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:0X9CpcnwoPgzznLDDGx8PI', + 'uri': 'spotify:episode:316huXjTjaHz3sMZt77F2S', }), - 'artists': list([ - dict({ - 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', - 'name': 'Confidence Man', - 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3842933, + 'episode_id': '70DaOV8Y2u28R5OCbMGq40', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/70DaOV8Y2u28R5OCbMGq40', }), - ]), - 'disc_number': 1, - 'duration_ms': 288160, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/53wnscuzFnH8jaGymzqgfi', + 'href': 'https://api.spotify.com/v1/episodes/70DaOV8Y2u28R5OCbMGq40', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'How NileRed Almost Lost a Video - Safety Third 124', + 'release_date': '2025-02-13', + 'release_date_precision': , + 'uri': 'spotify:episode:70DaOV8Y2u28R5OCbMGq40', }), - 'href': 'https://api.spotify.com/v1/tracks/53wnscuzFnH8jaGymzqgfi', - 'is_local': False, - 'name': 'Holiday', - 'track_id': '53wnscuzFnH8jaGymzqgfi', - 'track_number': 6, - 'type': , - 'uri': 'spotify:track:53wnscuzFnH8jaGymzqgfi', - }), - dict({ - 'album': dict({ - 'album_id': '57MSBg5pBQZH5bfLVDmeuP', - 'album_type': , - 'artists': list([ + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4225946, + 'episode_id': '7HmmkFKjEns2aALdxmBrRL', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7HmmkFKjEns2aALdxmBrRL', + }), + 'href': 'https://api.spotify.com/v1/episodes/7HmmkFKjEns2aALdxmBrRL', + 'images': list([ dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, }), ]), + 'name': 'We Have Problems - Safety Third 123', + 'release_date': '2025-02-06', + 'release_date_precision': , + 'uri': 'spotify:episode:7HmmkFKjEns2aALdxmBrRL', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5018209, + 'episode_id': '56kSgt0rYKVILw7IMjqi5S', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/56kSgt0rYKVILw7IMjqi5S', + }), + 'href': 'https://api.spotify.com/v1/episodes/56kSgt0rYKVILw7IMjqi5S', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'In Waves', - 'release_date': '2024-09-20', + 'name': 'Someone Keeps Pulling Money Out of His Bank Account - Safety Third 122', + 'release_date': '2025-01-30', 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:57MSBg5pBQZH5bfLVDmeuP', + 'uri': 'spotify:episode:56kSgt0rYKVILw7IMjqi5S', }), - 'artists': list([ - dict({ - 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', - 'name': 'Jamie xx', - 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', - }), - dict({ - 'artist_id': '2Q4FR4Ss0mh6EvbiQBHEOU', - 'name': 'Oona Doherty', - 'uri': 'spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4313258, + 'episode_id': '4a1OnVZout7utVcxNJLDeA', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4a1OnVZout7utVcxNJLDeA', }), - ]), - 'disc_number': 1, - 'duration_ms': 337414, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI', - }), - 'href': 'https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI', - 'is_local': False, - 'name': 'Falling Together', - 'track_id': '08Jhu8OZ6gCIGWQn6vP3uI', - 'track_number': 12, - 'type': , - 'uri': 'spotify:track:08Jhu8OZ6gCIGWQn6vP3uI', - }), - dict({ - 'album': dict({ - 'album_id': '5HIWDdg3g9CTOtnevKDl1z', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0PCCGZ0wGLizHt2KZ7hhA2', - 'name': 'Artemas', - 'uri': 'spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/4a1OnVZout7utVcxNJLDeA', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273e67611dbbf69a90d0b6cb738', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02e67611dbbf69a90d0b6cb738', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851e67611dbbf69a90d0b6cb738', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'i like the way you kiss me', - 'release_date': '2024-03-19', + 'name': "NileRed's Most Dangerous Machine - Safety Third 121", + 'release_date': '2025-01-23', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5HIWDdg3g9CTOtnevKDl1z', + 'uri': 'spotify:episode:4a1OnVZout7utVcxNJLDeA', }), - 'artists': list([ - dict({ - 'artist_id': '0PCCGZ0wGLizHt2KZ7hhA2', - 'name': 'Artemas', - 'uri': 'spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4364976, + 'episode_id': '3zrPDefh3l6bIswzU3KbkB', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3zrPDefh3l6bIswzU3KbkB', }), - ]), - 'disc_number': 1, - 'duration_ms': 142514, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2GxrNKugF82CnoRFbQfzPf', - }), - 'href': 'https://api.spotify.com/v1/tracks/2GxrNKugF82CnoRFbQfzPf', - 'is_local': False, - 'name': 'i like the way you kiss me', - 'track_id': '2GxrNKugF82CnoRFbQfzPf', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2GxrNKugF82CnoRFbQfzPf', - }), - dict({ - 'album': dict({ - 'album_id': '3zdCJ99bye9e0G6U8w4ajS', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', - 'name': 'Onkruid', - 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/3zrPDefh3l6bIswzU3KbkB', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27310b56c729a899af9d12a5a27', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0210b56c729a899af9d12a5a27', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485110b56c729a899af9d12a5a27', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'Zo Gemeen', - 'release_date': '2023-09-23', + 'name': 'More Machines, More Problems - Safety Third 120', + 'release_date': '2025-01-16', 'release_date_precision': , - 'total_tracks': 2, - 'uri': 'spotify:album:3zdCJ99bye9e0G6U8w4ajS', + 'uri': 'spotify:episode:3zrPDefh3l6bIswzU3KbkB', }), - 'artists': list([ - dict({ - 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', - 'name': 'Onkruid', - 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3690161, + 'episode_id': '3o0RYoo5iOMKSmEbunsbvW', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW', }), - ]), - 'disc_number': 1, - 'duration_ms': 149116, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/09D3ELdbZ4JZ1si0Nitv9t', - }), - 'href': 'https://api.spotify.com/v1/tracks/09D3ELdbZ4JZ1si0Nitv9t', - 'is_local': False, - 'name': 'Zo Gemeen', - 'track_id': '09D3ELdbZ4JZ1si0Nitv9t', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:09D3ELdbZ4JZ1si0Nitv9t', - }), - dict({ - 'album': dict({ - 'album_id': '6X2fbRz8huOXlxzId6ET7J', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4yvcSjfu4PC0CYQyLy4wSq', - 'name': 'Glass Animals', - 'uri': 'spotify:artist:4yvcSjfu4PC0CYQyLy4wSq', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27339266eeddfd90b43ba544f7b', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0239266eeddfd90b43ba544f7b', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485139266eeddfd90b43ba544f7b', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'A Tear in Space (Airlock)', - 'release_date': '2024-06-07', + 'name': 'My Squirrel Has Brain Damage - Safety Third 119', + 'release_date': '2024-07-26', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6X2fbRz8huOXlxzId6ET7J', + 'uri': 'spotify:episode:3o0RYoo5iOMKSmEbunsbvW', }), - 'artists': list([ - dict({ - 'artist_id': '4yvcSjfu4PC0CYQyLy4wSq', - 'name': 'Glass Animals', - 'uri': 'spotify:artist:4yvcSjfu4PC0CYQyLy4wSq', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5690591, + 'episode_id': '7CbsFHQq8ljztiUSGw46Fj', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj', }), - ]), - 'disc_number': 1, - 'duration_ms': 203989, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6Bi1Y7TD70eWTCKn7jsQQm', - }), - 'href': 'https://api.spotify.com/v1/tracks/6Bi1Y7TD70eWTCKn7jsQQm', - 'is_local': False, - 'name': 'A Tear in Space (Airlock)', - 'track_id': '6Bi1Y7TD70eWTCKn7jsQQm', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:6Bi1Y7TD70eWTCKn7jsQQm', - }), - dict({ - 'album': dict({ - 'album_id': '0WWjvPdLmnwYrTi03XJ9ib', - 'album_type': , - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), dict({ - 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', - 'name': 'Purple Disco Machine', - 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, }), dict({ - 'artist_id': '7jEEE187pVG6InOxn03oA5', - 'name': 'Benjamin Ingrosso', - 'uri': 'spotify:artist:7jEEE187pVG6InOxn03oA5', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, }), ]), + 'name': 'Math Haters vs Math Nerd - Safety Third 118', + 'release_date': '2024-07-18', + 'release_date_precision': , + 'uri': 'spotify:episode:7CbsFHQq8ljztiUSGw46Fj', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5808720, + 'episode_id': '7I6SU4lQbmxipsRNN5hGGk', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk', + }), + 'href': 'https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27351254e0f220bfed7028497ac', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0251254e0f220bfed7028497ac', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485151254e0f220bfed7028497ac', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'Honey Boy (feat. Nile Rodgers & Shenseea)', - 'release_date': '2024-05-03', + 'name': 'Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117', + 'release_date': '2024-07-11', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:0WWjvPdLmnwYrTi03XJ9ib', + 'uri': 'spotify:episode:7I6SU4lQbmxipsRNN5hGGk', }), - 'artists': list([ - dict({ - 'artist_id': '2WBJQGf1bT1kxuoqziH5g4', - 'name': 'Purple Disco Machine', - 'uri': 'spotify:artist:2WBJQGf1bT1kxuoqziH5g4', - }), - dict({ - 'artist_id': '7jEEE187pVG6InOxn03oA5', - 'name': 'Benjamin Ingrosso', - 'uri': 'spotify:artist:7jEEE187pVG6InOxn03oA5', - }), - dict({ - 'artist_id': '3yDIp0kaq9EFKe07X1X2rz', - 'name': 'Nile Rodgers', - 'uri': 'spotify:artist:3yDIp0kaq9EFKe07X1X2rz', - }), - dict({ - 'artist_id': '1OFOShsIbhy1l5x73yuVyB', - 'name': 'Shenseea', - 'uri': 'spotify:artist:1OFOShsIbhy1l5x73yuVyB', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5290728, + 'episode_id': '5RTOrKLydGUJxiebaBbEbe', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe', }), - ]), - 'disc_number': 1, - 'duration_ms': 227283, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1NpIUD4KqHaMT91kw0YV40', - }), - 'href': 'https://api.spotify.com/v1/tracks/1NpIUD4KqHaMT91kw0YV40', - 'is_local': False, - 'name': 'Honey Boy (feat. Nile Rodgers & Shenseea)', - 'track_id': '1NpIUD4KqHaMT91kw0YV40', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:1NpIUD4KqHaMT91kw0YV40', - }), - dict({ - 'album': dict({ - 'album_id': '5quMTd5zeI9yW5UDua8wS4', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '74KM79TiuVKeVCqs8QtB0B', - 'name': 'Sabrina Carpenter', - 'uri': 'spotify:artist:74KM79TiuVKeVCqs8QtB0B', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273659cd4673230913b3918e0d5', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02659cd4673230913b3918e0d5', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851659cd4673230913b3918e0d5', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'Espresso', - 'release_date': '2024-04-12', + 'name': "NileRed's Most Important Employee - Safety Third 116", + 'release_date': '2024-07-04', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5quMTd5zeI9yW5UDua8wS4', + 'uri': 'spotify:episode:5RTOrKLydGUJxiebaBbEbe', }), - 'artists': list([ - dict({ - 'artist_id': '74KM79TiuVKeVCqs8QtB0B', - 'name': 'Sabrina Carpenter', - 'uri': 'spotify:artist:74KM79TiuVKeVCqs8QtB0B', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 6685800, + 'episode_id': '2cxiMfCIlOPiMQhsdRMKG0', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0', }), - ]), - 'disc_number': 1, - 'duration_ms': 175459, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75', - }), - 'href': 'https://api.spotify.com/v1/tracks/2qSkIjg1o9h3YT9RAgYN75', - 'is_local': False, - 'name': 'Espresso', - 'track_id': '2qSkIjg1o9h3YT9RAgYN75', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2qSkIjg1o9h3YT9RAgYN75', - }), - dict({ - 'album': dict({ - 'album_id': '6DExt1eX4lflLacVjHHbOs', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4MVyzYMgTwdP7Z49wAZHx0', - 'name': 'Lynyrd Skynyrd', - 'uri': 'spotify:artist:4MVyzYMgTwdP7Z49wAZHx0', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02128450651c9f0442780d8eb8', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851128450651c9f0442780d8eb8', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': "Pronounced' Leh-'Nerd 'Skin-'Nerd", - 'release_date': '1973-01-01', + 'name': 'How Real Engineering Got Fired - Safety Third 115', + 'release_date': '2024-06-27', 'release_date_precision': , - 'total_tracks': 8, - 'uri': 'spotify:album:6DExt1eX4lflLacVjHHbOs', - }), - 'artists': list([ - dict({ - 'artist_id': '4MVyzYMgTwdP7Z49wAZHx0', - 'name': 'Lynyrd Skynyrd', - 'uri': 'spotify:artist:4MVyzYMgTwdP7Z49wAZHx0', - }), - ]), - 'disc_number': 1, - 'duration_ms': 547106, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5EWPGh7jbTNO2wakv8LjUI', + 'uri': 'spotify:episode:2cxiMfCIlOPiMQhsdRMKG0', }), - 'href': 'https://api.spotify.com/v1/tracks/5EWPGh7jbTNO2wakv8LjUI', - 'is_local': False, - 'name': 'Free Bird', - 'track_id': '5EWPGh7jbTNO2wakv8LjUI', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:5EWPGh7jbTNO2wakv8LjUI', - }), - dict({ - 'album': dict({ - 'album_id': '5rZHUmbp3BNHmPrwvGQfca', - 'album_type': , - 'artists': list([ + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5509825, + 'episode_id': '2jALMGr63flWEdRl8NxvQR', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR', + }), + 'href': 'https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR', + 'images': list([ dict({ - 'artist_id': '66FZq0wsY6770bc4O9Dlig', - 'name': 'Vieze Asbak', - 'uri': 'spotify:artist:66FZq0wsY6770bc4O9Dlig', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, }), dict({ - 'artist_id': '6TQQsMsMKQBHjZrFv63d90', - 'name': 'HET POMPSTATION', - 'uri': 'spotify:artist:6TQQsMsMKQBHjZrFv63d90', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, }), dict({ - 'artist_id': '2DPRgxvMDx9oQNR25vUIIG', - 'name': 'Kamping Kitsch Club Soundsystem', - 'uri': 'spotify:artist:2DPRgxvMDx9oQNR25vUIIG', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, }), ]), + 'name': 'Thin Mint Zyns - Safety Third 114', + 'release_date': '2024-06-20', + 'release_date_precision': , + 'uri': 'spotify:episode:2jALMGr63flWEdRl8NxvQR', + }), + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2731702, + 'episode_id': '0Rr3sI7wj3VaNQFPhalCVj', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj', + }), + 'href': 'https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734c76dc3658c213a1aae458e6', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024c76dc3658c213a1aae458e6', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514c76dc3658c213a1aae458e6', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'De Kamping Is Van Ons (Official 2023 Kamping Kitsch Club Anthem)', - 'release_date': '2023-06-09', + 'name': 'Live from Open Sauce 2023 - Safety Third 113', + 'release_date': '2024-06-13', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5rZHUmbp3BNHmPrwvGQfca', + 'uri': 'spotify:episode:0Rr3sI7wj3VaNQFPhalCVj', }), - 'artists': list([ - dict({ - 'artist_id': '66FZq0wsY6770bc4O9Dlig', - 'name': 'Vieze Asbak', - 'uri': 'spotify:artist:66FZq0wsY6770bc4O9Dlig', - }), - dict({ - 'artist_id': '2DPRgxvMDx9oQNR25vUIIG', - 'name': 'Kamping Kitsch Club Soundsystem', - 'uri': 'spotify:artist:2DPRgxvMDx9oQNR25vUIIG', - }), - dict({ - 'artist_id': '6TQQsMsMKQBHjZrFv63d90', - 'name': 'HET POMPSTATION', - 'uri': 'spotify:artist:6TQQsMsMKQBHjZrFv63d90', - }), - dict({ - 'artist_id': '3fLUixLOM1KxH2PgdN3PMK', - 'name': 'Yung Petsi', - 'uri': 'spotify:artist:3fLUixLOM1KxH2PgdN3PMK', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5192437, + 'episode_id': '3XKOIVuGVzzEPNnlyz7PX4', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4', }), - ]), - 'disc_number': 1, - 'duration_ms': 195750, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/53OU7d2qWJskS1AL35vAUh', - }), - 'href': 'https://api.spotify.com/v1/tracks/53OU7d2qWJskS1AL35vAUh', - 'is_local': False, - 'name': 'De Kamping Is Van Ons - Official 2023 Kamping Kitsch Club Anthem', - 'track_id': '53OU7d2qWJskS1AL35vAUh', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:53OU7d2qWJskS1AL35vAUh', - }), - dict({ - 'album': dict({ - 'album_id': '03dlqdFWY9gwJxGl3AREVy', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1YEGETLT2p8k97LIo3deHL', - 'name': 'Crash Test Dummies', - 'uri': 'spotify:artist:1YEGETLT2p8k97LIo3deHL', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273df9d39dded05faa9ed520ca6', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02df9d39dded05faa9ed520ca6', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851df9d39dded05faa9ed520ca6', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'God Shuffled His Feet', - 'release_date': '1993-04-05', + 'name': 'He Tried Hiring a Child Bartender - Safety Third 112', + 'release_date': '2024-06-06', 'release_date_precision': , - 'total_tracks': 12, - 'uri': 'spotify:album:03dlqdFWY9gwJxGl3AREVy', + 'uri': 'spotify:episode:3XKOIVuGVzzEPNnlyz7PX4', }), - 'artists': list([ - dict({ - 'artist_id': '1YEGETLT2p8k97LIo3deHL', - 'name': 'Crash Test Dummies', - 'uri': 'spotify:artist:1YEGETLT2p8k97LIo3deHL', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4338191, + 'episode_id': '5qGMPBYEW5Izdm9W5F7PSb', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb', }), - ]), - 'disc_number': 1, - 'duration_ms': 235173, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/31v2AQlx4pDI7kmnLxBkem', - }), - 'href': 'https://api.spotify.com/v1/tracks/31v2AQlx4pDI7kmnLxBkem', - 'is_local': False, - 'name': 'Mmm Mmm Mmm Mmm', - 'track_id': '31v2AQlx4pDI7kmnLxBkem', - 'track_number': 3, - 'type': , - 'uri': 'spotify:track:31v2AQlx4pDI7kmnLxBkem', - }), - dict({ - 'album': dict({ - 'album_id': '7dPYE1Uoic9mBMFgwcqPaR', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7uGeDBa1LJ7T1X4fpl8mwk', - 'name': 'Bad Computer', - 'uri': 'spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk', - }), - dict({ - 'artist_id': '22TzutcnmM3B1e7mWLY0f7', - 'name': 'Ryan Coss', - 'uri': 'spotify:artist:22TzutcnmM3B1e7mWLY0f7', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b53ceefc28ae70e4189fbcdc', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b53ceefc28ae70e4189fbcdc', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b53ceefc28ae70e4189fbcdc', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': '4D', - 'release_date': '2024-01-08', + 'name': 'Ted Nivison Has a Disgusting Keyboard - Safety Third 111', + 'release_date': '2024-05-30', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:7dPYE1Uoic9mBMFgwcqPaR', + 'uri': 'spotify:episode:5qGMPBYEW5Izdm9W5F7PSb', }), - 'artists': list([ - dict({ - 'artist_id': '7uGeDBa1LJ7T1X4fpl8mwk', - 'name': 'Bad Computer', - 'uri': 'spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk', - }), - dict({ - 'artist_id': '22TzutcnmM3B1e7mWLY0f7', - 'name': 'Ryan Coss', - 'uri': 'spotify:artist:22TzutcnmM3B1e7mWLY0f7', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 5367528, + 'episode_id': '7G5CGTUvtSpLP67O4cYAWq', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq', }), - ]), - 'disc_number': 1, - 'duration_ms': 176250, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2v4bGopODBEOQqWzg31R2s', - }), - 'href': 'https://api.spotify.com/v1/tracks/2v4bGopODBEOQqWzg31R2s', - 'is_local': False, - 'name': '4D', - 'track_id': '2v4bGopODBEOQqWzg31R2s', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:2v4bGopODBEOQqWzg31R2s', - }), - dict({ - 'album': dict({ - 'album_id': '6ZKwauYXaMVezFcXV0iv5g', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0Lwn2PjwIw7QaoN7gHyqCA', - 'name': 'Wolf Saga', - 'uri': 'spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cc1bfee3c60e4e4e53ec2ed6', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cc1bfee3c60e4e4e53ec2ed6', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cc1bfee3c60e4e4e53ec2ed6', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'ODAYIN, Pt. 1', - 'release_date': '2024-02-23', + 'name': 'The Worst Parts of Dating a Mad Scientist - Safety Third 110', + 'release_date': '2024-05-23', 'release_date_precision': , - 'total_tracks': 4, - 'uri': 'spotify:album:6ZKwauYXaMVezFcXV0iv5g', + 'uri': 'spotify:episode:7G5CGTUvtSpLP67O4cYAWq', }), - 'artists': list([ - dict({ - 'artist_id': '0Lwn2PjwIw7QaoN7gHyqCA', - 'name': 'Wolf Saga', - 'uri': 'spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA', + dict({ + 'description': 'Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 6502817, + 'episode_id': '3cJk5Cfvpkrdf9hxY5Hi3p', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p', }), - ]), - 'disc_number': 1, - 'duration_ms': 222047, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6U33GnHUKkECze9LXllZ3e', - }), - 'href': 'https://api.spotify.com/v1/tracks/6U33GnHUKkECze9LXllZ3e', - 'is_local': False, - 'name': 'Night Odyssey', - 'track_id': '6U33GnHUKkECze9LXllZ3e', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:6U33GnHUKkECze9LXllZ3e', - }), - dict({ - 'album': dict({ - 'album_id': '4XQN9sq92HwyTj476FMzYz', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1l2ekx5skC4gJH8djERwh1', - 'name': 'Don Diablo', - 'uri': 'spotify:artist:1l2ekx5skC4gJH8djERwh1', - }), - dict({ - 'artist_id': '4bL2B6hmLlMWnUEZnorEtG', - 'name': 'Felix Jaehn', - 'uri': 'spotify:artist:4bL2B6hmLlMWnUEZnorEtG', - }), - ]), + 'href': 'https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273467f1d5ec9f7e2fde2d9b454', + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02467f1d5ec9f7e2fde2d9b454', + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851467f1d5ec9f7e2fde2d9b454', + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', 'width': 64, }), ]), - 'name': 'Monster', - 'release_date': '2024-03-29', + 'name': 'Confronting His Old Boss - Safety Third 109', + 'release_date': '2024-05-16', 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4XQN9sq92HwyTj476FMzYz', + 'uri': 'spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p', + }), + ]), + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD', + }), + 'href': 'https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a', + 'width': 64, + }), + ]), + 'name': 'Safety Third', + 'show_id': '1Y9ExMgMxoBVrgrfU7u0nD', + 'total_episodes': 159, + 'uri': 'spotify:show:1Y9ExMgMxoBVrgrfU7u0nD', + }) +# --- +# name: test_get_show_episodes + list([ + dict({ + 'description': 'The Great War of 2077 and how the Fallout world diverged from our own. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2193893, + 'episode_id': '3ssmxnilHYaKhwRWoBGMbU', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU', + }), + 'href': 'https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a224b816136e4325c58a7c15b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f224b816136e4325c58a7c15b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d224b816136e4325c58a7c15b', + 'width': 64, + }), + ]), + 'name': 'The Great War - Fallout Lorecast EP 1', + 'release_date': '2019-01-09', + 'release_date_precision': , + 'uri': 'spotify:episode:3ssmxnilHYaKhwRWoBGMbU', + }), + dict({ + 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2472333, + 'episode_id': '1bbj9aqeeZ3UMUlcWN0S03', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03', + }), + 'href': 'https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a2a60efcce283f3eebea03b01', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f2a60efcce283f3eebea03b01', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d2a60efcce283f3eebea03b01', + 'width': 64, + }), + ]), + 'name': 'Who Dropped the First Bomb?', + 'release_date': '2019-01-15', + 'release_date_precision': , + 'uri': 'spotify:episode:1bbj9aqeeZ3UMUlcWN0S03', + }), + dict({ + 'description': 'The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2263640, + 'episode_id': '4zui8zWBisCfnTkZ1vgIc0', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a15b2cb1cf646a9b161d1226b', + 'width': 640, + }), dict({ - 'artist_id': '1l2ekx5skC4gJH8djERwh1', - 'name': 'Don Diablo', - 'uri': 'spotify:artist:1l2ekx5skC4gJH8djERwh1', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f15b2cb1cf646a9b161d1226b', + 'width': 300, }), dict({ - 'artist_id': '4bL2B6hmLlMWnUEZnorEtG', - 'name': 'Felix Jaehn', - 'uri': 'spotify:artist:4bL2B6hmLlMWnUEZnorEtG', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d15b2cb1cf646a9b161d1226b', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 144000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0oWN1xuaWUrx8QGiYqxAs9', - }), - 'href': 'https://api.spotify.com/v1/tracks/0oWN1xuaWUrx8QGiYqxAs9', - 'is_local': False, - 'name': 'Monster', - 'track_id': '0oWN1xuaWUrx8QGiYqxAs9', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:0oWN1xuaWUrx8QGiYqxAs9', + 'name': 'Vault-Tec Corporation', + 'release_date': '2019-01-22', + 'release_date_precision': , + 'uri': 'spotify:episode:4zui8zWBisCfnTkZ1vgIc0', }), dict({ - 'album': dict({ - 'album_id': '59Qjgges0uTL92An8PBqdQ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0bLxXoUrh0kANKQMWts8KV', - 'name': 'Felicia Lu', - 'uri': 'spotify:artist:0bLxXoUrh0kANKQMWts8KV', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273b9b026737c166ac31bc5de5f', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02b9b026737c166ac31bc5de5f', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851b9b026737c166ac31bc5de5f', - 'width': 64, - }), - ]), - 'name': 'Something Regrettable', - 'release_date': '2023-09-29', - 'release_date_precision': , - 'total_tracks': 13, - 'uri': 'spotify:album:59Qjgges0uTL92An8PBqdQ', + 'description': 'Most of the vaults are terrible, this one is ghoulish.Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 520044, + 'episode_id': '7wH4iaoceRIympxiLVZPHF', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aace3770451596db4137aa9e5', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1face3770451596db4137aa9e5', + 'width': 300, + }), dict({ - 'artist_id': '0bLxXoUrh0kANKQMWts8KV', - 'name': 'Felicia Lu', - 'uri': 'spotify:artist:0bLxXoUrh0kANKQMWts8KV', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dace3770451596db4137aa9e5', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 165000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6e4GfqQl153Q6FbEF0efdC', - }), - 'href': 'https://api.spotify.com/v1/tracks/6e4GfqQl153Q6FbEF0efdC', - 'is_local': False, - 'name': 'My Boy', - 'track_id': '6e4GfqQl153Q6FbEF0efdC', - 'track_number': 8, - 'type': , - 'uri': 'spotify:track:6e4GfqQl153Q6FbEF0efdC', + 'name': 'Vault 3 A Fiendish Finish', + 'release_date': '2019-01-24', + 'release_date_precision': , + 'uri': 'spotify:episode:7wH4iaoceRIympxiLVZPHF', }), dict({ - 'album': dict({ - 'album_id': '2OxR6XLzZdDBSLDqFiWQ1g', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', - 'name': 'Onkruid', - 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2735942282ecc673556663e297a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e025942282ecc673556663e297a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048515942282ecc673556663e297a', - 'width': 64, - }), - ]), - 'name': 'Ergens in de Twintig', - 'release_date': '2020-09-24', - 'release_date_precision': , - 'total_tracks': 6, - 'uri': 'spotify:album:2OxR6XLzZdDBSLDqFiWQ1g', + 'description': 'The lore behind Vault 8 and Vault City.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 814027, + 'episode_id': '4Z2MUOz9GBHzHsEIAc5Ltl', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a13d0eefc4d146b76eea15d67', + 'width': 640, + }), dict({ - 'artist_id': '74Yus6IHfa3tWZzXXAYtS2', - 'name': 'Onkruid', - 'uri': 'spotify:artist:74Yus6IHfa3tWZzXXAYtS2', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f13d0eefc4d146b76eea15d67', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d13d0eefc4d146b76eea15d67', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 228061, + 'name': 'Vault 8 & Vault City', + 'release_date': '2019-01-26', + 'release_date_precision': , + 'uri': 'spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl', + }), + dict({ + 'description': 'The origins of the Brotherhood of Steel and Roger Maxson.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2312124, + 'episode_id': '24IzdUok36xLkgQEjOjS6V', 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1bqyBEwMTEI2gw9KSkm1CR', + 'spotify': 'https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V', }), - 'href': 'https://api.spotify.com/v1/tracks/1bqyBEwMTEI2gw9KSkm1CR', - 'is_local': False, - 'name': 'Op Sandalen in de Club', - 'track_id': '1bqyBEwMTEI2gw9KSkm1CR', - 'track_number': 4, - 'type': , - 'uri': 'spotify:track:1bqyBEwMTEI2gw9KSkm1CR', + 'href': 'https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a0c6fc7fba3ac1ee8579693db', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f0c6fc7fba3ac1ee8579693db', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d0c6fc7fba3ac1ee8579693db', + 'width': 64, + }), + ]), + 'name': 'The Brotherhood of Steel (Origin)', + 'release_date': '2019-01-28', + 'release_date_precision': , + 'uri': 'spotify:episode:24IzdUok36xLkgQEjOjS6V', }), dict({ - 'album': dict({ - 'album_id': '0M0iJGLagLtI4LlooOiiNZ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', - }), - dict({ - 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', - 'name': 'Anderson .Paak', - 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', - }), - dict({ - 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', - 'name': 'CHIKA', - 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27354539f552c0fda9cb1ecd0c8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0254539f552c0fda9cb1ecd0c8', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485154539f552c0fda9cb1ecd0c8', - 'width': 64, - }), - ]), - 'name': 'places to be', - 'release_date': '2024-05-31', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:0M0iJGLagLtI4LlooOiiNZ', + 'description': 'The lore behind Vault 11 and the dilemma of self-preservation versus morality.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 833097, + 'episode_id': '6fUziggVu74s6JwZ0lsIjX', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX', + 'images': list([ dict({ - 'artist_id': '4oLeXFyACqeem2VImYeBFe', - 'name': 'Fred again..', - 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a177e9739e349a411d3feaeb8', + 'width': 640, }), dict({ - 'artist_id': '3jK9MiCrA42lLAdMGUZpwa', - 'name': 'Anderson .Paak', - 'uri': 'spotify:artist:3jK9MiCrA42lLAdMGUZpwa', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f177e9739e349a411d3feaeb8', + 'width': 300, }), dict({ - 'artist_id': '6UtYvUtXnmg5EtllDFlWp8', - 'name': 'CHIKA', - 'uri': 'spotify:artist:6UtYvUtXnmg5EtllDFlWp8', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d177e9739e349a411d3feaeb8', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 226677, - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/561pBFcFL2Pwb9HPO9tU8J', - }), - 'href': 'https://api.spotify.com/v1/tracks/561pBFcFL2Pwb9HPO9tU8J', - 'is_local': False, - 'name': 'places to be', - 'track_id': '561pBFcFL2Pwb9HPO9tU8J', - 'track_number': 1, - 'type': , - 'uri': 'spotify:track:561pBFcFL2Pwb9HPO9tU8J', + 'name': 'Vault 11 The Sacrifice', + 'release_date': '2019-01-31', + 'release_date_precision': , + 'uri': 'spotify:episode:6fUziggVu74s6JwZ0lsIjX', }), dict({ - 'album': dict({ - 'album_id': '0SICrWXEeAB0feHy4iyTbH', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273bf1a057043797d5b654dce27', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02bf1a057043797d5b654dce27', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851bf1a057043797d5b654dce27', - 'width': 64, - }), - ]), - 'name': 'Samen Tegen Elkaar', - 'release_date': '2024-06-14', - 'release_date_precision': , - 'total_tracks': 17, - 'uri': 'spotify:album:0SICrWXEeAB0feHy4iyTbH', + 'description': 'The lore behind Vault 12 and the origins of a ghoulish city.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 549668, + 'episode_id': '1pYEeMveLHGbbIo10G34dx', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx', + 'images': list([ dict({ - 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', - 'name': 'Goldband', - 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac219ed826eed5a53e8630fd1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc219ed826eed5a53e8630fd1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc219ed826eed5a53e8630fd1', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 204127, + 'name': 'Vault 12 A Ghoulish Experience', + 'release_date': '2019-02-02', + 'release_date_precision': , + 'uri': 'spotify:episode:1pYEeMveLHGbbIo10G34dx', + }), + dict({ + 'description': 'The origins and ideology of the Enclave.\xa0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2096979, + 'episode_id': '1h69SINnBwMCqfEXjPAVIl', 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1L7FnIPHrVXjt49m7Dr36Z', + 'spotify': 'https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl', }), - 'href': 'https://api.spotify.com/v1/tracks/1L7FnIPHrVXjt49m7Dr36Z', - 'is_local': False, - 'name': 'Naakt Op Het Plein', - 'track_id': '1L7FnIPHrVXjt49m7Dr36Z', - 'track_number': 9, - 'type': , - 'uri': 'spotify:track:1L7FnIPHrVXjt49m7Dr36Z', + 'href': 'https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a8bc610b5319ed5d7174131af', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f8bc610b5319ed5d7174131af', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d8bc610b5319ed5d7174131af', + 'width': 64, + }), + ]), + 'name': 'The Origin of the Enclave', + 'release_date': '2019-02-04', + 'release_date_precision': , + 'uri': 'spotify:episode:1h69SINnBwMCqfEXjPAVIl', }), dict({ - 'album': dict({ - 'album_id': '0GpklLqjWNrhropGa4XRRD', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce', - 'width': 64, - }), - ]), - 'name': 'Radiosoul', - 'release_date': '2024-06-07', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:0GpklLqjWNrhropGa4XRRD', + 'description': 'The lore behind Vault 13 and an invasion by intelligent deathclaws.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1026089, + 'episode_id': '33UquUg4oftJ4ereH4nrNO', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO', }), - 'artists': list([ + 'href': 'https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO', + 'images': list([ dict({ - 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', - 'name': 'Alfie Templeman', - 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a409536212a26657ac7eefa5a', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f409536212a26657ac7eefa5a', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d409536212a26657ac7eefa5a', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 206484, + 'name': 'Vault 13 & Intelligent Deathclaws', + 'release_date': '2019-02-07', + 'release_date_precision': , + 'uri': 'spotify:episode:33UquUg4oftJ4ereH4nrNO', + }), + dict({ + 'description': 'Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\xa0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2362592, + 'episode_id': '5nkbQDDCKSH4CwYalm62er', 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO', - }), - 'href': 'https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO', - 'is_local': False, - 'name': 'This Is Just The Beginning', - 'track_id': '6Ttp9JrzcpNYG0upW6NKRO', - 'track_number': 3, - 'type': , - 'uri': 'spotify:track:6Ttp9JrzcpNYG0upW6NKRO', - }), - ]) -# --- -# name: test_search - dict({ - 'albums': list([ - dict({ - 'album_id': '02XORqPIterIIxAtmd0vAv', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4iqEVZEav7vIiv1HStr6Gx', - 'name': 'Detailed', - 'uri': 'spotify:artist:4iqEVZEav7vIiv1HStr6Gx', - }), - dict({ - 'artist_id': '7iH754eigCrs80sQ08MFAx', - 'name': 'Damaxy', - 'uri': 'spotify:artist:7iH754eigCrs80sQ08MFAx', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2731338ff43064f5569b688d84e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e021338ff43064f5569b688d84e', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048511338ff43064f5569b688d84e', - 'width': 64, - }), - ]), - 'name': 'Oldschool', - 'release_date': '2025-01-23', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:02XORqPIterIIxAtmd0vAv', - }), - dict({ - 'album_id': '7E4noAp6wjOrAUa2LFY9Lh', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '3NOLGndGHL48IB3YFdA36r', - 'name': 'Alon', - 'uri': 'spotify:artist:3NOLGndGHL48IB3YFdA36r', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2730a042c5a53fb590b20159247', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e020a042c5a53fb590b20159247', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048510a042c5a53fb590b20159247', - 'width': 64, - }), - ]), - 'name': 'Older', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:7E4noAp6wjOrAUa2LFY9Lh', - }), - dict({ - 'album_id': '21nmDib5NI3XZ9LcxVuQLG', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0M3W0VPiLEjryaAfMEoP8z', - 'name': 'Pien', - 'uri': 'spotify:artist:0M3W0VPiLEjryaAfMEoP8z', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273ed9252bd06d28911bb1ec822', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02ed9252bd06d28911bb1ec822', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851ed9252bd06d28911bb1ec822', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2024-05-17', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:21nmDib5NI3XZ9LcxVuQLG', - }), - dict({ - 'album_id': '3I8BYxuKYGigt7Q0nQqbZl', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1hn1L1XJda0m8P3r3ebF0S', - 'name': 'Burn the Jukebox', - 'uri': 'spotify:artist:1hn1L1XJda0m8P3r3ebF0S', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273c1901c24c499fa0cb568b877', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02c1901c24c499fa0cb568b877', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851c1901c24c499fa0cb568b877', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2023-06-09', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3I8BYxuKYGigt7Q0nQqbZl', - }), - dict({ - 'album_id': '2lndvw9y9t8db2ehwUEU9r', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '0B6IiyD6eUa5YfYzGz0L5V', - 'name': 'Theis EZ', - 'uri': 'spotify:artist:0B6IiyD6eUa5YfYzGz0L5V', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27340d6d028449b14221ee97a49', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0240d6d028449b14221ee97a49', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485140d6d028449b14221ee97a49', - 'width': 64, - }), - ]), - 'name': 'Oldschool Sound', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:2lndvw9y9t8db2ehwUEU9r', + 'spotify': 'https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er', }), - dict({ - 'album_id': '6uBuMzCh4LjbxelwfLNeGI', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2Lvu2BLcnNvNw8yaKMKkBY', - 'name': 'SHIVAN', - 'uri': 'spotify:artist:2Lvu2BLcnNvNw8yaKMKkBY', - }), - dict({ - 'artist_id': '6aH5wUamNyPqimXRBt67k1', - 'name': 'Hoved', - 'uri': 'spotify:artist:6aH5wUamNyPqimXRBt67k1', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2737a2c05d4621e6ef88d99c32c', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e027a2c05d4621e6ef88d99c32c', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048517a2c05d4621e6ef88d99c32c', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2020-02-28', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:6uBuMzCh4LjbxelwfLNeGI', + 'href': 'https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837', + 'width': 64, + }), + ]), + 'name': '[SNEAK PEEK] - Elder Scrolls Lorecast First Episode', + 'release_date': '2019-02-11', + 'release_date_precision': , + 'uri': 'spotify:episode:5nkbQDDCKSH4CwYalm62er', + }), + dict({ + 'description': 'Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\xa0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4749139, + 'episode_id': '18tLLTavfPIPoJxau3xDQJ', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ', }), - dict({ - 'album_id': '0Px1WVf0Kvxfp13W9yCUHa', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4t4VkbXR9kExivO6uzOkth', - 'name': 'Cody Browning', - 'uri': 'spotify:artist:4t4VkbXR9kExivO6uzOkth', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273906f8acb008d3050a8c40953', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02906f8acb008d3050a8c40953', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851906f8acb008d3050a8c40953', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2023-11-29', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:0Px1WVf0Kvxfp13W9yCUHa', + 'href': 'https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ae51cfa015cbd544a002bccbe', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fe51cfa015cbd544a002bccbe', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68de51cfa015cbd544a002bccbe', + 'width': 64, + }), + ]), + 'name': 'Power Armor w/ Duke from Out of the Vault', + 'release_date': '2019-02-13', + 'release_date_precision': , + 'uri': 'spotify:episode:18tLLTavfPIPoJxau3xDQJ', + }), + dict({ + 'description': "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 806974, + 'episode_id': '1EQ6z4eaCRs6kJeVXjWIcm', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm', }), - dict({ - 'album_id': '4rgejByvAJSID1nDCAeOCg', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5uTcUahIsGpgZ1Gzu23004', - 'name': 'Titus Haskins', - 'uri': 'spotify:artist:5uTcUahIsGpgZ1Gzu23004', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27393fa91761476d47119e756e1', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0293fa91761476d47119e756e1', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485193fa91761476d47119e756e1', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2024-03-15', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4rgejByvAJSID1nDCAeOCg', + 'href': 'https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a5ec46a0a8e2a9bd2da0ff0ed', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f5ec46a0a8e2a9bd2da0ff0ed', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d5ec46a0a8e2a9bd2da0ff0ed', + 'width': 64, + }), + ]), + 'name': 'Vault 15 The Origin of The Khans', + 'release_date': '2019-02-16', + 'release_date_precision': , + 'uri': 'spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm', + }), + dict({ + 'description': 'In this episode, we discuss the origin, research, and importance of West Tek.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2198700, + 'episode_id': '5ia7J0CaNRhuxsB0yVxdcn', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn', }), - dict({ - 'album_id': '20OkXlNvLXg6WhCU2giFMA', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7z5KwSoePmOQYtbUSuJgUh', - 'name': 'Pedyrus', - 'uri': 'spotify:artist:7z5KwSoePmOQYtbUSuJgUh', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738fe2ec5832a56e343f19348e', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028fe2ec5832a56e343f19348e', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518fe2ec5832a56e343f19348e', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '2023-02-25', - 'release_date_precision': , - 'total_tracks': 2, - 'uri': 'spotify:album:20OkXlNvLXg6WhCU2giFMA', + 'href': 'https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ad78d04bb088afb0a28507ae3', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fd78d04bb088afb0a28507ae3', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dd78d04bb088afb0a28507ae3', + 'width': 64, + }), + ]), + 'name': 'West Tek - FEV & Power Armor', + 'release_date': '2019-02-20', + 'release_date_precision': , + 'uri': 'spotify:episode:5ia7J0CaNRhuxsB0yVxdcn', + }), + dict({ + 'description': 'In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 882076, + 'episode_id': '1rzpxakE5YSwvSX6rXlG1V', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V', }), - dict({ - 'album_id': '1fzj07jlfG3LlWg0SGfqt6', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7FvqZfHmTRRR4KVZPpZr9s', - 'name': 'XVGNS', - 'uri': 'spotify:artist:7FvqZfHmTRRR4KVZPpZr9s', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273f3c7b8b4ed246c55d80a6778', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02f3c7b8b4ed246c55d80a6778', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851f3c7b8b4ed246c55d80a6778', - 'width': 64, - }), - ]), - 'name': 'OLD MEMORY', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 3, - 'uri': 'spotify:album:1fzj07jlfG3LlWg0SGfqt6', + 'href': 'https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aff81331e3ff9b334529acf3d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fff81331e3ff9b334529acf3d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dff81331e3ff9b334529acf3d', + 'width': 64, + }), + ]), + 'name': 'Vault 19 Red vs Blue (or On Tribalism)', + 'release_date': '2019-02-25', + 'release_date_precision': , + 'uri': 'spotify:episode:1rzpxakE5YSwvSX6rXlG1V', + }), + dict({ + 'description': 'Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2252251, + 'episode_id': '1PI4CPzbfD5HFEMWlaNQAV', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV', }), - dict({ - 'album_id': '2HmTlFULDXO52BvSChRGJv', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5RIPjT0oNRQ8XGPcnwBL8n', - 'name': 'DvirNuns', - 'uri': 'spotify:artist:5RIPjT0oNRQ8XGPcnwBL8n', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27325930a501e5fdf66cc60b46b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0225930a501e5fdf66cc60b46b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485125930a501e5fdf66cc60b46b', - 'width': 64, - }), - ]), - 'name': 'Old School TB', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:2HmTlFULDXO52BvSChRGJv', + 'href': 'https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac6f34f6430f9c4a3ad47c295', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc6f34f6430f9c4a3ad47c295', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc6f34f6430f9c4a3ad47c295', + 'width': 64, + }), + ]), + 'name': 'Super Mutants', + 'release_date': '2019-02-27', + 'release_date_precision': , + 'uri': 'spotify:episode:1PI4CPzbfD5HFEMWlaNQAV', + }), + dict({ + 'description': 'Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2875219, + 'episode_id': '4CZKdqqXWP5ez2rOzT5eL6', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6', + }), + 'href': 'https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a671b875905fa85a37794e728', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f671b875905fa85a37794e728', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d671b875905fa85a37794e728', + 'width': 64, + }), + ]), + 'name': 'West Virginia and Fallout 76 w/ Dave from Vault Boys WV', + 'release_date': '2019-03-06', + 'release_date_precision': , + 'uri': 'spotify:episode:4CZKdqqXWP5ez2rOzT5eL6', + }), + dict({ + 'description': 'This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2147004, + 'episode_id': '1SOZlOQl3FYwatj6Zvfrsj', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj', }), - dict({ - 'album_id': '4tVKDhY4DuXYWBm2n85CLF', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '3N7feSJ5L5LiXyBvcFVUPm', - 'name': 'CPRCRN', - 'uri': 'spotify:artist:3N7feSJ5L5LiXyBvcFVUPm', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27342363e2a303d895762a7ec64', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0242363e2a303d895762a7ec64', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485142363e2a303d895762a7ec64', - 'width': 64, - }), - ]), - 'name': 'old school (Slowed and Reverb)', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:4tVKDhY4DuXYWBm2n85CLF', + 'href': 'https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a231f303240fb4cff66631727', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f231f303240fb4cff66631727', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d231f303240fb4cff66631727', + 'width': 64, + }), + ]), + 'name': 'Ghouls!', + 'release_date': '2019-03-13', + 'release_date_precision': , + 'uri': 'spotify:episode:1SOZlOQl3FYwatj6Zvfrsj', + }), + dict({ + 'description': 'Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2028669, + 'episode_id': '16hX5oaM52mREneUOHdBiA', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA', }), - dict({ - 'album_id': '1fP2VgEkNKevlFiHu5FnGL', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7bHm3B3jJju0q9FUdOgp3b', - 'name': 'Blockhead', - 'uri': 'spotify:artist:7bHm3B3jJju0q9FUdOgp3b', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2736f9d95d19f689e68a2b74bb6', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e026f9d95d19f689e68a2b74bb6', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048516f9d95d19f689e68a2b74bb6', - 'width': 64, - }), - ]), - 'name': 'That Olde Timey Sourcery', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:1fP2VgEkNKevlFiHu5FnGL', + 'href': 'https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a3b1dde4fdcf1bd80837f188d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f3b1dde4fdcf1bd80837f188d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d3b1dde4fdcf1bd80837f188d', + 'width': 64, + }), + ]), + 'name': 'Vault 21 - A Roll of the Dice', + 'release_date': '2019-03-20', + 'release_date_precision': , + 'uri': 'spotify:episode:16hX5oaM52mREneUOHdBiA', + }), + dict({ + 'description': 'This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2764538, + 'episode_id': '2qvIReQpMaGK9OEeuW47VS', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS', }), - dict({ - 'album_id': '0vh22TbDhqij8CsFJMl8fu', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7JMqAqShijOCtkhVqIIAI3', - 'name': 'Maxim Rad', - 'uri': 'spotify:artist:7JMqAqShijOCtkhVqIIAI3', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2738ecbe43e7df80ce3c5132dbf', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e028ecbe43e7df80ce3c5132dbf', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048518ecbe43e7df80ce3c5132dbf', - 'width': 64, - }), - ]), - 'name': 'Old', - 'release_date': '1993-05-03', - 'release_date_precision': , - 'total_tracks': 16, - 'uri': 'spotify:album:0vh22TbDhqij8CsFJMl8fu', + 'href': 'https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a96e9fbfd524c6a0c883d9600', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f96e9fbfd524c6a0c883d9600', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d96e9fbfd524c6a0c883d9600', + 'width': 64, + }), + ]), + 'name': 'Deathclaws', + 'release_date': '2019-03-28', + 'release_date_precision': , + 'uri': 'spotify:episode:2qvIReQpMaGK9OEeuW47VS', + }), + dict({ + 'description': "How'd you like to be mind controlled by fungus?\xa0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 2129684, + 'episode_id': '3zEdqLh9PXFGCKAdvZcVPa', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3zEdqLh9PXFGCKAdvZcVPa', }), - dict({ - 'album_id': '5LGAmeGeiO7xYvcMtNZ2nE', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '2fvlcT93u5SQePtPugGGpz', - 'name': 'Arielan Vide', - 'uri': 'spotify:artist:2fvlcT93u5SQePtPugGGpz', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b2739b3f1a37e11fdef107d59e13', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e029b3f1a37e11fdef107d59e13', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d000048519b3f1a37e11fdef107d59e13', - 'width': 64, - }), - ]), - 'name': 'For Old Days Gone', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:5LGAmeGeiO7xYvcMtNZ2nE', + 'href': 'https://api.spotify.com/v1/episodes/3zEdqLh9PXFGCKAdvZcVPa', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a2a2b2c2191341a700f6357f5', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f2a2b2c2191341a700f6357f5', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d2a2b2c2191341a700f6357f5', + 'width': 64, + }), + ]), + 'name': 'Vault 22 - Fungus Zombies', + 'release_date': '2019-04-03', + 'release_date_precision': , + 'uri': 'spotify:episode:3zEdqLh9PXFGCKAdvZcVPa', + }), + dict({ + 'description': 'How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4128705, + 'episode_id': '2tTa25CiLYBnlJtYc2B5Mj', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2tTa25CiLYBnlJtYc2B5Mj', }), - dict({ - 'album_id': '45evuVVrY9LzPez8geNEIF', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '19ra5tSw0tWufvUp8GotLo', - 'name': 'George Michael', - 'uri': 'spotify:artist:19ra5tSw0tWufvUp8GotLo', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273721aa94703c1a94c735aacd0', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02721aa94703c1a94c735aacd0', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851721aa94703c1a94c735aacd0', - 'width': 64, - }), - ]), - 'name': 'Older', - 'release_date': '1996-05-13', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:45evuVVrY9LzPez8geNEIF', + 'href': 'https://api.spotify.com/v1/episodes/2tTa25CiLYBnlJtYc2B5Mj', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a2bf6dc2d6838fab7ab17e223', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f2bf6dc2d6838fab7ab17e223', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d2bf6dc2d6838fab7ab17e223', + 'width': 64, + }), + ]), + 'name': 'Movie Influences w/ Stuart from Committee Quest', + 'release_date': '2019-04-11', + 'release_date_precision': , + 'uri': 'spotify:episode:2tTa25CiLYBnlJtYc2B5Mj', + }), + dict({ + 'description': 'The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2118086, + 'episode_id': '4Tyt0Prd9yqd2vv4wC1TJE', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4Tyt0Prd9yqd2vv4wC1TJE', }), - dict({ - 'album_id': '0AMT378RSZtNOXrzDNkkZJ', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '4VmbEmPe7idiK1hjtCODVy', - 'name': 'Stefan Scholz', - 'uri': 'spotify:artist:4VmbEmPe7idiK1hjtCODVy', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27382e9e623a5acb286ac99263d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0282e9e623a5acb286ac99263d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485182e9e623a5acb286ac99263d', - 'width': 64, - }), - ]), - 'name': 'The old train', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:0AMT378RSZtNOXrzDNkkZJ', + 'href': 'https://api.spotify.com/v1/episodes/4Tyt0Prd9yqd2vv4wC1TJE', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aaf31ef37c37e6cdc2262e0cb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1faf31ef37c37e6cdc2262e0cb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68daf31ef37c37e6cdc2262e0cb', + 'width': 64, + }), + ]), + 'name': 'The New California Republic (NCR)', + 'release_date': '2019-04-17', + 'release_date_precision': , + 'uri': 'spotify:episode:4Tyt0Prd9yqd2vv4wC1TJE', + }), + dict({ + 'description': "Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 1838393, + 'episode_id': '2N9dQBdUq02DWnZ7NalLGv', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2N9dQBdUq02DWnZ7NalLGv', }), - dict({ - 'album_id': '3i1NMEP4LKF7O23cAyDqqi', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '1KgiS9L9gXZUa40X3zoBE9', - 'name': 'Rahmat Tahalu', - 'uri': 'spotify:artist:1KgiS9L9gXZUa40X3zoBE9', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273683bed6bb7d53eaaf17d92b3', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02683bed6bb7d53eaaf17d92b3', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851683bed6bb7d53eaaf17d92b3', - 'width': 64, - }), - ]), - 'name': 'Old The Style', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3i1NMEP4LKF7O23cAyDqqi', + 'href': 'https://api.spotify.com/v1/episodes/2N9dQBdUq02DWnZ7NalLGv', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a3bbb6db2291ce62d8e50e6cf', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f3bbb6db2291ce62d8e50e6cf', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d3bbb6db2291ce62d8e50e6cf', + 'width': 64, + }), + ]), + 'name': "Extra Episode - Generational Perspectives w/ Tom's Daughter Laney", + 'release_date': '2019-04-20', + 'release_date_precision': , + 'uri': 'spotify:episode:2N9dQBdUq02DWnZ7NalLGv', + }), + dict({ + 'description': 'What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1894478, + 'episode_id': '7sTC5e0OLOn1e164IRsoUH', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/7sTC5e0OLOn1e164IRsoUH', }), - dict({ - 'album_id': '5Ep5qqNDw6ZrQz0emm1IMf', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '7eMEpq0mpOCPTnLZaMZqAM', - 'name': 'Tomo', - 'uri': 'spotify:artist:7eMEpq0mpOCPTnLZaMZqAM', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b27393182445ee9610ab2c31cc17', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e0293182445ee9610ab2c31cc17', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d0000485193182445ee9610ab2c31cc17', - 'width': 64, - }), - ]), - 'name': 'The Old Parade', - 'release_date': '2025-01-24', - 'release_date_precision': , - 'total_tracks': 11, - 'uri': 'spotify:album:5Ep5qqNDw6ZrQz0emm1IMf', + 'href': 'https://api.spotify.com/v1/episodes/7sTC5e0OLOn1e164IRsoUH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a52c5396a2915758428a83fbb', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f52c5396a2915758428a83fbb', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d52c5396a2915758428a83fbb', + 'width': 64, + }), + ]), + 'name': 'The Fallout Bible & Vault 27', + 'release_date': '2019-04-24', + 'release_date_precision': , + 'uri': 'spotify:episode:7sTC5e0OLOn1e164IRsoUH', + }), + dict({ + 'description': 'Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 831451, + 'episode_id': '4hkn51b92Zss7v41zODTHV', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4hkn51b92Zss7v41zODTHV', }), - dict({ - 'album_id': '3yly1fN3mnHVpjDPmNoCLW', - 'album_type': , - 'artists': list([ - dict({ - 'artist_id': '5NDzGl3leOCXxfUcyQC0sv', - 'name': 'Sam Opoku', - 'uri': 'spotify:artist:5NDzGl3leOCXxfUcyQC0sv', - }), - ]), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab67616d0000b273cca5a9d4172c7792549ac929', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67616d00001e02cca5a9d4172c7792549ac929', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab67616d00004851cca5a9d4172c7792549ac929', - 'width': 64, - }), - ]), - 'name': 'Old (Acoustic)', - 'release_date': '2024-12-13', - 'release_date_precision': , - 'total_tracks': 1, - 'uri': 'spotify:album:3yly1fN3mnHVpjDPmNoCLW', + 'href': 'https://api.spotify.com/v1/episodes/4hkn51b92Zss7v41zODTHV', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8af3df1626a78fac918e9c928e', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1ff3df1626a78fac918e9c928e', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68df3df1626a78fac918e9c928e', + 'width': 64, + }), + ]), + 'name': 'Robots Thoughts - Safest Place During Nuclear Fallout', + 'release_date': '2019-04-27', + 'release_date_precision': , + 'uri': 'spotify:episode:4hkn51b92Zss7v41zODTHV', + }), + dict({ + 'description': "What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 2550804, + 'episode_id': '1yQIvJJLlJMphCsGMqAcPk', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1yQIvJJLlJMphCsGMqAcPk', }), - ]), - 'artists': list([ - dict({ - 'artist_id': '4BMtxSIHPpG1WM2TbvNjiR', - 'name': 'Old Gods of Asgard', - 'uri': 'spotify:artist:4BMtxSIHPpG1WM2TbvNjiR', + 'href': 'https://api.spotify.com/v1/episodes/1yQIvJJLlJMphCsGMqAcPk', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a143949ea0c4c48ee398a2f84', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f143949ea0c4c48ee398a2f84', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d143949ea0c4c48ee398a2f84', + 'width': 64, + }), + ]), + 'name': 'Synths & The Institute', + 'release_date': '2019-05-01', + 'release_date_precision': , + 'uri': 'spotify:episode:1yQIvJJLlJMphCsGMqAcPk', + }), + dict({ + 'description': 'A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2160404, + 'episode_id': '69MYgP6oCkzkcwXZjBYkCp', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/69MYgP6oCkzkcwXZjBYkCp', }), - dict({ - 'artist_id': '562Od3CffWedyz2BbeYWVn', - 'name': 'Mike Oldfield', - 'uri': 'spotify:artist:562Od3CffWedyz2BbeYWVn', + 'href': 'https://api.spotify.com/v1/episodes/69MYgP6oCkzkcwXZjBYkCp', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a8a4ef3ed09c6169d6f23bfff', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f8a4ef3ed09c6169d6f23bfff', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d8a4ef3ed09c6169d6f23bfff', + 'width': 64, + }), + ]), + 'name': 'Derek Greenway, Vault 29, Twin Mothers & The Goddess Diana', + 'release_date': '2019-05-08', + 'release_date_precision': , + 'uri': 'spotify:episode:69MYgP6oCkzkcwXZjBYkCp', + }), + dict({ + 'description': 'A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2430223, + 'episode_id': '67FIGQqDzfYVrXOoPMrQge', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/67FIGQqDzfYVrXOoPMrQge', }), - dict({ - 'artist_id': '6v2YWK8EvCyut0QtBcAypu', - 'name': 'Old Jim', - 'uri': 'spotify:artist:6v2YWK8EvCyut0QtBcAypu', + 'href': 'https://api.spotify.com/v1/episodes/67FIGQqDzfYVrXOoPMrQge', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8adee8b3a349e65a704ec081f2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fdee8b3a349e65a704ec081f2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68ddee8b3a349e65a704ec081f2', + 'width': 64, + }), + ]), + 'name': 'Fallout: A Post Nuclear Role Playing Game - A Recap of Fallout 1', + 'release_date': '2019-05-20', + 'release_date_precision': , + 'uri': 'spotify:episode:67FIGQqDzfYVrXOoPMrQge', + }), + dict({ + 'description': "What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 2052571, + 'episode_id': '4e4V4bLrK56k996hd2oPUo', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4e4V4bLrK56k996hd2oPUo', }), - dict({ - 'artist_id': '6y8XlgIV8BLlIg1tT1R10i', - 'name': 'Old Dominion', - 'uri': 'spotify:artist:6y8XlgIV8BLlIg1tT1R10i', + 'href': 'https://api.spotify.com/v1/episodes/4e4V4bLrK56k996hd2oPUo', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a0b647fbec32544ce2d4eac1b', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f0b647fbec32544ce2d4eac1b', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d0b647fbec32544ce2d4eac1b', + 'width': 64, + }), + ]), + 'name': 'Vault 34, Boomers & a Pulse Rifle', + 'release_date': '2019-05-29', + 'release_date_precision': , + 'uri': 'spotify:episode:4e4V4bLrK56k996hd2oPUo', + }), + dict({ + 'description': "Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 3112228, + 'episode_id': '1XhqJdNSG4odYRhtH8G6nJ', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1XhqJdNSG4odYRhtH8G6nJ', }), - dict({ - 'artist_id': '6vUNwmljZAcn7tNtUoxG45', - 'name': 'Old Sea Brigade', - 'uri': 'spotify:artist:6vUNwmljZAcn7tNtUoxG45', + 'href': 'https://api.spotify.com/v1/episodes/1XhqJdNSG4odYRhtH8G6nJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ab4343aace50ee621af668691', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fb4343aace50ee621af668691', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68db4343aace50ee621af668691', + 'width': 64, + }), + ]), + 'name': 'The Mr Handy Line of Robots', + 'release_date': '2019-06-04', + 'release_date_precision': , + 'uri': 'spotify:episode:1XhqJdNSG4odYRhtH8G6nJ', + }), + dict({ + 'description': 'Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4420466, + 'episode_id': '1WQVLB4QRJj4QKZ4z1RRhr', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1WQVLB4QRJj4QKZ4z1RRhr', + }), + 'href': 'https://api.spotify.com/v1/episodes/1WQVLB4QRJj4QKZ4z1RRhr', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a3f66f4de0e3b85f69b2d0092', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f3f66f4de0e3b85f69b2d0092', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d3f66f4de0e3b85f69b2d0092', + 'width': 64, + }), + ]), + 'name': 'Bethesda E3 2019 w/ Jameson from The DL', + 'release_date': '2019-06-11', + 'release_date_precision': , + 'uri': 'spotify:episode:1WQVLB4QRJj4QKZ4z1RRhr', + }), + dict({ + 'description': "A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\xa0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 2413217, + 'episode_id': '394kPEIAQCUgZCw48L4zae', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/394kPEIAQCUgZCw48L4zae', }), - dict({ - 'artist_id': '4p1ptZXSlFpZqWlsailjeU', - 'name': 'Old', - 'uri': 'spotify:artist:4p1ptZXSlFpZqWlsailjeU', + 'href': 'https://api.spotify.com/v1/episodes/394kPEIAQCUgZCw48L4zae', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a82acca7a8cf9e7c32dd33bc7', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f82acca7a8cf9e7c32dd33bc7', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d82acca7a8cf9e7c32dd33bc7', + 'width': 64, + }), + ]), + 'name': 'My Fallout RPG Play Instructions', + 'release_date': '2019-06-13', + 'release_date_precision': , + 'uri': 'spotify:episode:394kPEIAQCUgZCw48L4zae', + }), + dict({ + 'description': "These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 1768359, + 'episode_id': '4eM1aVDBA5eMyrXD0ymk0w', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/4eM1aVDBA5eMyrXD0ymk0w', }), - dict({ - 'artist_id': '50NoVNy9GU1lCrDV8iGpyu', - 'name': "Ol' Dirty Bastard", - 'uri': 'spotify:artist:50NoVNy9GU1lCrDV8iGpyu', + 'href': 'https://api.spotify.com/v1/episodes/4eM1aVDBA5eMyrXD0ymk0w', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a25115c8baee2b48ed33d245f', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f25115c8baee2b48ed33d245f', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d25115c8baee2b48ed33d245f', + 'width': 64, + }), + ]), + 'name': 'Vault Oddities - 36, 42, 43', + 'release_date': '2019-06-19', + 'release_date_precision': , + 'uri': 'spotify:episode:4eM1aVDBA5eMyrXD0ymk0w', + }), + dict({ + 'description': 'The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2481031, + 'episode_id': '3B4iAXTy5LHvMwNHSzYMRu', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3B4iAXTy5LHvMwNHSzYMRu', }), - dict({ - 'artist_id': '07ECVhQIO0OL0BBq2U1Rf6', - 'name': 'OLD', - 'uri': 'spotify:artist:07ECVhQIO0OL0BBq2U1Rf6', + 'href': 'https://api.spotify.com/v1/episodes/3B4iAXTy5LHvMwNHSzYMRu', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aaa912f37a83111b4f8038dc1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1faa912f37a83111b4f8038dc1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68daa912f37a83111b4f8038dc1', + 'width': 64, + }), + ]), + 'name': 'Fallout 2 Recap & Details', + 'release_date': '2019-06-26', + 'release_date_precision': , + 'uri': 'spotify:episode:3B4iAXTy5LHvMwNHSzYMRu', + }), + dict({ + 'description': 'More vaults from the Fallout Bible with only a short description. How would these play out?\xa0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net Our Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2313900, + 'episode_id': '6fp6VYhWvDTc627nhRcY34', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/6fp6VYhWvDTc627nhRcY34', }), - dict({ - 'artist_id': '3N8YzKqrEQonvd5RLQ4iYg', - 'name': 'Old Mervs', - 'uri': 'spotify:artist:3N8YzKqrEQonvd5RLQ4iYg', + 'href': 'https://api.spotify.com/v1/episodes/6fp6VYhWvDTc627nhRcY34', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a080c23afb045d70c6f5b14d2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f080c23afb045d70c6f5b14d2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d080c23afb045d70c6f5b14d2', + 'width': 64, + }), + ]), + 'name': 'Vault Oddities 2 - 53, 55, 56', + 'release_date': '2019-07-03', + 'release_date_precision': , + 'uri': 'spotify:episode:6fp6VYhWvDTc627nhRcY34', + }), + dict({ + 'description': 'Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3289338, + 'episode_id': '0MldixXFwkWY2EPNX8J1U9', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0MldixXFwkWY2EPNX8J1U9', }), - dict({ - 'artist_id': '4DBi4EYXgiqbkxvWUXUzMi', - 'name': 'Old Crow Medicine Show', - 'uri': 'spotify:artist:4DBi4EYXgiqbkxvWUXUzMi', + 'href': 'https://api.spotify.com/v1/episodes/0MldixXFwkWY2EPNX8J1U9', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aa1c2d6a9cf1dc66c9e3dfc8d', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fa1c2d6a9cf1dc66c9e3dfc8d', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68da1c2d6a9cf1dc66c9e3dfc8d', + 'width': 64, + }), + ]), + 'name': 'Fallout 76 Update w/ Toon', + 'release_date': '2019-07-17', + 'release_date_precision': , + 'uri': 'spotify:episode:0MldixXFwkWY2EPNX8J1U9', + }), + dict({ + 'description': 'Too many men? Too many women? Not enough... pants?\xa0 Become a patron! https://patreon.com/falloutlorecast Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2086555, + 'episode_id': '3L5KhEbyCRaBSeYcE6naD6', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3L5KhEbyCRaBSeYcE6naD6', }), - dict({ - 'artist_id': '4QuF87x3dFrXOEw7jDvbFM', - 'name': 'Old', - 'uri': 'spotify:artist:4QuF87x3dFrXOEw7jDvbFM', + 'href': 'https://api.spotify.com/v1/episodes/3L5KhEbyCRaBSeYcE6naD6', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aa3f242bdb73a658e2c7106d8', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fa3f242bdb73a658e2c7106d8', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68da3f242bdb73a658e2c7106d8', + 'width': 64, + }), + ]), + 'name': 'Vault Oddities 3 - 68, 69, 70', + 'release_date': '2019-07-24', + 'release_date_precision': , + 'uri': 'spotify:episode:3L5KhEbyCRaBSeYcE6naD6', + }), + dict({ + 'description': "Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\xa0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 3471281, + 'episode_id': '3iA0ZfSQpzR7zGzI5SpNgx', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3iA0ZfSQpzR7zGzI5SpNgx', }), - dict({ - 'artist_id': '6cH8ZqLL9KCgdPJ9tjMd3X', - 'name': 'Old', - 'uri': 'spotify:artist:6cH8ZqLL9KCgdPJ9tjMd3X', + 'href': 'https://api.spotify.com/v1/episodes/3iA0ZfSQpzR7zGzI5SpNgx', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aa901fc638a1c1da08b6bbada', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fa901fc638a1c1da08b6bbada', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68da901fc638a1c1da08b6bbada', + 'width': 64, + }), + ]), + 'name': 'Which Fallout 4 Faction was "Right" w/ Patron Guests Kryptex & Mustang', + 'release_date': '2019-07-31', + 'release_date_precision': , + 'uri': 'spotify:episode:3iA0ZfSQpzR7zGzI5SpNgx', + }), + dict({ + 'description': 'Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 2389838, + 'episode_id': '5OD0lEvUHg0BkNL3V1Stpg', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5OD0lEvUHg0BkNL3V1Stpg', }), - dict({ - 'artist_id': '1WA3ZW07yVi8mMBvPSPD1G', - 'name': 'Old', - 'uri': 'spotify:artist:1WA3ZW07yVi8mMBvPSPD1G', + 'href': 'https://api.spotify.com/v1/episodes/5OD0lEvUHg0BkNL3V1Stpg', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8abb35f07556cdd2c8e5628194', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fbb35f07556cdd2c8e5628194', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dbb35f07556cdd2c8e5628194', + 'width': 64, + }), + ]), + 'name': 'Vault City - Fallout 2 Factions', + 'release_date': '2019-08-07', + 'release_date_precision': , + 'uri': 'spotify:episode:5OD0lEvUHg0BkNL3V1Stpg', + }), + dict({ + 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1839386, + 'episode_id': '1p1GiQSxFSvkcS3BdXNZM9', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/1p1GiQSxFSvkcS3BdXNZM9', }), - dict({ - 'artist_id': '2Y2S5IcmpF2cuYbjaj7fuA', - 'name': 'Old school beats', - 'uri': 'spotify:artist:2Y2S5IcmpF2cuYbjaj7fuA', + 'href': 'https://api.spotify.com/v1/episodes/1p1GiQSxFSvkcS3BdXNZM9', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a5938a31803fc47dac08ea6b2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f5938a31803fc47dac08ea6b2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d5938a31803fc47dac08ea6b2', + 'width': 64, + }), + ]), + 'name': 'Vault 75 - Human Genetic Conditioning', + 'release_date': '2019-08-12', + 'release_date_precision': , + 'uri': 'spotify:episode:1p1GiQSxFSvkcS3BdXNZM9', + }), + dict({ + 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1956310, + 'episode_id': '5lRRLF7Y9EPwzWPUjL4wBi', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/5lRRLF7Y9EPwzWPUjL4wBi', }), - dict({ - 'artist_id': '15sJO7egTBkVMaHxCpTE1Q', - 'name': 'Mirjam Oldenhave', - 'uri': 'spotify:artist:15sJO7egTBkVMaHxCpTE1Q', + 'href': 'https://api.spotify.com/v1/episodes/5lRRLF7Y9EPwzWPUjL4wBi', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a5c1e373a2e0367acc93fb596', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f5c1e373a2e0367acc93fb596', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d5c1e373a2e0367acc93fb596', + 'width': 64, + }), + ]), + 'name': 'The Khans, New Khans, & Great Khans', + 'release_date': '2019-08-21', + 'release_date_precision': , + 'uri': 'spotify:episode:5lRRLF7Y9EPwzWPUjL4wBi', + }), + dict({ + 'description': 'Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 3789453, + 'episode_id': '0bVSlmo3VHL5egu8hacUHd', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/0bVSlmo3VHL5egu8hacUHd', }), - dict({ - 'artist_id': '74bw8BQiXEcYGVi3wkD5HA', - 'name': 'OLD', - 'uri': 'spotify:artist:74bw8BQiXEcYGVi3wkD5HA', + 'href': 'https://api.spotify.com/v1/episodes/0bVSlmo3VHL5egu8hacUHd', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a37d92e2a399e11989028f571', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f37d92e2a399e11989028f571', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d37d92e2a399e11989028f571', + 'width': 64, + }), + ]), + 'name': 'Most Evil Faction - Monthly Patron Call', + 'release_date': '2019-08-28', + 'release_date_precision': , + 'uri': 'spotify:episode:0bVSlmo3VHL5egu8hacUHd', + }), + dict({ + 'description': 'Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1872326, + 'episode_id': '53j8zWJoetnjS0borOSC68', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/53j8zWJoetnjS0borOSC68', }), - dict({ - 'artist_id': '3lybdJ5QPH5NJolzMVKnLx', - 'name': 'Old Man Canyon', - 'uri': 'spotify:artist:3lybdJ5QPH5NJolzMVKnLx', + 'href': 'https://api.spotify.com/v1/episodes/53j8zWJoetnjS0borOSC68', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a9aefca1e45c07f2ba6cbcf52', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f9aefca1e45c07f2ba6cbcf52', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d9aefca1e45c07f2ba6cbcf52', + 'width': 64, + }), + ]), + 'name': 'Vault 81 & Curie', + 'release_date': '2019-09-04', + 'release_date_precision': , + 'uri': 'spotify:episode:53j8zWJoetnjS0borOSC68', + }), + dict({ + 'description': 'What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1950876, + 'episode_id': '2FjaAQfmyFnc12gJNr1yDT', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2FjaAQfmyFnc12gJNr1yDT', }), - dict({ - 'artist_id': '7iH754eigCrs80sQ08MFAx', - 'name': 'Damaxy', - 'uri': 'spotify:artist:7iH754eigCrs80sQ08MFAx', + 'href': 'https://api.spotify.com/v1/episodes/2FjaAQfmyFnc12gJNr1yDT', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8ac45911c1f83d566d8ceeade1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fc45911c1f83d566d8ceeade1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68dc45911c1f83d566d8ceeade1', + 'width': 64, + }), + ]), + 'name': 'Being Paladin Danse - The Fallout Lorecast', + 'release_date': '2019-09-11', + 'release_date_precision': , + 'uri': 'spotify:episode:2FjaAQfmyFnc12gJNr1yDT', + }), + dict({ + 'description': "Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + 'duration_ms': 4927608, + 'episode_id': '3OZ75wJY5jgqxciFhjoxpd', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3OZ75wJY5jgqxciFhjoxpd', }), - dict({ - 'artist_id': '6sW5k31iA8sTy0i2goUKF9', - 'name': 'Oldilla', - 'uri': 'spotify:artist:6sW5k31iA8sTy0i2goUKF9', + 'href': 'https://api.spotify.com/v1/episodes/3OZ75wJY5jgqxciFhjoxpd', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8aa0dbb924716a66008ffa5295', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1fa0dbb924716a66008ffa5295', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68da0dbb924716a66008ffa5295', + 'width': 64, + }), + ]), + 'name': 'EXTENDED EPISODE: Mr. House w/ Ken (Chad A Fallout 76 Story)', + 'release_date': '2019-09-19', + 'release_date_precision': , + 'uri': 'spotify:episode:3OZ75wJY5jgqxciFhjoxpd', + }), + dict({ + 'description': 'Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 4302968, + 'episode_id': '2BV0OCNWY2hCjArmHAQH60', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/2BV0OCNWY2hCjArmHAQH60', }), - dict({ - 'artist_id': '4dbBRTOF73ioPdjvyYzJ52', - 'name': 'Old', - 'uri': 'spotify:artist:4dbBRTOF73ioPdjvyYzJ52', + 'href': 'https://api.spotify.com/v1/episodes/2BV0OCNWY2hCjArmHAQH60', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a270ef7e866cc87449d1ce6a1', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f270ef7e866cc87449d1ce6a1', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d270ef7e866cc87449d1ce6a1', + 'width': 64, + }), + ]), + 'name': 'Who is the Best Companion? | Monthly Patron Call | Fallout Lorecast', + 'release_date': '2019-09-25', + 'release_date_precision': , + 'uri': 'spotify:episode:2BV0OCNWY2hCjArmHAQH60', + }), + dict({ + 'description': 'Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\xa0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\xa0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy', + 'duration_ms': 1998027, + 'episode_id': '3Ta9ouqOcHnYRTAIo0XRGU', + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/episode/3Ta9ouqOcHnYRTAIo0XRGU', }), - ]), - 'audiobooks': list([ - dict({ - 'audiobook_id': '7sn0W2eNkETlJgbgmhijDI', - 'authors': list([ - dict({ - 'name': 'Jennette McCurdy', - }), - ]), - 'description': ''' - Author(s): Jennette McCurdy - Narrator(s): Jennette McCurdy* #1 NEW YORK TIMES BESTSELLER * #1 INTERNATIONAL BESTSELLER * MORE THAN 2 MILLION COPIES SOLD!

A heartbreaking and hilarious memoir by iCarly and Sam & Cat star Jennette McCurdy about her struggles as a former child actor—including eating disorders, addiction, and a complicated relationship with her overbearing mother—and how she retook control of her life.

Jennette McCurdy was six years old when she had her first acting audition. Her mother’s dream was for her only daughter to become a star, and Jennette would do anything to make her mother happy. So she went along with what Mom called “calorie restriction,” eating little and weighing herself five times a day. She endured extensive at-home makeovers while Mom chided, “Your eyelashes are invisible, okay? You think Dakota Fanning doesn’t tint hers?” She was even showered by Mom until age sixteen while sharing her diaries, email, and all her income.

In I’m Glad My Mom Died, Jennette recounts all this in unflinching detail—just as she chronicles what happens when the dream finally comes true. Cast in a new Nickelodeon series called iCarly, she is thrust into fame. Though Mom is ecstatic, emailing fan club moderators and getting on a first-name basis with the paparazzi (“Hi Gale!”), Jennette is riddled with anxiety, shame, and self-loathing, which manifest into eating disorders, addiction, and a series of unhealthy relationships. These issues only get worse when, soon after taking the lead in the iCarly spinoff Sam & Cat alongside Ariana Grande, her mother dies of cancer. Finally, after discovering therapy and quitting acting, Jennette embarks on recovery and decides for the first time in her life what she really wants.

Told with refreshing candor and dark humor, I’m Glad My Mom Died is an inspiring story of resilience, independence, and the joy of shampooing your own hair. - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7sn0W2eNkETlJgbgmhijDI', + 'href': 'https://api.spotify.com/v1/episodes/3Ta9ouqOcHnYRTAIo0XRGU', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6765630000ba8a01af91e0364108d405f274d2', + 'width': 640, + }), + dict({ + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67656300005f1f01af91e0364108d405f274d2', + 'width': 300, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/ab6765630000f68d01af91e0364108d405f274d2', + 'width': 64, + }), + ]), + 'name': 'Vault 87 & Capital Wasteland Super Mutants | Fallout Lorecast', + 'release_date': '2019-10-02', + 'release_date_precision': , + 'uri': 'spotify:episode:3Ta9ouqOcHnYRTAIo0XRGU', + }), + ]) +# --- +# name: test_get_top_artists + list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb1f6d7d07049a2e47d19ac5fc', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051741f6d7d07049a2e47d19ac5fc', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1781f6d7d07049a2e47d19ac5fc', + 'width': 160, + }), + ]), + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + dict({ + 'artist_id': '5HFkc3t0HYETL4JeEbDB1v', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb7eebe31d9542992df74099f3', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051747eebe31d9542992df74099f3', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1787eebe31d9542992df74099f3', + 'width': 160, + }), + ]), + 'name': 'Powerwolf', + 'uri': 'spotify:artist:5HFkc3t0HYETL4JeEbDB1v', + }), + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc', + 'width': 160, + }), + ]), + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', + }), + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb0dc6a1a0c7741d136176c027', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051740dc6a1a0c7741d136176c027', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1780dc6a1a0c7741d136176c027', + 'width': 160, + }), + ]), + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebfa3d426be3f5de7abfa48e74', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174fa3d426be3f5de7abfa48e74', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178fa3d426be3f5de7abfa48e74', + 'width': 160, + }), + ]), + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', + }), + dict({ + 'artist_id': '3jsyANBBy6gOZUSQhiGclx', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb39f5c5c876f9c86fb1f7869e', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517439f5c5c876f9c86fb1f7869e', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17839f5c5c876f9c86fb1f7869e', + 'width': 160, + }), + ]), + 'name': 'Ninja Sex Party', + 'uri': 'spotify:artist:3jsyANBBy6gOZUSQhiGclx', + }), + dict({ + 'artist_id': '5UlJRJmlRLhQJX8lJuerVq', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4', + 'width': 160, + }), + ]), + 'name': 'Telenova', + 'uri': 'spotify:artist:5UlJRJmlRLhQJX8lJuerVq', + }), + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85', + 'width': 160, + }), + ]), + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf', + 'width': 160, + }), + ]), + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', + }), + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274', + 'width': 160, + }), + ]), + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', + }), + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb', + 'width': 160, + }), + ]), + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '0r6IrOHMBaKiiZPV1zeIu2', + 'images': list([ + dict({ + 'height': 1000, + 'url': 'https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204', + 'width': 1000, + }), + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783', + 'width': 640, + }), + dict({ + 'height': 200, + 'url': 'https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9', + 'width': 200, + }), + dict({ + 'height': 64, + 'url': 'https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4', + 'width': 64, + }), + ]), + 'name': 'Follow The Cipher', + 'uri': 'spotify:artist:0r6IrOHMBaKiiZPV1zeIu2', + }), + dict({ + 'artist_id': '4NHQUGzhtTLFvgF5SZesLK', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb2360c963315739fc33b01687', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051742360c963315739fc33b01687', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1782360c963315739fc33b01687', + 'width': 160, + }), + ]), + 'name': 'Tove Lo', + 'uri': 'spotify:artist:4NHQUGzhtTLFvgF5SZesLK', + }), + dict({ + 'artist_id': '6tkhw6PSVw7b2M7h5fLBLE', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5a6feb4fd2ea111ae426e789', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745a6feb4fd2ea111ae426e789', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785a6feb4fd2ea111ae426e789', + 'width': 160, + }), + ]), + 'name': 'Cyhra', + 'uri': 'spotify:artist:6tkhw6PSVw7b2M7h5fLBLE', + }), + dict({ + 'artist_id': '7A0awCXkE1FtSU8B0qwOJQ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567', + 'width': 160, + }), + ]), + 'name': 'Jamie xx', + 'uri': 'spotify:artist:7A0awCXkE1FtSU8B0qwOJQ', + }), + dict({ + 'artist_id': '16AVsBqzmIZTNHd0eX8VbK', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb916d2275e3b91d069e6e7683', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174916d2275e3b91d069e6e7683', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178916d2275e3b91d069e6e7683', + 'width': 160, + }), + ]), + 'name': 'The Birthday Massacre', + 'uri': 'spotify:artist:16AVsBqzmIZTNHd0eX8VbK', + }), + dict({ + 'artist_id': '28eLrVsohdXynlnIzQ2VvI', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5e090d979d9e9811a0f4e434', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745e090d979d9e9811a0f4e434', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785e090d979d9e9811a0f4e434', + 'width': 160, + }), + ]), + 'name': 'Lord Of The Lost', + 'uri': 'spotify:artist:28eLrVsohdXynlnIzQ2VvI', + }), + dict({ + 'artist_id': '7k5jeohQCF20a8foBD9ize', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb736a6608998f7d7b5d8d3205', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174736a6608998f7d7b5d8d3205', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178736a6608998f7d7b5d8d3205', + 'width': 160, + }), + ]), + 'name': 'Battle Beast', + 'uri': 'spotify:artist:7k5jeohQCF20a8foBD9ize', + }), + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb44659e33a0314ddfb9bfae77', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517444659e33a0314ddfb9bfae77', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17844659e33a0314ddfb9bfae77', + 'width': 160, + }), + ]), + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', + }), + dict({ + 'artist_id': '6JslXiAQgoATL9rPmLE5du', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebb66006f5c150c98afb32adab', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174b66006f5c150c98afb32adab', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178b66006f5c150c98afb32adab', + 'width': 160, + }), + ]), + 'name': 'Anike Ekina', + 'uri': 'spotify:artist:6JslXiAQgoATL9rPmLE5du', + }), + dict({ + 'artist_id': '6QzMY3tnu0m56eKUnr4uCF', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778', + 'width': 160, + }), + ]), + 'name': 'Alfie Templeman', + 'uri': 'spotify:artist:6QzMY3tnu0m56eKUnr4uCF', + }), + dict({ + 'artist_id': '3hE8S8ohRErocpkY7uJW4a', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb9d081a5e8f131e9076ac74de', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051749d081a5e8f131e9076ac74de', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1789d081a5e8f131e9076ac74de', + 'width': 160, + }), + ]), + 'name': 'Within Temptation', + 'uri': 'spotify:artist:3hE8S8ohRErocpkY7uJW4a', + }), + dict({ + 'artist_id': '25sJFKMqDENdsTF7zRXoif', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7', + 'width': 160, + }), + ]), + 'name': 'Klaas', + 'uri': 'spotify:artist:25sJFKMqDENdsTF7zRXoif', + }), + dict({ + 'artist_id': '5IpS1TN1Crp8Ym4zjiIrtK', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb649f083a33e92e1e03ea77a0', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174649f083a33e92e1e03ea77a0', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178649f083a33e92e1e03ea77a0', + 'width': 160, + }), + ]), + 'name': 'LXNGVX', + 'uri': 'spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK', + }), + dict({ + 'artist_id': '1NcsVSxFdXsnwvE64zV9xX', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb24f41a362f0e9217226ec0c0', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517424f41a362f0e9217226ec0c0', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17824f41a362f0e9217226ec0c0', + 'width': 160, + }), + ]), + 'name': 'Rave The Reqviem', + 'uri': 'spotify:artist:1NcsVSxFdXsnwvE64zV9xX', + }), + dict({ + 'artist_id': '5KKpBU5eC2tJDzf0wmlRp2', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebde2e2ac1d53fdf9518354798', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174de2e2ac1d53fdf9518354798', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178de2e2ac1d53fdf9518354798', + 'width': 160, + }), + ]), + 'name': 'RAYE', + 'uri': 'spotify:artist:5KKpBU5eC2tJDzf0wmlRp2', + }), + dict({ + 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb', + 'width': 160, + }), + ]), + 'name': 'Beast In Black', + 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', + }), + dict({ + 'artist_id': '2pH3wEn4eYlMMIIQyKPbVR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b', + 'width': 160, + }), + ]), + 'name': 'DragonForce', + 'uri': 'spotify:artist:2pH3wEn4eYlMMIIQyKPbVR', + }), + dict({ + 'artist_id': '6s5ubAp65wXoTZefE01RNR', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd', + 'width': 160, + }), + ]), + 'name': 'Joost', + 'uri': 'spotify:artist:6s5ubAp65wXoTZefE01RNR', + }), + dict({ + 'artist_id': '2PQVMx0BpRQhzMWLa7X0T6', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb371a2a051989643acde8cd83', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174371a2a051989643acde8cd83', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178371a2a051989643acde8cd83', + 'width': 160, + }), + ]), + 'name': 'Scar Symmetry', + 'uri': 'spotify:artist:2PQVMx0BpRQhzMWLa7X0T6', + }), + dict({ + 'artist_id': '2x7EATekOPhFGRx3syMGEC', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb05dacd07ad341a94d7bf33fe', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517405dacd07ad341a94d7bf33fe', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17805dacd07ad341a94d7bf33fe', + 'width': 160, + }), + ]), + 'name': 'The Knocks', + 'uri': 'spotify:artist:2x7EATekOPhFGRx3syMGEC', + }), + dict({ + 'artist_id': '3kcwSBHk3lMgHMHuxjJLNZ', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6cb811eb3e3f4e65ef1931fe', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746cb811eb3e3f4e65ef1931fe', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786cb811eb3e3f4e65ef1931fe', + 'width': 160, + }), + ]), + 'name': 'Bazart', + 'uri': 'spotify:artist:3kcwSBHk3lMgHMHuxjJLNZ', + }), + dict({ + 'artist_id': '0lLY20XpZ9yDobkbHI7u1y', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e', + 'width': 160, + }), + ]), + 'name': 'Pegboard Nerds', + 'uri': 'spotify:artist:0lLY20XpZ9yDobkbHI7u1y', + }), + dict({ + 'artist_id': '12Zk1DFhCbHY6v3xep2ZjI', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6338990250f5d5a447650ba9', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746338990250f5d5a447650ba9', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786338990250f5d5a447650ba9', + 'width': 160, + }), + ]), + 'name': '070 Shake', + 'uri': 'spotify:artist:12Zk1DFhCbHY6v3xep2ZjI', + }), + dict({ + 'artist_id': '5WId4o5jdGVhptNU0uqKxu', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb8a5ad7938183d6c07858d8f6', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051748a5ad7938183d6c07858d8f6', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1788a5ad7938183d6c07858d8f6', + 'width': 160, + }), + ]), + 'name': 'St. Lucia', + 'uri': 'spotify:artist:5WId4o5jdGVhptNU0uqKxu', + }), + dict({ + 'artist_id': '2KaW48xlLnXC2v8tvyhWsa', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb293f7f4aebb31292f607bf3b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174293f7f4aebb31292f607bf3b', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178293f7f4aebb31292f607bf3b', + 'width': 160, + }), + ]), + 'name': 'Amaranthe', + 'uri': 'spotify:artist:2KaW48xlLnXC2v8tvyhWsa', + }), + dict({ + 'artist_id': '538iX6YCTybcgzsrjDTrFi', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb107cf7007e710fc7c68046fe', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174107cf7007e710fc7c68046fe', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178107cf7007e710fc7c68046fe', + 'width': 160, + }), + ]), + 'name': 'LEAP', + 'uri': 'spotify:artist:538iX6YCTybcgzsrjDTrFi', + }), + dict({ + 'artist_id': '6RbFulf0Q38msfpcgh8e0m', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eba8406532e63d57825205e082', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174a8406532e63d57825205e082', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178a8406532e63d57825205e082', + 'width': 160, + }), + ]), + 'name': 'Ember Falls', + 'uri': 'spotify:artist:6RbFulf0Q38msfpcgh8e0m', + }), + dict({ + 'artist_id': '0GG2cWaonE4JPrjcCCQ1EG', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb3e048d910001f75091fd46f3', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051743e048d910001f75091fd46f3', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1783e048d910001f75091fd46f3', + 'width': 160, + }), + ]), + 'name': 'SG Lewis', + 'uri': 'spotify:artist:0GG2cWaonE4JPrjcCCQ1EG', + }), + dict({ + 'artist_id': '3oKRxpszQKUjjaHz388fVA', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933', + 'width': 160, + }), + ]), + 'name': 'Parcels', + 'uri': 'spotify:artist:3oKRxpszQKUjjaHz388fVA', + }), + dict({ + 'artist_id': '6mS5GeFyhea6w9OKo8PO3p', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457', + 'width': 160, }), - 'html_description': 'Author(s): Jennette McCurdy
Narrator(s): Jennette McCurdy
<b>* #1 <i>NEW YORK TIMES</i> BESTSELLER * #1 INTERNATIONAL BESTSELLER * </b><B>MORE THAN 2 MILLION COPIES SOLD!</B><br> <br><b>A heartbreaking and hilarious memoir by <i>iCarly </i>and <i>Sam & Cat </i>star Jennette McCurdy about her struggles as a former child actor—including eating disorders, addiction, and a complicated relationship with her overbearing mother—and how she retook control of her life. </b><br><br>Jennette McCurdy was six years old when she had her first acting audition. Her mother’s dream was for her only daughter to become a star, and Jennette would do anything to make her mother happy. So she went along with what Mom called “calorie restriction,” eating little and weighing herself five times a day. She endured extensive at-home makeovers while Mom chided, “Your eyelashes are invisible, okay? You think Dakota Fanning doesn’t tint hers?” She was even showered by Mom until age sixteen while sharing her diaries, email, and all her income.<br> <br>In <i>I’m Glad My Mom Died</i>, Jennette recounts all this in unflinching detail—just as she chronicles what happens when the dream finally comes true. Cast in a new Nickelodeon series called <i>iCarly</i>, she is thrust into fame. Though Mom is ecstatic, emailing fan club moderators and getting on a first-name basis with the paparazzi (“Hi Gale!”), Jennette is riddled with anxiety, shame, and self-loathing, which manifest into eating disorders, addiction, and a series of unhealthy relationships. These issues only get worse when, soon after taking the lead in the <i>iCarly</i> spinoff <i>Sam & Cat</i> alongside Ariana Grande, her mother dies of cancer. Finally, after discovering therapy and quitting acting, Jennette embarks on recovery and decides for the first time in her life what she really wants.<br> <br>Told with refreshing candor and dark humor, <i>I’m Glad My Mom Died</i> is an inspiring story of resilience, independence, and the joy of shampooing your own hair.', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a81a6f05c14d9ba09abb0d4703', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b1a6f05c14d9ba09abb0d4703', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b1a6f05c14d9ba09abb0d4703', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': "I'm Glad My Mom Died", - 'narrators': list([ - dict({ - 'name': 'Jennette McCurdy', - }), - ]), - 'publisher': 'Jennette McCurdy', - 'total_chapters': 229, - 'type': 'audiobook', - 'uri': 'spotify:show:7sn0W2eNkETlJgbgmhijDI', - }), - dict({ - 'audiobook_id': '7M70q4c9LhdcApynxSD52r', - 'authors': list([ - dict({ - 'name': 'Uncredited', - }), - ]), - 'description': ''' - Author(s): Uncredited - Narrator(s): George Vafiadis

Experience one of the most used translations of the Bible in this unabridged presentation of the King James Version of the Bible.

The King James Version was written in 1611 by order of King James I as the official translation for the Church of England. The version was created to eliminate any errors in previous translations, and to put to book into common language useful for all people. The book was translated from Greek, Hebrew, and Aramaic. The version was re-edited in 1769 and has remain largely untouched for the centuries after.

For many modern Christian denominations, the King James Version remains the preferred English translation of biblical texts. Though the language is more formal than modern English, the formality gives a certain weight to the contents, and the translation is still regarded as being remarkably close to the original meanings of the text.

This audiobook contains both the Old and New Testaments, which together chronicle the foundations, history, and theology of the Christian church. The book is comprised of 66 individual books, each with a unique history, authorship, and context.

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7M70q4c9LhdcApynxSD52r', + ]), + 'name': 'Goldband', + 'uri': 'spotify:artist:6mS5GeFyhea6w9OKo8PO3p', + }), + dict({ + 'artist_id': '6nDLku5uL3ou60kvCGZorh', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebb37fd268f79456bf904d617e', + 'width': 640, }), - 'html_description': 'Author(s): Uncredited
Narrator(s): George Vafiadis
<p>Experience one of the most used translations of the Bible in this unabridged presentation of the King James Version of the Bible.</p><p>The King James Version was written in 1611 by order of King James I as the official translation for the Church of England. The version was created to eliminate any errors in previous translations, and to put to book into common language useful for all people. The book was translated from Greek, Hebrew, and Aramaic. The version was re-edited in 1769 and has remain largely untouched for the centuries after.</p><p>For many modern Christian denominations, the King James Version remains the preferred English translation of biblical texts. Though the language is more formal than modern English, the formality gives a certain weight to the contents, and the translation is still regarded as being remarkably close to the original meanings of the text.</p><p>This audiobook contains both the Old and New Testaments, which together chronicle the foundations, history, and theology of the Christian church. The book is comprised of 66 individual books, each with a unique history, authorship, and context.</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8e0c90bca49e9663cc1a8f7ac', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5be0c90bca49e9663cc1a8f7ac', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703be0c90bca49e9663cc1a8f7ac', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'The King James Bible', - 'narrators': list([ - dict({ - 'name': 'George Vafiadis', - }), - ]), - 'publisher': 'Uncredited', - 'total_chapters': 119, - 'type': 'audiobook', - 'uri': 'spotify:show:7M70q4c9LhdcApynxSD52r', - }), - dict({ - 'audiobook_id': '4DHKr3VRbQiVZQoxCWRQQu', - 'authors': list([ - dict({ - 'name': 'Quan Millz', - }), - ]), - 'description': ''' - Author(s): Quan Millz - Narrator(s): Karmaa

OLD THOT NEXT DOOR is indeed a long-anticipated ratchet soap opera thriller by bestselling African-American Urban Fiction author QUAN MILLZ.

Meet Vernita Ernestine Washington, a feisty 76-year-old woman who doesn’t care what you think about her ways, especially for a woman her age. Yeah, she might be a senior citizen but she’d be the first to tell you AGE AIN'T NOTHING BUT A NUMBER!

She’s convinced the honeycomb between her legs doesn’t taste a day older than forty. "Don’t let the gray hairs fool you now!"A retired employee of the Illinois Department of Motor Vehicles, Mrs. Washington runs the mean, cold streets of Chi-town messing with all types of young thugs with multiple felonies. A widow for some time now, Vernita is determined to make up for her stale marriage. However, when a major health scare sets her back, she finds herself losing everything.

Reality sets in that her time on Earth is about to come to a close. Now faced with a death sentence, Vernita seeks to live out her remaining days being the biggest old super freak. She gets her mojo back and begins living her life again. But a major, surprising twist will throw her life into more unpredictable chaos.

Read more in OLD THOT NEXT DOOR!

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/4DHKr3VRbQiVZQoxCWRQQu', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174b37fd268f79456bf904d617e', + 'width': 320, }), - 'html_description': 'Author(s): Quan Millz
Narrator(s): Karmaa
<p><strong>OLD THOT NEXT DOOR</strong> is indeed a long-anticipated ratchet soap opera thriller by bestselling African-American Urban Fiction author <strong>QUAN MILLZ</strong>.</p><p>Meet Vernita Ernestine Washington, a feisty 76-year-old woman who doesn’t care what you think about her ways, especially for a woman her age. Yeah, she might be a senior citizen but she’d be the first to tell you AGE AIN'T NOTHING BUT A NUMBER!</p><p>She’s convinced the honeycomb between her legs doesn’t taste a day older than forty. "Don’t let the gray hairs fool you now!"A retired employee of the Illinois Department of Motor Vehicles, Mrs. Washington runs the mean, cold streets of Chi-town messing with all types of young thugs with multiple felonies. A widow for some time now, Vernita is determined to make up for her stale marriage. However, when a major health scare sets her back, she finds herself losing everything.</p><p>Reality sets in that her time on Earth is about to come to a close. Now faced with a death sentence, Vernita seeks to live out her remaining days being the biggest old super freak. She gets her mojo back and begins living her life again. But a major, surprising twist will throw her life into more unpredictable chaos.</p><p>Read more in OLD THOT NEXT DOOR!</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a841cadb864e1d934a7b499e69', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b41cadb864e1d934a7b499e69', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b41cadb864e1d934a7b499e69', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'Old THOT Next Door', - 'narrators': list([ - dict({ - 'name': 'Karmaa', - }), - ]), - 'publisher': 'Quan Millz', - 'total_chapters': 39, - 'type': 'audiobook', - 'uri': 'spotify:show:4DHKr3VRbQiVZQoxCWRQQu', - }), - dict({ - 'audiobook_id': '1RXqi58QpW5WS9y9s4Irgc', - 'authors': list([ - dict({ - 'name': 'Paulo Coelho', - }), - ]), - 'description': ''' - Author(s): Paulo Coelho - Narrator(s): Jeremy Irons

AN INTERNATIONAL BESTSELLER • OVER 80 MILLION COPIES SOLD WORLDWIDE

“Translated into 80 languages, the allegory teaches us about dreams, destiny, and the reason we are all here.”—Oprah Daily, “Best Self-Help Books of a Generation”

“It’s a brilliant, magical, life-changing book that continues to blow my mind with its lessons. [...] A remarkable tome.”—Neil Patrick Harris, actor

A special 25th anniversary edition of the extraordinary international bestseller, including a new foreword by Paulo Coelho.

Combining magic, mysticism, wisdom, and wonder into an inspiring tale of self-discovery, The Alchemist has become a modern classic, selling millions of copies around the world and transforming the lives of countless readers across generations.

Paulo Coelho's masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure. His quest will lead him to riches far different—and far more satisfying—than he ever imagined. Santiago's journey teaches us about the essential wisdom of listening to our hearts, of recognizing opportunity and learning to read the omens strewn along life's path, and, most importantly, to follow our dreams.

“A magical little volume.”—San Francisco Chronicle

“[This] Brazilian wizard makes books disappear from stores.”—The New York Times

“A sweetly exotic tale for young and old alike.”—Publishers Weekly

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1RXqi58QpW5WS9y9s4Irgc', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178b37fd268f79456bf904d617e', + 'width': 160, }), - 'html_description': 'Author(s): Paulo Coelho
Narrator(s): Jeremy Irons
<p><strong>AN INTERNATIONAL BESTSELLER • OVER 80 MILLION COPIES SOLD WORLDWIDE</strong></p><p><strong>“Translated into 80 languages, the allegory teaches us about dreams, destiny, and the reason we are all here.”—Oprah Daily, “Best Self-Help Books of a Generation”</strong></p><p><strong>“It’s a brilliant, magical, life-changing book that continues to blow my mind with its lessons. [...] A remarkable tome.”—Neil Patrick Harris, actor</strong></p><p><strong>A special 25th anniversary edition of the extraordinary international bestseller, including a new foreword by Paulo Coelho.</strong></p><p>Combining magic, mysticism, wisdom, and wonder into an inspiring tale of self-discovery, <em>The Alchemist</em> has become a modern classic, selling millions of copies around the world and transforming the lives of countless readers across generations.</p><p>Paulo Coelho's masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure. His quest will lead him to riches far different—and far more satisfying—than he ever imagined. Santiago's journey teaches us about the essential wisdom of listening to our hearts, of recognizing opportunity and learning to read the omens strewn along life's path, and, most importantly, to follow our dreams.</p><p><strong>“A magical little volume.”—<em>San Francisco Chronicle</em></strong></p><p><strong>“[This] Brazilian wizard makes books disappear from stores.”—<em>The</em> <em>New York Times</em></strong></p><p><strong>“A sweetly exotic tale for young and old alike.”—<em>Publishers Weekly</em></strong></p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8dd99ce64c36b3839ae53e95a', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bdd99ce64c36b3839ae53e95a', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bdd99ce64c36b3839ae53e95a', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'The Alchemist', - 'narrators': list([ - dict({ - 'name': 'Jeremy Irons', - }), - ]), - 'publisher': 'Paulo Coelho', - 'total_chapters': 49, - 'type': 'audiobook', - 'uri': 'spotify:show:1RXqi58QpW5WS9y9s4Irgc', - }), - dict({ - 'audiobook_id': '00NlcJRrGEkenK8f6rELyq', - 'authors': list([ - dict({ - 'name': 'Stephen Fry', - }), - ]), - 'description': ''' - Author(s): Stephen Fry - Narrator(s): Stephen Fry

Brought to you by Penguin.

A Sunday Times bestseller

The next book in Stephen Fry's acclaimed internationally bestselling Greek myths series telling the story of The Odyssey.


Sometimes the hardest journey is the way back home . . .

Wily Odysseus, King of Ithaca, has won Troy for the Greeks – after a decade of brutal, bloody warfare. But now this warrior remembers he is a husband and father – and his gaze turns longingly towards home.

Setting sail with a small fleet, Odysseus dreams of soon lying in the arms of his beloved wife Penelope, and of teaching his son Telemachus the ways of a warrior. However, the gods laugh at the foolish hopes of mortals. And, angered by this upstart, Poseidon – God of the ocean realms – curses our hero to wander the seas for ten long years.

Encountering one-eyed giants, six-headed monsters, terrible storms, titanic whirlpools, hypnotic sirens, seductive witches and jealous goddesses, Odysseus is tempted and tormented beyond any man’s endurance.

Yet he is no mere mortal – and the lure of his wife and son draws him, step by step, stroke by stroke, ever closer to home and his ultimate destiny . . .

A tale of love and longing, return and redemption, home and hope, Stephen Fry’s Odyssey sees the author and national treasure weave the final threads of the fabulous story begun in the worldwide bestseller, Mythos, into an astonishing and mesmerising tapestry for the ages.

'With his distinctive narration, Fry brings warmth, exuberance and humour to these age-old stories, along with a range of voices...' The Guardian

'Fry is at his story-telling best . . . the gods will be pleased' Times

'Brilliant . . . all hail Stephen Fry' Daily Mail

© Stephen Fry 2024 (P) Penguin Audio 2024

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/00NlcJRrGEkenK8f6rELyq', + ]), + 'name': 'Bloodhound Gang', + 'uri': 'spotify:artist:6nDLku5uL3ou60kvCGZorh', + }), + dict({ + 'artist_id': '5J9s2Y6roGagMAipTa5XqV', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5f08c6f971b426cceb0738cc', + 'width': 640, }), - 'html_description': 'Author(s): Stephen Fry
Narrator(s): Stephen Fry
<p><b>Brought to you by Penguin.<br><br>A <i>Sunday Times</i> bestseller<br><br>The next book in Stephen Fry's acclaimed internationally bestselling Greek myths series telling the story of The Odyssey.</b><br><br><b>Sometimes the hardest journey is the way back home . . .</b><br><br>Wily Odysseus, King of Ithaca, has won Troy for the Greeks – after a decade of brutal, bloody warfare. But now this warrior remembers he is a husband and father – and his gaze turns longingly towards home.<br><br>Setting sail with a small fleet, Odysseus dreams of soon lying in the arms of his beloved wife Penelope, and of teaching his son Telemachus the ways of a warrior. However, the gods laugh at the foolish hopes of mortals. And, angered by this upstart, Poseidon – God of the ocean realms – curses our hero to wander the seas for ten long years.<br><br>Encountering one-eyed giants, six-headed monsters, terrible storms, titanic whirlpools, hypnotic sirens, seductive witches and jealous goddesses, Odysseus is tempted and tormented beyond any man’s endurance.<br><br>Yet he is no mere mortal – and the lure of his wife and son draws him, step by step, stroke by stroke, ever closer to home and his ultimate destiny . . .<br><br>A tale of love and longing, return and redemption, home and hope, Stephen Fry’s <i>Odyssey</i> sees the author and national treasure weave the final threads of the fabulous story begun in the worldwide bestseller, <i>Mythos,</i> into an astonishing and mesmerising tapestry for the ages.<br><br>'With his distinctive narration, Fry brings warmth, exuberance and humour to these age-old stories, along with a range of voices...' <i>The Guardian </i><br><br>'Fry is at his story-telling best . . . the gods will be pleased' <i>Times</i><br><br>'Brilliant . . . all hail Stephen Fry' <i>Daily Mail</i><br><br>© Stephen Fry 2024 (P) Penguin Audio 2024</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a85290dd6c6bd3aefec79506ad', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b5290dd6c6bd3aefec79506ad', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b5290dd6c6bd3aefec79506ad', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'Odyssey', - 'narrators': list([ - dict({ - 'name': 'Stephen Fry', - }), - ]), - 'publisher': 'Stephen Fry', - 'total_chapters': 23, - 'type': 'audiobook', - 'uri': 'spotify:show:00NlcJRrGEkenK8f6rELyq', - }), - dict({ - 'audiobook_id': '6LUW2MAs8Z65qlP8XyhsMw', - 'authors': list([ - dict({ - 'name': 'George R.R. Martin', - }), - ]), - 'description': ''' - Author(s): George R.R. Martin - Narrator(s): Roy Dotrice

ONE OF THE TIMES’ 25 BEST AUDIOBOOKS

HBO’s hit series A GAME OF THRONES is based on George R. R. Martin’s internationally bestselling series A SONG OF ICE AND FIRE, the greatest fantasy epic of the modern age. A GAME OF THRONES is the first volume in the series.

Summers span decades. Winter can last a lifetime. And the struggle for the Iron Throne has begun.

As Warden of the north, Lord Eddard Stark counts it a curse when King Robert bestows on him the office of the Hand. His honour weighs him down at court where a true man does what he will, not what he must … and a dead enemy is a thing of beauty.

The old gods have no power in the south, Stark’s family is split and there is treachery at court. Worse, the vengeance-mad heir of the deposed Dragon King has grown to maturity in exile in the Free Cities. He claims the Iron Throne.

The historical and mythical creatures that inhabit this top, Sunday Times bestselling book bring a unique flavour to the fantasy fiction genre. The adventure is dark, filled with action that will keep the reader on the edge of their seat.

For fans of Robert Jordan (The Path Of Daggers), David French (The Lady of the Lake), Patrick Rothfuss (The Wise Man's Fear), Steven Erikson (Memories of Ice), and Genevieve Cogman (The Invisible Library).

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6LUW2MAs8Z65qlP8XyhsMw', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745f08c6f971b426cceb0738cc', + 'width': 320, }), - 'html_description': 'Author(s): George R.R. Martin
Narrator(s): Roy Dotrice
<p><strong>ONE OF <em>THE TIMES</em>’ 25 BEST AUDIOBOOKS</strong></p><p><strong>HBO’s hit series A GAME OF THRONES is based on George R. R. Martin’s internationally bestselling series A SONG OF ICE AND FIRE, the greatest fantasy epic of the modern age. A GAME OF THRONES is the first volume in the series.</strong></p><p>Summers span decades. Winter can last a lifetime. And the struggle for the Iron Throne has begun.</p><p>As Warden of the north, Lord Eddard Stark counts it a curse when King Robert bestows on him the office of the Hand. His honour weighs him down at court where a true man does what he will, not what he must … and a dead enemy is a thing of beauty.</p><p>The old gods have no power in the south, Stark’s family is split and there is treachery at court. Worse, the vengeance-mad heir of the deposed Dragon King has grown to maturity in exile in the Free Cities. He claims the Iron Throne.</p><p>The historical and mythical creatures that inhabit this top, Sunday Times bestselling book bring a unique flavour to the fantasy fiction genre. The adventure is dark, filled with action that will keep the reader on the edge of their seat.</p><p>For fans of Robert Jordan (The Path Of Daggers), David French (The Lady of the Lake), Patrick Rothfuss (The Wise Man's Fear), Steven Erikson (Memories of Ice), and Genevieve Cogman (The Invisible Library).</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8fae73642d98aacd1f9eaf3b7', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bfae73642d98aacd1f9eaf3b7', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bfae73642d98aacd1f9eaf3b7', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'A Game of Thrones (Song of Ice and Fire, Book 1)', - 'narrators': list([ - dict({ - 'name': 'Roy Dotrice', - }), - ]), - 'publisher': 'George R.R. Martin', - 'total_chapters': 76, - 'type': 'audiobook', - 'uri': 'spotify:show:6LUW2MAs8Z65qlP8XyhsMw', - }), - dict({ - 'audiobook_id': '5AHgUAZsSk6d9XM0xySOii', - 'authors': list([ - dict({ - 'name': 'Leo Oldenburger', - }), - ]), - 'description': ''' - Author(s): Leo Oldenburger - Narrator(s): Bart Oomen

Van ‘Kleine Jongen’ tot ‘Een beetje verliefd’, van ‘Zij gelooft in mij’ tot ‘Wij houden van Oranje’: André Hazes wist met zijn muziek iedereen te raken. Toen hij twintig jaar geleden overleed was het hele land in rouw: maar liefst zes miljoen mensen volgden de uitzending van de afscheidsdienst op televisie. Maar wie wás André Hazes? Waarom was hij, ondanks alle roem, toch zo onzeker? Oldenburger sprak met mensen die een belangrijke rol speelden in het leven van de artiest en met degenen voor wie André Hazes van grote betekenis was. Persoonlijke verhalen over de volkszanger en cultheld die door zijn dramatische levensgang veel te vroeg kwam te overlijden. In Kleine jongen beschrijft Oldenburger op meeslepende wijze het verhaal van een van de meest succesvolle artiesten die Nederland ooit gekend heeft.

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5AHgUAZsSk6d9XM0xySOii', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785f08c6f971b426cceb0738cc', + 'width': 160, }), - 'html_description': 'Author(s): Leo Oldenburger
Narrator(s): Bart Oomen
<p>Van ‘Kleine Jongen’ tot ‘Een beetje verliefd’, van ‘Zij gelooft in mij’ tot ‘Wij houden van Oranje’: André Hazes wist met zijn muziek iedereen te raken. Toen hij twintig jaar geleden overleed was het hele land in rouw: maar liefst zes miljoen mensen volgden de uitzending van de afscheidsdienst op televisie. Maar wie wás André Hazes? Waarom was hij, ondanks alle roem, toch zo onzeker? Oldenburger sprak met mensen die een belangrijke rol speelden in het leven van de artiest en met degenen voor wie André Hazes van grote betekenis was. Persoonlijke verhalen over de volkszanger en cultheld die door zijn dramatische levensgang veel te vroeg kwam te overlijden. In Kleine jongen beschrijft Oldenburger op meeslepende wijze het verhaal van een van de meest succesvolle artiesten die Nederland ooit gekend heeft.</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a878c90d16e9e4cfc5c6e9acd8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b78c90d16e9e4cfc5c6e9acd8', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b78c90d16e9e4cfc5c6e9acd8', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Kleine jongen: Het leven van André Hazes', - 'narrators': list([ - dict({ - 'name': 'Bart Oomen', - }), - ]), - 'publisher': 'Leo Oldenburger', - 'total_chapters': 23, - 'type': 'audiobook', - 'uri': 'spotify:show:5AHgUAZsSk6d9XM0xySOii', - }), - dict({ - 'audiobook_id': '0ZuMWmSruanrItPHO64YTh', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam OldenhaveGroep 6b krijgt EHBO-les van broeder Frans van de ambulans. Die weet alles van open botbreuken, flauwvallen en de stabiele zijligging. Het hele leven is bloedjelink, daar komt het volgens broeder Frans wel op neer. Heel leerzaam dus. Maar dan krijgt groep 6b de groepsgriep: ze worden allemaal ziek. Gelukkig wordt Tobias op een heel speciale manier verzorgd, zodat hij snel weer beter is. Nog beter dan daarvoor, zelfs!
-
- Inhoud
- 1. Hesjesles
- 2. Rups
- 3. Broeder Frans
- 4. Zwak hart
- 5. Marie-Louise Mulders
- 6. Thuis
- 7. Geschiedenis
- 8. Spreekwoorden
- 9. Pennelien
- 10. Scheur
- 11. Zuster Aukje
- 12. Blootje omelet
- 13. Schriftjes-wisseltruc
- 14. De doorgeschoten enkelvoud
- 15. Poolsnevel
- 16. Hasna
- 17. Hieperdepiep
- 18. EHBP
- 19. Uitdelen
- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/0ZuMWmSruanrItPHO64YTh', + ]), + 'name': 'HONEYMOAN', + 'uri': 'spotify:artist:5J9s2Y6roGagMAipTa5XqV', + }), + dict({ + 'artist_id': '5TrkbV9x6OdTBlzWPJeBz5', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebb866041cc76e685f65b40474', + 'width': 640, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Groep 6b krijgt EHBO-les van broeder Frans van de ambulans. Die weet alles van open botbreuken, flauwvallen en de stabiele zijligging. Het hele leven is bloedjelink, daar komt het volgens broeder Frans wel op neer. Heel leerzaam dus. Maar dan krijgt groep 6b de groepsgriep: ze worden allemaal ziek. Gelukkig wordt Tobias op een heel speciale manier verzorgd, zodat hij snel weer beter is. Nog beter dan daarvoor, zelfs!<br />
<br />
<b>Inhoud</b><br />
1. Hesjesles<br />
2. Rups<br />
3. Broeder Frans<br />
4. Zwak hart<br />
5. Marie-Louise Mulders<br />
6. Thuis<br />
7. Geschiedenis<br />
8. Spreekwoorden<br />
9. Pennelien<br />
10. Scheur<br />
11. Zuster Aukje<br />
12. Blootje omelet<br />
13. Schriftjes-wisseltruc<br />
14. De doorgeschoten enkelvoud<br />
15. Poolsnevel<br />
16. Hasna<br />
17. Hieperdepiep<br />
18. EHBP<br />
19. Uitdelen<br />', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8f42ea2fbc9767d04f9d052ff', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bf42ea2fbc9767d04f9d052ff', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bf42ea2fbc9767d04f9d052ff', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Bloedjelink', - 'narrators': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 20, - 'type': 'audiobook', - 'uri': 'spotify:show:0ZuMWmSruanrItPHO64YTh', - }), - dict({ - 'audiobook_id': '6FofvlFfQ5TlhyT7YrUZpa', - 'authors': list([ - dict({ - 'name': 'Thomas Nelson Inc.', - }), - ]), - 'description': ''' - Author(s): Thomas Nelson Inc. - Narrator(s): Jim Caviezel, Richard Dreyfuss, Gary Sinise, Jason Alexander, Marisa Tomei, Stacy Keach, Various Narrators

This faithful rendering of the Old Testament in the New King James Version (NKJV) presents the Bible in compelling, dramatic audio theater format with world-class audio production. With an original music score by composer Stefano Mainetti (Abba Pater), feature-film quality sound effects, and compelling narration by Michael York and the work of over 500 actors, the Word of Promise Audio Bible will immerse listeners in the dramatic reality of the scriptures as never before.

Each beloved book of the Bible comes to life with outstanding performances by Jim Caviezel as Jesus, Richard Dreyfuss as Moses, Gary Sinise as David, Jason Alexander as Joseph, Marisa Tomei as Mary Magdalene, Stacy Keach as Paul, Louis Gossett, Jr. as John, Jon Voight as Abraham, Marcia Gay Harden as Esther, Joan Allen as Deborah, Max von Sydow as Noah, and Malcolm McDowell as Solomon.

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6FofvlFfQ5TlhyT7YrUZpa', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174b866041cc76e685f65b40474', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178b866041cc76e685f65b40474', + 'width': 160, + }), + ]), + 'name': 'Youngr', + 'uri': 'spotify:artist:5TrkbV9x6OdTBlzWPJeBz5', + }), + dict({ + 'artist_id': '0gCEvTSonJD4GLMZwBnMzg', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5ebec2eb89a9ed518335d17330b', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab67616100005174ec2eb89a9ed518335d17330b', + 'width': 320, }), - 'html_description': 'Author(s): Thomas Nelson Inc.
Narrator(s): Jim Caviezel, Richard Dreyfuss, Gary Sinise, Jason Alexander, Marisa Tomei, Stacy Keach, Various Narrators
<p>This faithful rendering of the Old Testament in the New King James Version (NKJV) presents the Bible in compelling, dramatic audio theater format with world-class audio production. With an original music score by composer Stefano Mainetti (Abba Pater), feature-film quality sound effects, and compelling narration by Michael York and the work of over 500 actors, the <em>Word of Promise Audio Bible</em>\xa0will immerse listeners in the dramatic reality of the scriptures as never before.</p><p>Each beloved book of the Bible comes to life with outstanding performances by Jim Caviezel as Jesus, Richard Dreyfuss as Moses, Gary Sinise as David, Jason Alexander as Joseph, Marisa Tomei as Mary Magdalene, Stacy Keach as Paul, Louis Gossett, Jr. as John, Jon Voight as Abraham, Marcia Gay Harden as Esther, Joan Allen as Deborah, Max von Sydow as Noah, and Malcolm McDowell as Solomon.</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a818c62659ef9e892aad68f3f5', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b18c62659ef9e892aad68f3f5', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b18c62659ef9e892aad68f3f5', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'The Word of Promise: Audio Bible Old Testament: NKJV Audio Bible', - 'narrators': list([ - dict({ - 'name': 'Jim Caviezel', - }), - dict({ - 'name': 'Richard Dreyfuss', - }), - dict({ - 'name': 'Gary Sinise', - }), - dict({ - 'name': 'Jason Alexander', - }), - dict({ - 'name': 'Marisa Tomei', - }), - dict({ - 'name': 'Stacy Keach', - }), - dict({ - 'name': 'Various Narrators', - }), - ]), - 'publisher': 'Thomas Nelson Inc.', - 'total_chapters': 1863, - 'type': 'audiobook', - 'uri': 'spotify:show:6FofvlFfQ5TlhyT7YrUZpa', - }), - dict({ - 'audiobook_id': '7mkPrRJPfJCYSQadcuAwi0', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam OldenhaveMees Kees is nog stagiair, maar toch kan hij al heel goed lesgeven! Bij grote rampen, zoals hoofdrekenen of spelling van moeilijke woorden, verzint hij altijd een goeie oplossing. Meestal met chips en cola, want dat zijn ook moeilijke woorden.
-
- Als zijn klas de eindmusical moet verzorgen, heeft Mees Kees ook meteen een plan: ze gaan een rap doen. Superrapper Pépé komt helpen. Zijn motto is: Keihard is nog veel te zacht! Eén ding: Dreus mag er natuurlijk niet achter komen...
-
- De serie Mees Kees van Mirjam Oldenhave is een klinkend succes. Er verschenen zes boeken en Mirjam Oldenhave trok in 2012 door het hele land met De grote Mees Kees show. Een wervelende muziektheatervoorstelling, onder begeleiding van het 65 man sterke Holland Symfonia orkest.
-
- Compositie Mees Kees lied: Steven Stapel
-
- Inhoud
- 1. Nepasrev
- 2. Tokkie
- 3. Musical
- 4. Yo!
- 5. Lange woordenleesles
- 6. Hoofdrekenen
- 7. De rekenrap
- 8. Vergaderen
- 9. Zoenschool
- 10. Mevrouw Terlinde
- 11. Omeletjes met servetjes
- 12. Verhaaltjessommen
- 13. Pepe
- 14. Agent Klaas
- 15. Kozmoz
- 16. Rapporten
- 17. Bijna vakantie
- 18. 22 problemen
- 19. Mees Kees lied
- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7mkPrRJPfJCYSQadcuAwi0', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f178ec2eb89a9ed518335d17330b', + 'width': 160, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Mees Kees is nog stagiair, maar toch kan hij al heel goed lesgeven! Bij grote rampen, zoals hoofdrekenen of spelling van moeilijke woorden, verzint hij altijd een goeie oplossing. Meestal met chips en cola, want dat zijn ook moeilijke woorden.<br />
<br />
Als zijn klas de eindmusical moet verzorgen, heeft Mees Kees ook meteen een plan: ze gaan een rap doen. Superrapper Pépé komt helpen. Zijn motto is: Keihard is nog veel te zacht! Eén ding: Dreus mag er natuurlijk niet achter komen...<br />
<br />
De serie <i>Mees Kees</i> van Mirjam Oldenhave is een klinkend succes. Er verschenen zes boeken en Mirjam Oldenhave trok in 2012 door het hele land met <i>De grote Mees Kees</i> show. Een wervelende muziektheatervoorstelling, onder begeleiding van het 65 man sterke Holland Symfonia orkest.<br />
<br />
Compositie Mees Kees lied: Steven Stapel<br />
<br />
<b>Inhoud</b><br />
1. Nepasrev<br />
2. Tokkie<br />
3. Musical<br />
4. Yo!<br />
5. Lange woordenleesles<br />
6. Hoofdrekenen<br />
7. De rekenrap<br />
8. Vergaderen<br />
9. Zoenschool<br />
10. Mevrouw Terlinde<br />
11. Omeletjes met servetjes<br />
12. Verhaaltjessommen<br />
13. Pepe<br />
14. Agent Klaas<br />
15. Kozmoz<br />
16. Rapporten<br />
17. Bijna vakantie<br />
18. 22 problemen<br />
19. Mees Kees lied<br />', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8ec4215e7ba7ac9267cd73dab', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bec4215e7ba7ac9267cd73dab', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bec4215e7ba7ac9267cd73dab', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De rekenrap', - 'narrators': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 20, - 'type': 'audiobook', - 'uri': 'spotify:show:7mkPrRJPfJCYSQadcuAwi0', - }), - dict({ - 'audiobook_id': '5CrX7ccFO2bCZqp4rZfGU8', - 'authors': list([ - dict({ - 'name': 'David Hepworth', - }), - ]), - 'description': ''' - Author(s): David Hepworth - Narrator(s): David Hepworth

Brought to you by Penguin.

From the author of Abbey Road comes the story of how enduring rock icons like Pink Floyd, Bruce Springsteen and many more have remained in the ever changing music game.


When Paul McCartney closed Live Aid in July 1985 we thought he was rock's Grand Old Man. He was forty-three years old.

As the forty years since have shown he - and many others of his generation - were just getting started.

This was the time when live performance took over from records. The big names of the 60s and 70s exploited the age of spectacle that Live Aid had ushered in to enjoy the longest lap of honour in the history of humanity, continuing to go strong long after everyone else had retired.

Hence this is a story without precedent, a story in which Elton John plays a royal funeral, Mick Jagger gets a knighthood, Bob Dylan picks up the Nobel Prize, the Beatles become, if anything, bigger than the Beatles and it's beginning to look as though all of the above will, thanks to the march of technology, be playing Las Vegas for ever.

©2024 David Hepworth (P)2024 Penguin Audio

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5CrX7ccFO2bCZqp4rZfGU8', + ]), + 'name': 'Walking On Rivers', + 'uri': 'spotify:artist:0gCEvTSonJD4GLMZwBnMzg', + }), + dict({ + 'artist_id': '57ylwQTnFnIhJh4nu4rxCs', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb5c3bd919d1344a738af14136', + 'width': 640, }), - 'html_description': 'Author(s): David Hepworth
Narrator(s): David Hepworth
<p><b>Brought to you by Penguin.<br><br>From the author of <i>Abbey Road</i> comes the story of how enduring rock icons like Pink Floyd, Bruce Springsteen and many more have remained in the ever changing music game.</b><br><br>When Paul McCartney closed Live Aid in July 1985 we thought he was rock's Grand Old Man. He was forty-three years old.<br><br>As the forty years since have shown he - and many others of his generation - were just getting started.<br><br>This was the time when live performance took over from records. The big names of the 60s and 70s exploited the age of spectacle that Live Aid had ushered in to enjoy the longest lap of honour in the history of humanity, continuing to go strong long after everyone else had retired.<br><br>Hence this is a story without precedent, a story in which Elton John plays a royal funeral, Mick Jagger gets a knighthood, Bob Dylan picks up the Nobel Prize, the Beatles become, if anything, bigger than the Beatles and it's beginning to look as though all of the above will, thanks to the march of technology, be playing Las Vegas for ever.<br><br>©2024 David Hepworth (P)2024 Penguin Audio</p>', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8cc04893ebaf64217eae2c7da', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bcc04893ebaf64217eae2c7da', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bcc04893ebaf64217eae2c7da', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'Hope I Get Old Before I Die: Why rock stars never retire', - 'narrators': list([ - dict({ - 'name': 'David Hepworth', - }), - ]), - 'publisher': 'David Hepworth', - 'total_chapters': 41, - 'type': 'audiobook', - 'uri': 'spotify:show:5CrX7ccFO2bCZqp4rZfGU8', - }), - dict({ - 'audiobook_id': '7Bf8n6YMDNv72qW5FitNjx', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam OldenhaveLuister nu naar het nieuwe Mees Kees avontuur!Er komt een fancy fair op de school van Tobias en Sep, om geld op te halen voor een goed doel. Samen met mees Kees maakt groep 6b een circusvoorstelling. Sammy gaat jongleren, Jackie hangt aan de trapeze en Tobias heeft ook een superidee, maar dat is nog een verrassing. Zelfs Harley, de hond van mees Kees, doet mee. Circus Hoppa wordt straks vast een groot succes! Of toch niet...? - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7Bf8n6YMDNv72qW5FitNjx', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051745c3bd919d1344a738af14136', + 'width': 320, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Luister nu naar het nieuwe Mees Kees avontuur!
Er komt een fancy fair op de school van Tobias en Sep, om geld op te halen voor een goed doel. Samen met mees Kees maakt groep 6b een circusvoorstelling. Sammy gaat jongleren, Jackie hangt aan de trapeze en Tobias heeft ook een superidee, maar dat is nog een verrassing. Zelfs Harley, de hond van mees Kees, doet mee. Circus Hoppa wordt straks vast een groot succes! Of toch niet...?', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8cb7918ba463571eed7240747', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bcb7918ba463571eed7240747', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bcb7918ba463571eed7240747', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Hoppa!', - 'narrators': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 43, - 'type': 'audiobook', - 'uri': 'spotify:show:7Bf8n6YMDNv72qW5FitNjx', - }), - dict({ - 'audiobook_id': '3OV5MdGnhtyagxRWNdZda2', - 'authors': list([ - dict({ - 'name': 'Simon Peterson', - }), - ]), - 'description': ''' - Author(s): Simon Peterson - Narrator(s): Simon PetersonBritish Narrator Simon Peterson reads the entire Old Testament in this wonderful audiobook collection. As a well-known Christian Broadcaster, Simon has the ideal voice for those of all ages who want to listen to The Bible in full, unabridged form. His emotive reading perfectly captures the beauty and power of God's Word and makes the King James English clear and easy to understand. - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/3OV5MdGnhtyagxRWNdZda2', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1785c3bd919d1344a738af14136', + 'width': 160, }), - 'html_description': 'Author(s): Simon Peterson
Narrator(s): Simon Peterson
British Narrator Simon Peterson reads the entire Old Testament in this wonderful audiobook collection. As a well-known Christian Broadcaster, Simon has the ideal voice for those of all ages who want to listen to The Bible in full, unabridged form. His emotive reading perfectly captures the beauty and power of God's Word and makes the King James English clear and easy to understand.', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8b48c6927dcf189bb6de60e9b', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bb48c6927dcf189bb6de60e9b', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bb48c6927dcf189bb6de60e9b', - 'width': 64, - }), - ]), - 'languages': list([ - 'en', - ]), - 'name': 'The Complete Old Testament: Read by Simon Peterson', - 'narrators': list([ - dict({ - 'name': 'Simon Peterson', - }), - ]), - 'publisher': 'Simon Peterson', - 'total_chapters': 930, - 'type': 'audiobook', - 'uri': 'spotify:show:3OV5MdGnhtyagxRWNdZda2', - }), - dict({ - 'audiobook_id': '2nTSz8RwadcvtZat19sTBt', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam OldenhaveEen leraar als Mees Kees wil iedereen wel! Van moppen tappen en galgje spelen leer je prima spellen, vindt hij. En een tekenfilm kijken telt natuurlijk ook als tekenles…
-
- Als de leukste stagiair van de wereld jarig is, bedenkt de klas een geniaal plan om hem te verrassen. Intussen maakt Tobias zich zorgen, omdat zijn moeder vast niet naar school wil komen voor het tien-minuten-gesprek. Maar Mees Kees zou Mees Kees niet zijn als hij niet voor alles een oplossing had.
-
- Bijna een half miljoen exemplaren van dit Kinderboekenweekgeschenk gingen er in 2010 over de toonbank. Maar er staat alweer een nieuwe lichting Mees Kees-fans te trappelen om de verjaardag van onze populaire stagiair te vieren. Deze nieuwe en uitgebreide editie uit 2014 nu ook als luisterboek, voorgelezen door de auteur zelf.
- Heerlijk voor in de auto of op vakantie.
-
- Inhoud
- 1. Rustig afwachten
- 2. Snuffelen
- 3. Combi
- 4. Spreekbeurt
- 5. Laatste waarschuwing
- 6. Ramp in je nek
- 7. Hasjna
- 8. Tekenles
- 9. Kop in de strop
- 10. Handig rekenen
- 11. Cadeau
- 12. Het geniale plan
- 13. Giraj
- 14. Tadaa
- 15. Uitdelen
- 16. Tien minuten
- 17. Probleempje
- 18. Geheim - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/2nTSz8RwadcvtZat19sTBt', + ]), + 'name': 'In Flames', + 'uri': 'spotify:artist:57ylwQTnFnIhJh4nu4rxCs', + }), + dict({ + 'artist_id': '4wKbEwlRYNLlwUu9OCgLBr', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb39fa4c7432b484e90689df14', + 'width': 640, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Een leraar als Mees Kees wil iedereen wel! Van moppen tappen en galgje spelen leer je prima spellen, vindt hij. En een tekenfilm kijken telt natuurlijk ook als tekenles…<br />
<br />
Als de leukste stagiair van de wereld jarig is, bedenkt de klas een geniaal plan om hem te verrassen. Intussen maakt Tobias zich zorgen, omdat zijn moeder vast niet naar school wil komen voor het tien-minuten-gesprek. Maar Mees Kees zou Mees Kees niet zijn als hij niet voor alles een oplossing had.<br />
<br />
Bijna een half miljoen exemplaren van dit Kinderboekenweekgeschenk gingen er in 2010 over de toonbank. Maar er staat alweer een nieuwe lichting Mees Kees-fans te trappelen om de verjaardag van onze populaire stagiair te vieren. Deze nieuwe en uitgebreide editie uit 2014 nu ook als luisterboek, voorgelezen door de auteur zelf.<br />
Heerlijk voor in de auto of op vakantie.<br />
<br />
<b>Inhoud</b><br />
1. Rustig afwachten<br />
2. Snuffelen<br />
3. Combi<br />
4. Spreekbeurt<br />
5. Laatste waarschuwing<br />
6. Ramp in je nek<br />
7. Hasjna<br />
8. Tekenles<br />
9. Kop in de strop<br />
10. Handig rekenen<br />
11. Cadeau<br />
12. Het geniale plan<br />
13. Giraj<br />
14. Tadaa<br />
15. Uitdelen<br />
16. Tien minuten<br />
17. Probleempje<br />
18. Geheim', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a88e656b5f3a3ae12021229263', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b8e656b5f3a3ae12021229263', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b8e656b5f3a3ae12021229263', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Mees Kees - In de gloria', - 'narrators': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 19, - 'type': 'audiobook', - 'uri': 'spotify:show:2nTSz8RwadcvtZat19sTBt', - }), - dict({ - 'audiobook_id': '71NmMSkA6xyMcdDnLvcLIW', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam OldenhaveMees Kees heeft nog geen diploma, daarom mag hij niet meer alleen voor de klas staan. Hij gaat stage lopen bij de kleuters en 6B krijgt een invaljuf. Maar waarom geeft ze niet gewoon een moppendictee? En hoe kan ze nou lesgeven zonder chips en cola? Na haar komt een invalmeester en die stuurt de hele klas eruit. Kortom, het is tijd voor actie. Mees Kees moet terug! En graag een beetje vlug, want er komt een sponsorloop, en zonder mees Kees wordt dat natuurlijk helemaal niets...
- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/71NmMSkA6xyMcdDnLvcLIW', + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab6761610000517439fa4c7432b484e90689df14', + 'width': 320, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Mees Kees heeft nog geen diploma, daarom mag hij niet meer alleen voor de klas staan. Hij gaat stage lopen bij de kleuters en 6B krijgt een invaljuf. Maar waarom geeft ze niet gewoon een moppendictee? En hoe kan ze nou lesgeven zonder chips en cola? Na haar komt een invalmeester en die stuurt de hele klas eruit. Kortom, het is tijd voor actie. Mees Kees moet terug! En graag een beetje vlug, want er komt een sponsorloop, en zonder mees Kees wordt dat natuurlijk helemaal niets...<br />', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8469e16b5d55022c8f846b99d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b469e16b5d55022c8f846b99d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b469e16b5d55022c8f846b99d', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'De sponsorloop', - 'narrators': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 21, - 'type': 'audiobook', - 'uri': 'spotify:show:71NmMSkA6xyMcdDnLvcLIW', - }), - dict({ - 'audiobook_id': '2ZWSYH26WxBAkPSBIgq2xQ', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Mirjam Oldenhave‘De maatschappij, dat ben jij,’ zegt juffrouw Dreus. En dus moet groep 6b op bezoek bij een bejaardentehuis, om de oude mensen voor te lezen, met ze te wandelen en te praten... Helaas houden de bejaarden helemaal niet van wandelen en lezen doen ze liever zelf. Mees Kees verzint gelukkig een oplossing die voor iedereen fijn is.
-
- Ook ontdekt Tobias dat twee opa's al duizend maanden elkaars beste vriend zijn. Dat moet natuurlijk gevierd worden!
-
- Inhoud
- 1. Reinier
- 2. Rekenen
- 3. Hoorspel
- 4. Grappig
- 5. 6A
- 6. De wethouder
- 7. Gabber
- 8. Topo
- 9. De voorbereidingsclub
- 10. Zwaar
- 11. Op de planken
- 12. Uitschudden
- 13. Wij gaan naar
- 14. Op weg naar de kermis
- 15. Draaimolen
- 16. Draaien
- 17. Duizend maanden - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/2ZWSYH26WxBAkPSBIgq2xQ', + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f17839fa4c7432b484e90689df14', + 'width': 160, }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
‘De maatschappij, dat ben jij,’ zegt juffrouw Dreus. En dus moet groep 6b op bezoek bij een bejaardentehuis, om de oude mensen voor te lezen, met ze te wandelen en te praten... Helaas houden de bejaarden helemaal niet van wandelen en lezen doen ze liever zelf. Mees Kees verzint gelukkig een oplossing die voor iedereen fijn is.<br />
<br />
Ook ontdekt Tobias dat twee opa's al duizend maanden elkaars beste vriend zijn. Dat moet natuurlijk gevierd worden!<br />
<br />
<b>Inhoud</b><br />
1. Reinier<br />
2. Rekenen<br />
3. Hoorspel<br />
4. Grappig<br />
5. 6A<br />
6. De wethouder<br />
7. Gabber<br />
8. Topo<br />
9. De voorbereidingsclub<br />
10. Zwaar<br />
11. Op de planken<br />
12. Uitschudden<br />
13. Wij gaan naar<br />
14. Op weg naar de kermis<br />
15. Draaimolen<br />
16. Draaien<br />
17. Duizend maanden', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a81d6d7998c0116086219c636d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b1d6d7998c0116086219c636d', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b1d6d7998c0116086219c636d', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Mees Kees - Op de planken', - 'narrators': list([ + ]), + 'name': 'Jeremiah Kane', + 'uri': 'spotify:artist:4wKbEwlRYNLlwUu9OCgLBr', + }), + dict({ + 'artist_id': '1Qp56T7n950O3EGMsSl81D', + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab6761610000e5eb2d972470f1f8110be7c07017', + 'width': 640, + }), + dict({ + 'height': 320, + 'url': 'https://i.scdn.co/image/ab676161000051742d972470f1f8110be7c07017', + 'width': 320, + }), + dict({ + 'height': 160, + 'url': 'https://i.scdn.co/image/ab6761610000f1782d972470f1f8110be7c07017', + 'width': 160, + }), + ]), + 'name': 'Ghost', + 'uri': 'spotify:artist:1Qp56T7n950O3EGMsSl81D', + }), + ]) +# --- +# name: test_get_top_tracks + list([ + dict({ + 'album': dict({ + 'album_id': '30g6j2xuqynpAiohatDOW6', + 'album_type': , + 'artists': list([ dict({ - 'name': 'Mirjam Oldenhave', + 'artist_id': '28eLrVsohdXynlnIzQ2VvI', + 'name': 'Lord Of The Lost', + 'uri': 'spotify:artist:28eLrVsohdXynlnIzQ2VvI', }), ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 18, - 'type': 'audiobook', - 'uri': 'spotify:show:2ZWSYH26WxBAkPSBIgq2xQ', - }), - dict({ - 'audiobook_id': '5xs4LPLZqVnNyvIflF1P2R', - 'authors': list([ - dict({ - 'name': 'Mirjam Oldenhave', - }), - ]), - 'description': ''' - Author(s): Mirjam Oldenhave - Narrator(s): Frank GroothofMeester Kees heeft nog nooit voor de klas gestaan. De kinderen moeten hem nog een beetje leren hoe dat moet, meester zijn. En dat doen ze graag!
-
- Ze leren hem dat je best om kwart over negen je pauzeboterhammen op mag eten, als je maar op het bord schrijft dat het om een voedselproject gaat. En dat het heel handig is als ieder kind maar één rijtje sommen van de taak maakt, zodat niet iedereen hetzelfde werk zit te doen...
-
- Dit boek werd getipt door de Nederlandse Kinderjury!
-
- Inhoud
- 1. Mees Kees (intro)
- 2. Omeletje
- 3. Sommen
- 4. Rashida's spreekbeurt
- 5. Topografie
- 6. Bijles
- 7. De tafel van vier
- 8. Luizencontrole
- 9. Taal
- 10. Nieuws uit de natuur
- 11. Keihard werken
- 12. Dreus
- 13. Corvee
- 14. Op jacht met Mees Kees
- 15. Jemo Etan der Slezen
- 16. Onbereikbare liefde, deel 1
- 17. Onbereikbare liefde, deel 2
- 18. Bijles grote getallen
- 19. Nummertjes
- 20. De meester van de meester
- 21. Bertus Koelemeijer - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5xs4LPLZqVnNyvIflF1P2R', - }), - 'html_description': 'Author(s): Mirjam Oldenhave
Narrator(s): Frank Groothof
Meester Kees heeft nog nooit voor de klas gestaan. De kinderen moeten hem nog een beetje leren hoe dat moet, meester zijn. En dat doen ze graag!<br />
<br />
Ze leren hem dat je best om kwart over negen je pauzeboterhammen op mag eten, als je maar op het bord schrijft dat het om een voedselproject gaat. En dat het heel handig is als ieder kind maar één rijtje sommen van de taak maakt, zodat niet iedereen hetzelfde werk zit te doen...<br />
<br />
Dit boek werd getipt door de Nederlandse Kinderjury!<br />
<br />
<b>Inhoud</b><br />
1. Mees Kees (intro)<br />
2. Omeletje<br />
3. Sommen<br />
4. Rashida's spreekbeurt<br />
5. Topografie<br />
6. Bijles<br />
7. De tafel van vier<br />
8. Luizencontrole<br />
9. Taal<br />
10. Nieuws uit de natuur<br />
11. Keihard werken<br />
12. Dreus<br />
13. Corvee<br />
14. Op jacht met Mees Kees<br />
15. Jemo Etan der Slezen<br />
16. Onbereikbare liefde, deel 1<br />
17. Onbereikbare liefde, deel 2<br />
18. Bijles grote getallen<br />
19. Nummertjes<br />
20. De meester van de meester<br />
21. Bertus Koelemeijer', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a8d0544e8958c673f33c168189', + 'url': 'https://i.scdn.co/image/ab67616d0000b27322e8fe51124a59f85957aa1b', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5bd0544e8958c673f33c168189', + 'url': 'https://i.scdn.co/image/ab67616d00001e0222e8fe51124a59f85957aa1b', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703bd0544e8958c673f33c168189', + 'url': 'https://i.scdn.co/image/ab67616d0000485122e8fe51124a59f85957aa1b', 'width': 64, }), ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Een pittig klasje', - 'narrators': list([ - dict({ - 'name': 'Frank Groothof', - }), - ]), - 'publisher': 'Mirjam Oldenhave', - 'total_chapters': 22, - 'type': 'audiobook', - 'uri': 'spotify:show:5xs4LPLZqVnNyvIflF1P2R', + 'name': 'OPVS NOIR Vol. 1', + 'release_date': '2025-08-08', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:30g6j2xuqynpAiohatDOW6', }), - dict({ - 'audiobook_id': '6Swa6ZpoTeKxeIhr1HQi2J', - 'authors': list([ - dict({ - 'name': 'Leo Oldenburger', - }), - ]), - 'description': ''' - Author(s): Leo Oldenburger - Narrator(s): Jan Douwe KroeskeAls voorman van Doe Maar schreef Henny Vrienten geschiedenis. Niet eerder was een Nederlandse band zo populair. Tijdens optredens werd de band bejubeld door uitzinnige tienermeisjes en het land werd overspoeld met Doe Maar-merchandise. In 1984 gingen de mannen van Doe Maar uit elkaar, waarna Vrienten zich toelegde op een indrukwekkende solocarrière. Daarnaast schreef hij muziek voor films, musicals en televisieprogramma’s als ‘Het Klokhuis’ en ‘Sesamstraat’. Begin 2022 benaderde Leo Oldenburger Henny Vrienten met het verzoek of hij een boek over hem mocht schrijven, waarin collega-muzikanten zou worden gevraagd naar hun ervaringen met hem. Vrienten gaf aan tegen dat idee geen bezwaar te hebben. Oldenburger sprak met velen die van grote betekenis waren in het leven van de artiest, onder wie Ernst Jansz, Frank Boeijen, Henk Hofstede en Boudewijn de Groot. In ‘Henny Vrienten’ beschrijft Oldenburger op meeslepende wijze het verhaal van de componist, muzikant en tekstdichter. - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6Swa6ZpoTeKxeIhr1HQi2J', + 'artists': list([ + dict({ + 'artist_id': '28eLrVsohdXynlnIzQ2VvI', + 'name': 'Lord Of The Lost', + 'uri': 'spotify:artist:28eLrVsohdXynlnIzQ2VvI', }), - 'html_description': 'Author(s): Leo Oldenburger
Narrator(s): Jan Douwe Kroeske
Als voorman van Doe Maar schreef Henny Vrienten geschiedenis. Niet eerder was een Nederlandse band zo populair. Tijdens optredens werd de band bejubeld door uitzinnige tienermeisjes en het land werd overspoeld met Doe Maar-merchandise. In 1984 gingen de mannen van Doe Maar uit elkaar, waarna Vrienten zich toelegde op een indrukwekkende solocarrière. Daarnaast schreef hij muziek voor films, musicals en televisieprogramma’s als ‘Het Klokhuis’ en ‘Sesamstraat’. Begin 2022 benaderde Leo Oldenburger Henny Vrienten met het verzoek of hij een boek over hem mocht schrijven, waarin collega-muzikanten zou worden gevraagd naar hun ervaringen met hem. Vrienten gaf aan tegen dat idee geen bezwaar te hebben. Oldenburger sprak met velen die van grote betekenis waren in het leven van de artiest, onder wie Ernst Jansz, Frank Boeijen, Henk Hofstede en Boudewijn de Groot. In ‘Henny Vrienten’ beschrijft Oldenburger op meeslepende wijze het verhaal van de componist, muzikant en tekstdichter.', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a896cb628bd656f69cdc2f28f3', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b96cb628bd656f69cdc2f28f3', - 'width': 300, - }), - dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b96cb628bd656f69cdc2f28f3', - 'width': 64, - }), - ]), - 'languages': list([ - 'nl', - ]), - 'name': 'Henny Vrienten', - 'narrators': list([ - dict({ - 'name': 'Jan Douwe Kroeske', - }), - ]), - 'publisher': 'Leo Oldenburger', - 'total_chapters': 25, - 'type': 'audiobook', - 'uri': 'spotify:show:6Swa6ZpoTeKxeIhr1HQi2J', + ]), + 'disc_number': 1, + 'duration_ms': 173023, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/28p5fdZ2TAGx8z88KFZo5d', }), - dict({ - 'audiobook_id': '7IuHomVGGGTXBYdF5gsnc3', - 'authors': list([ + 'href': 'https://api.spotify.com/v1/tracks/28p5fdZ2TAGx8z88KFZo5d', + 'is_local': False, + 'name': 'My Sanctuary', + 'track_id': '28p5fdZ2TAGx8z88KFZo5d', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:28p5fdZ2TAGx8z88KFZo5d', + }), + dict({ + 'album': dict({ + 'album_id': '5CEt8piPRnEk8BAE9gpdAz', + 'album_type': , + 'artists': list([ dict({ - 'name': 'Ernest Hemingway', + 'artist_id': '1N2FgBLehaq77UEdJhCt7f', + 'name': 'Saint Etienne', + 'uri': 'spotify:artist:1N2FgBLehaq77UEdJhCt7f', }), ]), - 'description': ''' - Author(s): Ernest Hemingway - Narrator(s): Donald Sutherland2007 Audie Award Finalist for Solo Narration—Male

*Winner of the Pulitzer Prize*
“A beautiful tale, awash in the seasalt and sweat, bait and beer of the Havana coast. It tells a fundamental human truth: in a volatile world, from our first breath to our last wish, through triumphs and pitfalls both trivial and profound, what sustains us, ultimately, is hope.” —The Guardian

The last of his novels Ernest Hemingway saw published, The Old Man and the Sea has proved itself to be one of the most enduring works of American fiction. The story of a down-on-his-luck Cuban fisherman and his supreme ordeal—a relentless, agonizing battle with a giant marlin far out in the Gulf Stream—has been cherished by generations of readers.

Hemingway takes the timeless themes of courage in the face of adversity and personal triumph won from loss and transforms them into a magnificent twentieth-century classic. First published in 1952, this hugely popular tale confirmed his power and presence in the literary world and played a large part in his winning the 1954 Nobel Prize in Literature. - ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7IuHomVGGGTXBYdF5gsnc3', - }), - 'html_description': 'Author(s): Ernest Hemingway
Narrator(s): Donald Sutherland
<b>2007 Audie Award Finalist for Solo Narration—Male</b><br><br><b>*Winner of the Pulitzer Prize*</b><br> <b>“A beautiful tale, awash in the seasalt and sweat, bait and beer of the Havana coast. It tells a fundamental human truth: in a volatile world, from our first breath to our last wish, through triumphs and pitfalls both trivial and profound, what sustains us, ultimately, is hope.” —<i>The Guardian</i> </b><br><br>The last of his novels Ernest Hemingway saw published, <i>The Old Man and the Sea</i> has proved itself to be one of the most enduring works of American fiction. The story of a down-on-his-luck Cuban fisherman and his supreme ordeal—a relentless, agonizing battle with a giant marlin far out in the Gulf Stream—has been cherished by generations of readers.<br> <br>Hemingway takes the timeless themes of courage in the face of adversity and personal triumph won from loss and transforms them into a magnificent twentieth-century classic. First published in 1952, this hugely popular tale confirmed his power and presence in the literary world and played a large part in his winning the 1954 Nobel Prize in Literature.', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a84cf5d2837c74a867fd4e4186', + 'url': 'https://i.scdn.co/image/ab67616d0000b2731cef74bb3b67d18911704d1c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b4cf5d2837c74a867fd4e4186', + 'url': 'https://i.scdn.co/image/ab67616d00001e021cef74bb3b67d18911704d1c', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b4cf5d2837c74a867fd4e4186', + 'url': 'https://i.scdn.co/image/ab67616d000048511cef74bb3b67d18911704d1c', 'width': 64, }), ]), - 'languages': list([ - 'en', - ]), - 'name': 'The Old Man and the Sea', - 'narrators': list([ - dict({ - 'name': 'Donald Sutherland', - }), - ]), - 'publisher': 'Ernest Hemingway', - 'total_chapters': 6, - 'type': 'audiobook', - 'uri': 'spotify:show:7IuHomVGGGTXBYdF5gsnc3', + 'name': 'International', + 'release_date': '2025-09-05', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:5CEt8piPRnEk8BAE9gpdAz', }), - dict({ - 'audiobook_id': '7n4kkb28OrN8zr5GEthLNe', - 'authors': list([ + 'artists': list([ + dict({ + 'artist_id': '1N2FgBLehaq77UEdJhCt7f', + 'name': 'Saint Etienne', + 'uri': 'spotify:artist:1N2FgBLehaq77UEdJhCt7f', + }), + dict({ + 'artist_id': '0RwXnFrEoI8tltFvYpJgP6', + 'name': 'Confidence Man', + 'uri': 'spotify:artist:0RwXnFrEoI8tltFvYpJgP6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 183960, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6UYzOKGh4hXae0reTWKK24', + }), + 'href': 'https://api.spotify.com/v1/tracks/6UYzOKGh4hXae0reTWKK24', + 'is_local': False, + 'name': 'Brand New Me', + 'track_id': '6UYzOKGh4hXae0reTWKK24', + 'track_number': 7, + 'type': , + 'uri': 'spotify:track:6UYzOKGh4hXae0reTWKK24', + }), + dict({ + 'album': dict({ + 'album_id': '1l8if9zQ8F0MEHVWYrMREe', + 'album_type': , + 'artists': list([ dict({ - 'name': 'Kim Mitzo Thompson', + 'artist_id': '5IpS1TN1Crp8Ym4zjiIrtK', + 'name': 'LXNGVX', + 'uri': 'spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK', }), ]), - 'description': ''' - Author(s): Kim Mitzo Thompson - Narrator(s): Various Contributors

Visit Old MacDonald's classic farm with these fun arrangements of favorite nursery rhymes and children's songs.

- ''', - 'edition': 'Unabridged', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7n4kkb28OrN8zr5GEthLNe', - }), - 'html_description': 'Author(s): Kim Mitzo Thompson
Narrator(s): Various Contributors
<P>Visit Old MacDonald's classic farm with these fun arrangements of favorite nursery rhymes and children's songs.</P>', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab676663000022a804ef5d641ec031e609b53b0f', + 'url': 'https://i.scdn.co/image/ab67616d0000b273427c80da235cb76fc89b8e27', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab6766630000db5b04ef5d641ec031e609b53b0f', + 'url': 'https://i.scdn.co/image/ab67616d00001e02427c80da235cb76fc89b8e27', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6766630000703b04ef5d641ec031e609b53b0f', + 'url': 'https://i.scdn.co/image/ab67616d00004851427c80da235cb76fc89b8e27', 'width': 64, }), ]), - 'languages': list([ - 'en', - ]), - 'name': 'Old MacDonald Had A Farm', - 'narrators': list([ + 'name': 'Montagem Mysterious Game', + 'release_date': '2023-12-01', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:1l8if9zQ8F0MEHVWYrMREe', + }), + 'artists': list([ + dict({ + 'artist_id': '5IpS1TN1Crp8Ym4zjiIrtK', + 'name': 'LXNGVX', + 'uri': 'spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK', + }), + ]), + 'disc_number': 1, + 'duration_ms': 103495, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7vOmSP2647oNUGGEhWd1cr', + }), + 'href': 'https://api.spotify.com/v1/tracks/7vOmSP2647oNUGGEhWd1cr', + 'is_local': False, + 'name': 'Montagem Mysterious Game', + 'track_id': '7vOmSP2647oNUGGEhWd1cr', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:7vOmSP2647oNUGGEhWd1cr', + }), + dict({ + 'album': dict({ + 'album_id': '3Jvz71ZoKZaTQbbQyXfHwT', + 'album_type': , + 'artists': list([ dict({ - 'name': 'Various Contributors', + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), - 'publisher': 'Kim Mitzo Thompson', - 'total_chapters': 17, - 'type': 'audiobook', - 'uri': 'spotify:show:7n4kkb28OrN8zr5GEthLNe', - }), - ]), - 'episodes': list([ - dict({ - 'description': "D Oldies playing from another room and it's raining (raindrops falling on leaves) 3 Hours", - 'duration_ms': 10822789, - 'episode_id': '0VQo6YBrswFORfvwwKCER3', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0VQo6YBrswFORfvwwKCER3', - }), - 'href': 'https://api.spotify.com/v1/episodes/0VQo6YBrswFORfvwwKCER3', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8afa5243ceb27c662449a985ec', + 'url': 'https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1ffa5243ceb27c662449a985ec', + 'url': 'https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dfa5243ceb27c662449a985ec', + 'url': 'https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3', 'width': 64, }), ]), - 'name': "D Oldies playing from another room and it's raining (raindrops falling on leaves) 3 Hours", - 'release_date': '2021-04-20', + 'name': 'USB', + 'release_date': '2026-01-23', 'release_date_precision': , - 'uri': 'spotify:episode:0VQo6YBrswFORfvwwKCER3', + 'total_tracks': 35, + 'uri': 'spotify:album:3Jvz71ZoKZaTQbbQyXfHwT', }), - dict({ - 'description': "Live from The Eras Tour (Taylor's Version) Hosted on Acast. See acast.com/privacy for more information.", - 'duration_ms': 266109, - 'episode_id': '33xXabVnJfMTdHWtARgn3D', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/33xXabVnJfMTdHWtARgn3D', + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), - 'href': 'https://api.spotify.com/v1/episodes/33xXabVnJfMTdHWtARgn3D', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a1bd104ffbd807446f760ddf8', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f1bd104ffbd807446f760ddf8', - 'width': 300, - }), + dict({ + 'artist_id': '3NqV2DJoAWsjl787bWaHW7', + 'name': 'Amyl and The Sniffers', + 'uri': 'spotify:artist:3NqV2DJoAWsjl787bWaHW7', + }), + ]), + 'disc_number': 1, + 'duration_ms': 219130, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1A3XE7nDuLKrgnzXNNoFlW', + }), + 'href': 'https://api.spotify.com/v1/tracks/1A3XE7nDuLKrgnzXNNoFlW', + 'is_local': False, + 'name': "you're a star", + 'track_id': '1A3XE7nDuLKrgnzXNNoFlW', + 'track_number': 14, + 'type': , + 'uri': 'spotify:track:1A3XE7nDuLKrgnzXNNoFlW', + }), + dict({ + 'album': dict({ + 'album_id': '2D071Op9WrIRHEfQYRdjDc', + 'album_type': , + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d1bd104ffbd807446f760ddf8', - 'width': 64, + 'artist_id': '6kACVPfCOnqzgfEF5ryl0x', + 'name': 'Johnny Cash', + 'uri': 'spotify:artist:6kACVPfCOnqzgfEF5ryl0x', }), ]), - 'name': "Who's Affraid Of Little Old Me (Live From The Eras Tour)", - 'release_date': '2024-08-04', - 'release_date_precision': , - 'uri': 'spotify:episode:33xXabVnJfMTdHWtARgn3D', - }), - dict({ - 'description': "'My Old Ass' (in het Nederlands steevast ondertiteld met 'mijn oude roestige reet') met Aubrey Plaza is nu te bekijken! 🍑 Helaas heeft deze film niet in de bioscoop gedraaid, maar het is wat ons betreft een Liga 2024-essential om te checken. Dus kijk de film en luister dan deze aflevering (spoilers included!) en geniet mee van deze queer joy op je scherm!\xa0 Vermeldingen in de podcast:\xa0 - Out Magazine (https://www.instagram.com/outmagazine/) (van het Wicked interview) 🎬 'My Old Ass' (https://www.primevideo.com/detail/My-Old-Ass/0I1NQNGUFGJHUETGXCD3TC2S6Q)op Amazon Prime\xa0 🎶 TRANSNA het album (https://open.spotify.com/album/3ZbB4lOfSxeGln33XsFyXG?si=2ZrJsWLIRiSDojKFuJvM8g) op Spotify", - 'duration_ms': 3236287, - 'episode_id': '2ysMf0bq7NDmg14oyNAq2I', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2ysMf0bq7NDmg14oyNAq2I', - }), - 'href': 'https://api.spotify.com/v1/episodes/2ysMf0bq7NDmg14oyNAq2I', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a1fab4178009013b376f51668', + 'url': 'https://i.scdn.co/image/ab67616d0000b2733323a7383204e24a5f91f54c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f1fab4178009013b376f51668', + 'url': 'https://i.scdn.co/image/ab67616d00001e023323a7383204e24a5f91f54c', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d1fab4178009013b376f51668', + 'url': 'https://i.scdn.co/image/ab67616d000048513323a7383204e24a5f91f54c', 'width': 64, }), ]), - 'name': '#33 - My Old Ass (S09)', - 'release_date': '2024-11-30', - 'release_date_precision': , - 'uri': 'spotify:episode:2ysMf0bq7NDmg14oyNAq2I', + 'name': 'Silver', + 'release_date': '1979', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:2D071Op9WrIRHEfQYRdjDc', }), - dict({ - 'description': "Use code LOGAN10 for 10% off your SeatGeek order https://seatgeek.onelink.me/RrnK/LOGAN10 *Up to $25 off \xa0 Billionaire whisperer Gstaad Guy joins the boys to discuss his secret hideaway for the elite, rivalry with Zachirific (Sydney Sweeney’s BF), bullying billionaires, why money CAN buy happiness, partnering with Loro Piana & AP, old money vs new money, saying À La Poubelle to his job at Apple, launching new Poubel charm bracelets & more… \xa0 SUBSCRIBE TO THE PODCAST ► https://www.youtube.com/impaulsive \xa0 Watch Previous (IMPAULSIVE'S TOP 24 MOMENTS OF 2024) ► https://www.youtube.com/watch?v=ea0EdsJZ0Rg \xa0 ADD US ON: INSTAGRAM: https://www.instagram.com/impaulsiveshow/ \xa0 Timestamps: 0:00 Welcome Gstaad Guy! 💥 3:04 How Gstaad Guy Broke His Face! 🤕 5:06 The Billionaire Frown ☹️ 7:00 “Hideaway For The Elite” 😳 11:41 George, Logan & Mike Visiting Gstaad…🃏 17:09 Does Money Buy Happiness? 💸 21:25 Colton Vs Constance 🤑 24:02 George Roasted CEO of Coinbase! 🤣 27:03 Loro Piana & AP ⌚️ 34:16 Greatest Day of Gstaad Guy’s Life! 📲 39:48 Zachirific Rivalry 😤 42:30 Funny Billionaire Boat Story! 🛥️ 44:48 Mike & Gstaad Guy’s Rocky Relationship..😠 47:26 Leaving Apple To Become Influencer 🍎 52:35 Greatness of Zachirific 👏 56:44 Who Gets More Chicks? 💃🏼 57:15 À La Poubelle Game! 🗑️ 1:02:48 New Poubel Charm Bracelets! 🔥 1:09:34 The REAL Gstaad Guy..? 😱 1:11:46 Rich Kids Takeover! 🏨 1:13:25 Best Places to Visit on Earth? 🌎 \xa0 PLEASE NOTE Impaulsive is a significant break from the typical content viewers have come to expect from the vlog channel & we could not be more proud and excited to watch this unfold and grow. Please be advised that we will be exploring a wide variety of topics (some adult-themed) and our younger viewers (and their parents) should be advised that some topics will be for mature audiences only.", - 'duration_ms': 4635742, - 'episode_id': '6pr7Hp7MoJTrf6x0qJFEBa', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/6pr7Hp7MoJTrf6x0qJFEBa', + 'artists': list([ + dict({ + 'artist_id': '6kACVPfCOnqzgfEF5ryl0x', + 'name': 'Johnny Cash', + 'uri': 'spotify:artist:6kACVPfCOnqzgfEF5ryl0x', }), - 'href': 'https://api.spotify.com/v1/episodes/6pr7Hp7MoJTrf6x0qJFEBa', - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 225493, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6WrgT3Ztfis3E9V64u7u6t', + }), + 'href': 'https://api.spotify.com/v1/tracks/6WrgT3Ztfis3E9V64u7u6t', + 'is_local': False, + 'name': '(Ghost) Riders in the Sky', + 'track_id': '6WrgT3Ztfis3E9V64u7u6t', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:6WrgT3Ztfis3E9V64u7u6t', + }), + dict({ + 'album': dict({ + 'album_id': '05U0USUzKB8vLfdOWggfqC', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a488fb29b868a43367803f60d', - 'width': 640, + 'artist_id': '6os1temnovzJIEGRUmn3fG', + 'name': 'BNYX®', + 'uri': 'spotify:artist:6os1temnovzJIEGRUmn3fG', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f488fb29b868a43367803f60d', - 'width': 300, + 'artist_id': '0fA0VVWsXO9YnASrzqfmYu', + 'name': 'Kid Cudi', + 'uri': 'spotify:artist:0fA0VVWsXO9YnASrzqfmYu', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d488fb29b868a43367803f60d', - 'width': 64, + 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', + 'name': 'Röyksopp', + 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', }), ]), - 'name': 'Meet Gstaad Guy: The 27-Year-Old Who Made a Career Bullying Billionaires', - 'release_date': '2025-01-02', - 'release_date_precision': , - 'uri': 'spotify:episode:6pr7Hp7MoJTrf6x0qJFEBa', - }), - dict({ - 'description': '\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f \xa0\xa0', - 'duration_ms': 287393, - 'episode_id': '59bFT8fYFQfx3giqyJZNel', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/59bFT8fYFQfx3giqyJZNel', - }), - 'href': 'https://api.spotify.com/v1/episodes/59bFT8fYFQfx3giqyJZNel', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a6c8715b45efbf7afd13f320e', + 'url': 'https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f6c8715b45efbf7afd13f320e', + 'url': 'https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d6c8715b45efbf7afd13f320e', + 'url': 'https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491', 'width': 64, }), ]), - 'name': 'Öykü Gürman- Kül Oldum', - 'release_date': '2022-02-08', + 'name': 'EVERYWHERE I GO (REMIND ME) feat. Kid Cudi', + 'release_date': '2026-01-30', 'release_date_precision': , - 'uri': 'spotify:episode:59bFT8fYFQfx3giqyJZNel', + 'total_tracks': 1, + 'uri': 'spotify:album:05U0USUzKB8vLfdOWggfqC', }), - dict({ - 'description': 'Bir Günlük Öldürün Beni', - 'duration_ms': 210077, - 'episode_id': '5Tl0pm6g17HHYtRbuiFUPo', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5Tl0pm6g17HHYtRbuiFUPo', + 'artists': list([ + dict({ + 'artist_id': '6os1temnovzJIEGRUmn3fG', + 'name': 'BNYX®', + 'uri': 'spotify:artist:6os1temnovzJIEGRUmn3fG', }), - 'href': 'https://api.spotify.com/v1/episodes/5Tl0pm6g17HHYtRbuiFUPo', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8aadac9d1b9a77936e6b13037d', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fadac9d1b9a77936e6b13037d', - 'width': 300, - }), + dict({ + 'artist_id': '0fA0VVWsXO9YnASrzqfmYu', + 'name': 'Kid Cudi', + 'uri': 'spotify:artist:0fA0VVWsXO9YnASrzqfmYu', + }), + dict({ + 'artist_id': '5nPOO9iTcrs9k6yFffPxjH', + 'name': 'Röyksopp', + 'uri': 'spotify:artist:5nPOO9iTcrs9k6yFffPxjH', + }), + ]), + 'disc_number': 1, + 'duration_ms': 217243, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T', + }), + 'href': 'https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T', + 'is_local': False, + 'name': 'EVERYWHERE I GO (REMIND ME) feat. Kid Cudi', + 'track_id': '55QDC1UHFcqlnH0xSvvB7T', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:55QDC1UHFcqlnH0xSvvB7T', + }), + dict({ + 'album': dict({ + 'album_id': '5Oc8vZtWeKU5aikCtKXDYK', + 'album_type': , + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dadac9d1b9a77936e6b13037d', - 'width': 64, + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', }), ]), - 'name': 'Bir Günlük Öldürün Beni', - 'release_date': '2023-09-08', - 'release_date_precision': , - 'uri': 'spotify:episode:5Tl0pm6g17HHYtRbuiFUPo', - }), - dict({ - 'description': 'In 1997 Beverly Dollarhide hears miraculous news: her missing son, Nicholas, has been found in Spain. But the person she thinks is her teenage son is actually a grown man, a well known French identity scammer named Frederic Bourdin. And, after Frederic is brought back to the United States to be with his pretend family, the mystery of the real Nicholas Barclay’s disappearance grows deeper.Be the first to know about Wondery’s newest podcasts, curated recommendations, and more! Sign up now at https://wondery.fm/wonderynewsletterListen to Scamfluencers on the Wondery App or wherever you get your podcasts. You can listen early and ad-free on Wondery+. Join Wondery+ in the Wondery App, Apple Podcasts or Spotify. Start your free trial by visiting wondery.com/links/scamfluencers/ now.See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.', - 'duration_ms': 3675141, - 'episode_id': '064QZJa9VgJrzSiWcQ1Wcq', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/064QZJa9VgJrzSiWcQ1Wcq', - }), - 'href': 'https://api.spotify.com/v1/episodes/064QZJa9VgJrzSiWcQ1Wcq', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ad52e77a5844deee68aa3cd47', + 'url': 'https://i.scdn.co/image/ab67616d0000b273060527443968eda6776ba762', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fd52e77a5844deee68aa3cd47', + 'url': 'https://i.scdn.co/image/ab67616d00001e02060527443968eda6776ba762', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dd52e77a5844deee68aa3cd47', + 'url': 'https://i.scdn.co/image/ab67616d00004851060527443968eda6776ba762', 'width': 64, }), ]), - 'name': 'Frédéric Bourdin: No Country For Old Men', - 'release_date': '2025-01-20', + 'name': 'Modern Synthesis', + 'release_date': '2016-07-01', 'release_date_precision': , - 'uri': 'spotify:episode:064QZJa9VgJrzSiWcQ1Wcq', + 'total_tracks': 11, + 'uri': 'spotify:album:5Oc8vZtWeKU5aikCtKXDYK', }), - dict({ - 'description': 'On December 31st, 1989, a mother from a suburban neighborhood in Ohio disappeared into thin air. But when the dark secrets began to come to light, the picture grew darker and darker with every new revelation. And in today\'s special episode, we speak with Collier Landry, the victim\'s son, and the boy who helped solve the crime. - Listen to our new show, "THE CONSPIRACY FILES"!: -Spotify - https://open.spotify.com/show/5IY9nWD2MYDzlSYP48nRPl -Apple Podcasts - https://podcasts.apple.com/us/podcast/the-conspiracy-files/id1752719844 -Amazon/Audible - https://music.amazon.com/podcasts/ab1ade99-740c-46ae-8028-b2cf41eabf58/the-conspiracy-files -Pandora - https://www.pandora.com/podcast/the-conspiracy-files/PC:1001089101 -iHeart - https://iheart.com/podcast/186907423/ -PocketCast - https://pca.st/dpdyrcca -CastBox - https://castbox.fm/channel/id6193084?country=us - Stay Connected: Join the Murder in America fam in our free Facebook Community for a behind-the-scenes look, more insights and current events in the true crime world:\xa0https://www.facebook.com/groups/4365229996855701 If you want even more Murder in America bonus content, including ad-free episodes, come join us on Patreon:\xa0https://www.patreon.com/murderinamerica Instagram:\xa0http://instagram.com/murderinamerica/ Facebook:https://www.facebook.com/people/Murder-in-America-Podcast/100086268848682/ Twitter:\xa0https://twitter.com/MurderInAmerica TikTok:\xa0https://www.tiktok.com/@theparanormalfiles\xa0and\xa0https://www.tiktok.com/@courtneybrowen Feeling spooky? Follow Colin as he travels state to state (and even country to country!) investigating claims of extreme paranormal activity and visiting famous haunted locations on The Paranormal Files Official Channel:\xa0https://www.youtube.com/c/TheParanormalFilesOfficialChannel - (c) BLOOD IN THE SINK PRODUCTIONS 2025 Learn more about your ad choices. Visit megaphone.fm/adchoices', - 'duration_ms': 5894817, - 'episode_id': '0cTwLSkozugzhvUj2gjBbu', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0cTwLSkozugzhvUj2gjBbu', + 'artists': list([ + dict({ + 'artist_id': '3jULn43a6xfzqleyeFjPIq', + 'name': 'Area 11', + 'uri': 'spotify:artist:3jULn43a6xfzqleyeFjPIq', }), - 'href': 'https://api.spotify.com/v1/episodes/0cTwLSkozugzhvUj2gjBbu', + ]), + 'disc_number': 1, + 'duration_ms': 216506, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1PkSZNDQNdgCLG4RtgMjlD', + }), + 'href': 'https://api.spotify.com/v1/tracks/1PkSZNDQNdgCLG4RtgMjlD', + 'is_local': False, + 'name': 'After the Flags', + 'track_id': '1PkSZNDQNdgCLG4RtgMjlD', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:1PkSZNDQNdgCLG4RtgMjlD', + }), + dict({ + 'album': dict({ + 'album_id': '6gePAokYlEquPQ4LDVc1ri', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7ouEqUl1PCVPlNninecdcz', + 'name': 'HAVEN.', + 'uri': 'spotify:artist:7ouEqUl1PCVPlNninecdcz', + }), + dict({ + 'artist_id': '29G5je6tT7As2ZFY72CdXs', + 'name': 'Kaitlin Aragon', + 'uri': 'spotify:artist:29G5je6tT7As2ZFY72CdXs', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab63fe8290533b1df12a4e2d7', + 'url': 'https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb63fe8290533b1df12a4e2d7', + 'url': 'https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db63fe8290533b1df12a4e2d7', + 'url': 'https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099', 'width': 64, }), ]), - 'name': "EP. 183: OHIO - The 11-Year-Old Who Helped Solve His Mom's Murder", - 'release_date': '2025-01-03', + 'name': 'I Run', + 'release_date': '2025-11-21', 'release_date_precision': , - 'uri': 'spotify:episode:0cTwLSkozugzhvUj2gjBbu', + 'total_tracks': 1, + 'uri': 'spotify:album:6gePAokYlEquPQ4LDVc1ri', }), - dict({ - 'description': '0:00 Intro 0:17 Mommy 2:27 Comment 2:39 ASL 10:26 Mistress 14:40 Pokemon Learn more about your ad choices. Visit megaphone.fm/adchoices', - 'duration_ms': 1072744, - 'episode_id': '2IOQ2BbxKvMdmBmMIVlON4', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2IOQ2BbxKvMdmBmMIVlON4', + 'artists': list([ + dict({ + 'artist_id': '7ouEqUl1PCVPlNninecdcz', + 'name': 'HAVEN.', + 'uri': 'spotify:artist:7ouEqUl1PCVPlNninecdcz', + }), + dict({ + 'artist_id': '29G5je6tT7As2ZFY72CdXs', + 'name': 'Kaitlin Aragon', + 'uri': 'spotify:artist:29G5je6tT7As2ZFY72CdXs', }), - 'href': 'https://api.spotify.com/v1/episodes/2IOQ2BbxKvMdmBmMIVlON4', + ]), + 'disc_number': 1, + 'duration_ms': 129565, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g', + }), + 'href': 'https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g', + 'is_local': False, + 'name': 'I Run', + 'track_id': '1WwQ714xuznu44tEnkem2g', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1WwQ714xuznu44tEnkem2g', + }), + dict({ + 'album': dict({ + 'album_id': '2k9qbwMJmO8HTT9TiYIeTG', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '76TvRLbqtgOcAoIsBplbfz', + 'name': 'Soft Faith', + 'uri': 'spotify:artist:76TvRLbqtgOcAoIsBplbfz', + }), + dict({ + 'artist_id': '0lDo9zbShSX0EXnxLpUZIU', + 'name': 'LEXXE', + 'uri': 'spotify:artist:0lDo9zbShSX0EXnxLpUZIU', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a169eb6511a255e01ed31b16f', + 'url': 'https://i.scdn.co/image/ab67616d0000b27340a6359bfce111ee9afedf92', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f169eb6511a255e01ed31b16f', + 'url': 'https://i.scdn.co/image/ab67616d00001e0240a6359bfce111ee9afedf92', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d169eb6511a255e01ed31b16f', + 'url': 'https://i.scdn.co/image/ab67616d0000485140a6359bfce111ee9afedf92', 'width': 64, }), ]), - 'name': 'r/Relationships My Mom is 2 Years Older than Me', - 'release_date': '2025-01-24', + 'name': 'Hold Me Closer', + 'release_date': '2025-07-03', 'release_date_precision': , - 'uri': 'spotify:episode:2IOQ2BbxKvMdmBmMIVlON4', + 'total_tracks': 1, + 'uri': 'spotify:album:2k9qbwMJmO8HTT9TiYIeTG', }), - dict({ - 'description': 'Sang’s mom is haunted. Everyone has their own explanations for it but it’s that simple.\xa0Every time she sets the dinner table - she stares at the empty seat. Sometimes smiling, sometimes pouting, but always as if someone is sitting there.\xa0Sang would ask -\xa0“Mom, is everything alright?”“Just make sure to save some of the meat for Niuniu - you know that’s her favorite.”Sang’s mom would motion at the empty chair and smile.\xa0The haunting started when Niuniu, Sang’s little sister, went missing. Nobody knew what happened to her other than the fact that she received a creepy doll with moving eyes shortly before she went missing.\xa026 years later Niuniu would come back to tell everyone the truth. She was kidnapped, trafficked, and sold. After 26 years she was coming back to kill her trafficker. Get her revenge.\xa0\xa0\xa0Full Source Notes: rottenmangopodcast.com\xa0\xa0', - 'duration_ms': 3874873, - 'episode_id': '4ATmxIwrmFZUQl19Z6qWq6', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/4ATmxIwrmFZUQl19Z6qWq6', + 'artists': list([ + dict({ + 'artist_id': '76TvRLbqtgOcAoIsBplbfz', + 'name': 'Soft Faith', + 'uri': 'spotify:artist:76TvRLbqtgOcAoIsBplbfz', + }), + dict({ + 'artist_id': '0lDo9zbShSX0EXnxLpUZIU', + 'name': 'LEXXE', + 'uri': 'spotify:artist:0lDo9zbShSX0EXnxLpUZIU', }), - 'href': 'https://api.spotify.com/v1/episodes/4ATmxIwrmFZUQl19Z6qWq6', + ]), + 'disc_number': 1, + 'duration_ms': 199680, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3Z9opAvcyRGRJBV6VcaptT', + }), + 'href': 'https://api.spotify.com/v1/tracks/3Z9opAvcyRGRJBV6VcaptT', + 'is_local': False, + 'name': 'Hold Me Closer', + 'track_id': '3Z9opAvcyRGRJBV6VcaptT', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:3Z9opAvcyRGRJBV6VcaptT', + }), + dict({ + 'album': dict({ + 'album_id': '4aR6RrvJDzBrXYQTx7x5p5', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5pdyjBIaY5o1yOyexGIUc6', + 'name': 'Lights', + 'uri': 'spotify:artist:5pdyjBIaY5o1yOyexGIUc6', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ae17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d0000b273c9f25860a66cf9f593b38b57', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fe17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d00001e02c9f25860a66cf9f593b38b57', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68de17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d00004851c9f25860a66cf9f593b38b57', 'width': 64, }), ]), - 'name': '#408: 5Yr Old Girl SOLD - 26 Years Later She Wants Revenge & On Mission To Kill Trafficker', - 'release_date': '2024-12-24', + 'name': 'A6EXTENDED', + 'release_date': '2026-01-30', 'release_date_precision': , - 'uri': 'spotify:episode:4ATmxIwrmFZUQl19Z6qWq6', + 'total_tracks': 21, + 'uri': 'spotify:album:4aR6RrvJDzBrXYQTx7x5p5', }), - dict({ - 'description': '“To Catch A Predator” steps:Hire an adult decoy to lurk on websites advertising themselves as 13 year olds looking for a middle aged companion.Invite the adult predator to a house that has been wired for audio and video recording.Have the host of the famous TV show pop out to ask the predator questions and arrest them on the way out.That is the premise to the show “To Catch A Predator” that has now been cancelled for its moral dilemmas.\xa0But now influencers are recreating the show themselves on their platforms. Luring in predators, confronting them, and then calling the police.\xa0That’s what 17 year old Gavon tells the cops was his plan… He met up with a middle aged man on Grindr for the purpose of robbing him because he deserves it. Why else would he talk to a minor?But for the police to believe his side of the story they have to go through his phone… and that’s where they find a folder titled - “Dark.”\xa0The password? “Murder.”\xa0Suddenly a simple robbery case turns into a murder investigation because in it… are videos and photos of 17 year old Gavon Ramsay killing and SAing a 98 year old woman in her own home. Gavon Ramsay is the predator.\xa0\xa0\xa0Full Source Notes: rottenmangopodcast.com\xa0', - 'duration_ms': 5047118, - 'episode_id': '5CPEh8oAStpCEBZBMYH5Rb', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5CPEh8oAStpCEBZBMYH5Rb', + 'artists': list([ + dict({ + 'artist_id': '5pdyjBIaY5o1yOyexGIUc6', + 'name': 'Lights', + 'uri': 'spotify:artist:5pdyjBIaY5o1yOyexGIUc6', }), - 'href': 'https://api.spotify.com/v1/episodes/5CPEh8oAStpCEBZBMYH5Rb', + ]), + 'disc_number': 1, + 'duration_ms': 230117, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3J3RYcIvUlauZxZI6hPLun', + }), + 'href': 'https://api.spotify.com/v1/tracks/3J3RYcIvUlauZxZI6hPLun', + 'is_local': False, + 'name': 'EDUCATION', + 'track_id': '3J3RYcIvUlauZxZI6hPLun', + 'track_number': 14, + 'type': , + 'uri': 'spotify:track:3J3RYcIvUlauZxZI6hPLun', + }), + dict({ + 'album': dict({ + 'album_id': '54apQNp3ruFrK20sYZvmdf', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ae17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fe17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68de17b81be830039041326c578', + 'url': 'https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95', 'width': 64, }), ]), - 'name': '#406: 16-Yr-Old Murders 98-Yr-Old Woman To SA Her Corpse For 2 Hours While Recording', - 'release_date': '2024-12-12', + 'name': 'Bardcore Mayhem, Vol. 1', + 'release_date': '2025-09-24', 'release_date_precision': , - 'uri': 'spotify:episode:5CPEh8oAStpCEBZBMYH5Rb', + 'total_tracks': 12, + 'uri': 'spotify:album:54apQNp3ruFrK20sYZvmdf', }), - dict({ - 'description': "Sierah Joughin was a 20-year-old college student who was riding her bike home from her boyfriend's house one night when everything suddenly changed. Her boyfriend had been following alongside on his motorcycle, and when they parted ways, Sierra was immediately attacked and abducted by a sick man who lived nearby. Justice for Sierah: https://justiceforsierah.org/ Sierah Strong: https://justiceforsierah.org/programm... Kid Print ID: https://justiceforsierah.org/kidprint/ Check out my foundation, Higher Hope: Higher Hope Foundation: https://www.higherhope.org/\xa0 Shop my Merch! https://kendallrae.shop This episode is sponsored by: Quince Earnin Acorns Check out Kendall's other podcasts: The Sesh & Mile Higher Follow Kendall! YouTube Twitter Instagram Facebook Mile Higher Zoo REQUESTS: General case suggestion form: https://bit.ly/32kwPly Form for people directly related/ close to the victim: https://bit.ly/3KqMZLj Discord: https://discord.com/invite/an4stY9BCN CONTACT: For Business Inquiries - kendall@INFAgency.com ", - 'duration_ms': 4165616, - 'episode_id': '0X3PCpHPRKSd9R1yfpF5Pz', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/0X3PCpHPRKSd9R1yfpF5Pz', + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', }), - 'href': 'https://api.spotify.com/v1/episodes/0X3PCpHPRKSd9R1yfpF5Pz', + ]), + 'disc_number': 1, + 'duration_ms': 172079, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q', + }), + 'href': 'https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q', + 'is_local': False, + 'name': 'Arrow splitter', + 'track_id': '0f56nfzpUaXE6t5E3oza3q', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:0f56nfzpUaXE6t5E3oza3q', + }), + dict({ + 'album': dict({ + 'album_id': '37P2qivB9weEafn1Y2VeF8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a3f5daa3fa2ffe173e2a7128f', + 'url': 'https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f3f5daa3fa2ffe173e2a7128f', + 'url': 'https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d3f5daa3fa2ffe173e2a7128f', + 'url': 'https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24', 'width': 64, }), ]), - 'name': 'Abducted While Biking Home: The Murder of 20-Year-Old Sierah Joughin', - 'release_date': '2025-01-16', + 'name': 'There’s Always More That I Could Say', + 'release_date': '2025-10-24', 'release_date_precision': , - 'uri': 'spotify:episode:0X3PCpHPRKSd9R1yfpF5Pz', + 'total_tracks': 10, + 'uri': 'spotify:album:37P2qivB9weEafn1Y2VeF8', }), - dict({ - 'description': "Happy birthday to me!! It's CAPRICORN SEASON and I am turning 32 years old. Every year, I like to reflect back on the valuable life lessons I've learned, and this year is a special one because it's the first year I can confidently say I feel more empowered and in living in my truth to the fullest. If you're interested in joining my masterclasses, here's the link to sign up. If doors aren't open, you can sign up for the waitlist and you will get an email when they're available again. Your support and love means the world to me. I see all of your comments, and dms. Feel free to comment on Spotify, or send me a message on instagram @lyss and @dateyourselfinstead. What did you think of this ep? It's probably going to be one of my favorites. LOVE YOU, xoxo. Lyss.", - 'duration_ms': 3041488, - 'episode_id': '5Xy3ILnR9ch31ZUei4PY0f', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5Xy3ILnR9ch31ZUei4PY0f', + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', }), - 'href': 'https://api.spotify.com/v1/episodes/5Xy3ILnR9ch31ZUei4PY0f', + ]), + 'disc_number': 1, + 'duration_ms': 173251, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH', + }), + 'href': 'https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH', + 'is_local': False, + 'name': 'Do It Again', + 'track_id': '4qM72D1GHUQRXwnmLZUcMH', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:4qM72D1GHUQRXwnmLZUcMH', + }), + dict({ + 'album': dict({ + 'album_id': '4pPLwz3J2zEskvu1Z6ATQ6', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8aad34c49fb838f1183771023d', + 'url': 'https://i.scdn.co/image/ab67616d0000b273209cf8ab39b8856a6ab9668e', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fad34c49fb838f1183771023d', + 'url': 'https://i.scdn.co/image/ab67616d00001e02209cf8ab39b8856a6ab9668e', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dad34c49fb838f1183771023d', + 'url': 'https://i.scdn.co/image/ab67616d00004851209cf8ab39b8856a6ab9668e', 'width': 64, }), ]), - 'name': '32 lessons I wish I knew sooner about love and life at 32 years old', - 'release_date': '2025-01-19', + 'name': 'Avenue', + 'release_date': '2022-10-07', 'release_date_precision': , - 'uri': 'spotify:episode:5Xy3ILnR9ch31ZUei4PY0f', + 'total_tracks': 1, + 'uri': 'spotify:album:4pPLwz3J2zEskvu1Z6ATQ6', }), - dict({ - 'description': "In this intense and emotional video, Brooke shares her shocking and heartbreaking story of discovering that her mom had an affair with her 18-year-old boyfriend. What started as a normal relationship quickly spiraled into a web of betrayal, hurt, and confusion. Watch as Brooke opens up about the pain of finding out about the affair, the aftermath, and how it has impacted her family and her sense of trust. If you have a unique story you'd like to share on the podcast, please fill out this form: https://forms.gle/ZiHgdoK4PLRAddiB9 or send an email to wereallinsanepodcast@gmail.com Business Inquiries please contact: weareallinsane@outloudtalent.com", - 'duration_ms': 10701610, - 'episode_id': '2EBTnjZY9zImvd715FPbey', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2EBTnjZY9zImvd715FPbey', + 'artists': list([ + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', }), - 'href': 'https://api.spotify.com/v1/episodes/2EBTnjZY9zImvd715FPbey', + ]), + 'disc_number': 1, + 'duration_ms': 182013, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6CjwjsGzDVn2hwREI6BKoY', + }), + 'href': 'https://api.spotify.com/v1/tracks/6CjwjsGzDVn2hwREI6BKoY', + 'is_local': False, + 'name': 'Avenue', + 'track_id': '6CjwjsGzDVn2hwREI6BKoY', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:6CjwjsGzDVn2hwREI6BKoY', + }), + dict({ + 'album': dict({ + 'album_id': '6NBVjRVV1TNiZ3a9odGlOQ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a8723df38e2218aebf533bbed', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736549db795138dc2b76258712', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f8723df38e2218aebf533bbed', + 'url': 'https://i.scdn.co/image/ab67616d00001e026549db795138dc2b76258712', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d8723df38e2218aebf533bbed', + 'url': 'https://i.scdn.co/image/ab67616d000048516549db795138dc2b76258712', 'width': 64, }), ]), - 'name': "My Mom's Affair with My 18-Year-Old Boyfriend", - 'release_date': '2024-12-23', + 'name': 'A View From The End Of The World', + 'release_date': '2010-01-01', 'release_date_precision': , - 'uri': 'spotify:episode:2EBTnjZY9zImvd715FPbey', + 'total_tracks': 14, + 'uri': 'spotify:album:6NBVjRVV1TNiZ3a9odGlOQ', }), - dict({ - 'description': 'Three! Two! One! We Failed! Oh, and happy new year I guess... Learn more about your ad choices. Visit podcastchoices.com/adchoices', - 'duration_ms': 3529002, - 'episode_id': '65O7xKpzcrmxd1jSLu3fAe', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/65O7xKpzcrmxd1jSLu3fAe', + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', }), - 'href': 'https://api.spotify.com/v1/episodes/65O7xKpzcrmxd1jSLu3fAe', - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 212000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3YjFUYTXrJrFsYXmxaXmqY', + }), + 'href': 'https://api.spotify.com/v1/tracks/3YjFUYTXrJrFsYXmxaXmqY', + 'is_local': False, + 'name': 'The Greatest Show On Earth', + 'track_id': '3YjFUYTXrJrFsYXmxaXmqY', + 'track_number': 13, + 'type': , + 'uri': 'spotify:track:3YjFUYTXrJrFsYXmxaXmqY', + }), + dict({ + 'album': dict({ + 'album_id': '1jmVSpWhzD8vciWg2Qtd5V', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a80e26e1f6b9ec427a0faf074', - 'width': 640, + 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', + 'name': 'Sonny Fodera', + 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f80e26e1f6b9ec427a0faf074', - 'width': 300, + 'artist_id': '0Cs47vvRsPgEfliBU9KDiB', + 'name': 'D.O.D', + 'uri': 'spotify:artist:0Cs47vvRsPgEfliBU9KDiB', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d80e26e1f6b9ec427a0faf074', - 'width': 64, + 'artist_id': '4STmXOXUF3UieHU46NWLVt', + 'name': 'Poppy Baskcomb', + 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', }), ]), - 'name': 'New Year, Old Us', - 'release_date': '2024-12-27', - 'release_date_precision': , - 'uri': 'spotify:episode:65O7xKpzcrmxd1jSLu3fAe', - }), - dict({ - 'description': 'in front of me today, i have 2 lists of new year’s resolutions - one from 2023 and one from 2024. did i accomplish my resolutions? did i fail miserably? what can we learn from my past 2 years of resolutions? today i’m going to react to them with you. Learn more about your ad choices. Visit podcastchoices.com/adchoices', - 'duration_ms': 2431059, - 'episode_id': '1dHW4KULBe8j9nYUY8oHaE', - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/1dHW4KULBe8j9nYUY8oHaE', - }), - 'href': 'https://api.spotify.com/v1/episodes/1dHW4KULBe8j9nYUY8oHaE', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a593ce89783309a0d57b959a1', + 'url': 'https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f593ce89783309a0d57b959a1', + 'url': 'https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d593ce89783309a0d57b959a1', + 'url': 'https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae', 'width': 64, }), ]), - 'name': "reacting to my old new year's resolutions", - 'release_date': '2024-12-08', + 'name': 'Think About Us', + 'release_date': '2025-10-17', 'release_date_precision': , - 'uri': 'spotify:episode:1dHW4KULBe8j9nYUY8oHaE', + 'total_tracks': 1, + 'uri': 'spotify:album:1jmVSpWhzD8vciWg2Qtd5V', }), - dict({ - 'description': 'I Miss The Old Kanye [EDIT]', - 'duration_ms': 51069, - 'episode_id': '01UKcpGcNSKHDLNDTPGMY2', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/01UKcpGcNSKHDLNDTPGMY2', + 'artists': list([ + dict({ + 'artist_id': '39B7ChWwrWDs7zXlsu3MoP', + 'name': 'Sonny Fodera', + 'uri': 'spotify:artist:39B7ChWwrWDs7zXlsu3MoP', + }), + dict({ + 'artist_id': '0Cs47vvRsPgEfliBU9KDiB', + 'name': 'D.O.D', + 'uri': 'spotify:artist:0Cs47vvRsPgEfliBU9KDiB', + }), + dict({ + 'artist_id': '4STmXOXUF3UieHU46NWLVt', + 'name': 'Poppy Baskcomb', + 'uri': 'spotify:artist:4STmXOXUF3UieHU46NWLVt', }), - 'href': 'https://api.spotify.com/v1/episodes/01UKcpGcNSKHDLNDTPGMY2', + ]), + 'disc_number': 1, + 'duration_ms': 178148, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj', + }), + 'href': 'https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj', + 'is_local': False, + 'name': 'Think About Us', + 'track_id': '0lRnxwJeUOxwEvWMw4uQKj', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0lRnxwJeUOxwEvWMw4uQKj', + }), + dict({ + 'album': dict({ + 'album_id': '468UoiP1ZXTvpSERBIri1j', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '48QP1FCIq76VufzDPShGi5', + 'name': 'Auger', + 'uri': 'spotify:artist:48QP1FCIq76VufzDPShGi5', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a9d2227994feb9358c331d073', + 'url': 'https://i.scdn.co/image/ab67616d0000b273a61bd5bca56d2b07e1d1ee11', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f9d2227994feb9358c331d073', + 'url': 'https://i.scdn.co/image/ab67616d00001e02a61bd5bca56d2b07e1d1ee11', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d9d2227994feb9358c331d073', + 'url': 'https://i.scdn.co/image/ab67616d00004851a61bd5bca56d2b07e1d1ee11', 'width': 64, }), ]), - 'name': 'I Miss The Old Kanye [EDIT]', - 'release_date': '2024-01-27', + 'name': 'Too Soon', + 'release_date': '2025-09-26', 'release_date_precision': , - 'uri': 'spotify:episode:01UKcpGcNSKHDLNDTPGMY2', + 'total_tracks': 2, + 'uri': 'spotify:album:468UoiP1ZXTvpSERBIri1j', }), - dict({ - 'description': '1 Hour of OLD ChainsFR 60 straight minutes of the oldest chainsfr videos back when dude was straight dookie and couldnt animate and also had a booty ahhh mic Including: bad haircuts, when you get too high, working in fast food, the 3 levels of being high, high school gym class be like, awkward conversations, NPCs in real life, running from the cops while high, the 7 levels of being drunk, the day i almost died, too high in public, the types of high people, going to school high, high school fights be like, family functions be like -chainsfr, chainsfr on spotify, chains stories, chainsfr stories, chains podcast', - 'duration_ms': 3650664, - 'episode_id': '2QdyQOvYvr1esGGLI9LDX0', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/2QdyQOvYvr1esGGLI9LDX0', + 'artists': list([ + dict({ + 'artist_id': '48QP1FCIq76VufzDPShGi5', + 'name': 'Auger', + 'uri': 'spotify:artist:48QP1FCIq76VufzDPShGi5', + }), + dict({ + 'artist_id': '0O6Y0Loo99vhWd86Hls3L5', + 'name': 'Bonnie Mavis', + 'uri': 'spotify:artist:0O6Y0Loo99vhWd86Hls3L5', }), - 'href': 'https://api.spotify.com/v1/episodes/2QdyQOvYvr1esGGLI9LDX0', + ]), + 'disc_number': 1, + 'duration_ms': 220754, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2N3GqfCKAbHkmGW69RzWN9', + }), + 'href': 'https://api.spotify.com/v1/tracks/2N3GqfCKAbHkmGW69RzWN9', + 'is_local': False, + 'name': 'Too Soon', + 'track_id': '2N3GqfCKAbHkmGW69RzWN9', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:2N3GqfCKAbHkmGW69RzWN9', + }), + dict({ + 'album': dict({ + 'album_id': '3q0YOrU7o2opcNSvPWwH5g', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a209d94fbd20da698cc251eba', + 'url': 'https://i.scdn.co/image/ab67616d0000b27381ddb1d811d3fbc640b4b123', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f209d94fbd20da698cc251eba', + 'url': 'https://i.scdn.co/image/ab67616d00001e0281ddb1d811d3fbc640b4b123', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d209d94fbd20da698cc251eba', + 'url': 'https://i.scdn.co/image/ab67616d0000485181ddb1d811d3fbc640b4b123', 'width': 64, }), ]), - 'name': '1 Hour of OLD ChainsFR', - 'release_date': '2024-12-13', + 'name': 'Bardcore Mayhem, Vol. 3', + 'release_date': '2025-11-02', 'release_date_precision': , - 'uri': 'spotify:episode:2QdyQOvYvr1esGGLI9LDX0', + 'total_tracks': 13, + 'uri': 'spotify:album:3q0YOrU7o2opcNSvPWwH5g', }), - dict({ - 'description': 'Relax and take notes while I take tokes of the marijuana smoke', - 'duration_ms': 161285, - 'episode_id': '48Dd57dBfckWucmiNIh4wG', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/48Dd57dBfckWucmiNIh4wG', + 'artists': list([ + dict({ + 'artist_id': '0TVQlzIjzD4ToSVeXIB15H', + 'name': 'The Bardic DM', + 'uri': 'spotify:artist:0TVQlzIjzD4ToSVeXIB15H', }), - 'href': 'https://api.spotify.com/v1/episodes/48Dd57dBfckWucmiNIh4wG', - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ace606b7bdb77171fb0ff79de', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fce606b7bdb77171fb0ff79de', - 'width': 300, - }), + ]), + 'disc_number': 1, + 'duration_ms': 206439, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5syCodXydzRuemOKomfq7m', + }), + 'href': 'https://api.spotify.com/v1/tracks/5syCodXydzRuemOKomfq7m', + 'is_local': False, + 'name': 'Slay It, Then Sauté It', + 'track_id': '5syCodXydzRuemOKomfq7m', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:5syCodXydzRuemOKomfq7m', + }), + dict({ + 'album': dict({ + 'album_id': '0HO9NtwyP7ZqB1jZ70MJL6', + 'album_type': , + 'artists': list([ dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dce606b7bdb77171fb0ff79de', - 'width': 64, + 'artist_id': '4NHQUGzhtTLFvgF5SZesLK', + 'name': 'Tove Lo', + 'uri': 'spotify:artist:4NHQUGzhtTLFvgF5SZesLK', }), ]), - 'name': 'Biggie - Relax And Take Notes (Dead Wrong Remix)', - 'release_date': '2023-09-15', - 'release_date_precision': , - 'uri': 'spotify:episode:48Dd57dBfckWucmiNIh4wG', - }), - dict({ - 'description': 'When i die, fuck it, i wanna go to hell. Because im a piece of shit it aint hard to fucking tell ', - 'duration_ms': 160417, - 'episode_id': '5d5YhSoRs78G0HxdpHz5OI', - 'explicit': True, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/episode/5d5YhSoRs78G0HxdpHz5OI', - }), - 'href': 'https://api.spotify.com/v1/episodes/5d5YhSoRs78G0HxdpHz5OI', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8afe0e317a7054e3645a7efcbe', + 'url': 'https://i.scdn.co/image/ab67616d0000b273aeb431774ee02fb6b7a9fea3', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1ffe0e317a7054e3645a7efcbe', + 'url': 'https://i.scdn.co/image/ab67616d00001e02aeb431774ee02fb6b7a9fea3', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dfe0e317a7054e3645a7efcbe', + 'url': 'https://i.scdn.co/image/ab67616d00004851aeb431774ee02fb6b7a9fea3', 'width': 64, }), ]), - 'name': 'Biggie - Suicidal Thoughts When I Die Remix', - 'release_date': '2023-09-15', + 'name': 'Dirt Femme', + 'release_date': '2022-10-14', 'release_date_precision': , - 'uri': 'spotify:episode:5d5YhSoRs78G0HxdpHz5OI', + 'total_tracks': 12, + 'uri': 'spotify:album:0HO9NtwyP7ZqB1jZ70MJL6', }), - ]), - 'playlists': list([ - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7y15TCWmOoqxeYyiALg775', + 'artists': list([ + dict({ + 'artist_id': '4NHQUGzhtTLFvgF5SZesLK', + 'name': 'Tove Lo', + 'uri': 'spotify:artist:4NHQUGzhtTLFvgF5SZesLK', }), - 'images': list([ - dict({ - 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be', - 'width': 640, - }), - dict({ - 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be', - 'width': 300, - }), + ]), + 'disc_number': 1, + 'duration_ms': 231333, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7owdogCJWuV3VFpluGIKgH', + }), + 'href': 'https://api.spotify.com/v1/tracks/7owdogCJWuV3VFpluGIKgH', + 'is_local': False, + 'name': 'Grapefruit', + 'track_id': '7owdogCJWuV3VFpluGIKgH', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:7owdogCJWuV3VFpluGIKgH', + }), + dict({ + 'album': dict({ + 'album_id': '3Jvz71ZoKZaTQbbQyXfHwT', + 'album_type': , + 'artists': list([ dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be', - 'width': 60, + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), ]), - 'name': 'Old but gold💛', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'tanjabrouwer', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/brouwerbaarn', - }), - 'href': 'https://api.spotify.com/v1/users/brouwerbaarn', - 'object_type': 'user', - 'owner_id': 'brouwerbaarn', - 'uri': 'spotify:user:brouwerbaarn', - }), - 'playlist_id': '7y15TCWmOoqxeYyiALg775', - 'public': True, - 'uri': 'spotify:playlist:7y15TCWmOoqxeYyiALg775', - }), - dict({ - 'collaborative': False, - 'description': 'The best oldies from the 70s, 80s, and 90s back when music was actually good', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/3pUwhh3WcgvFZbIiwJ3x6f', - }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83', + 'url': 'https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83', + 'url': 'https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3', + 'width': 64, }), ]), - 'name': '70/80/90 Oldies', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'preston.howell', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/121793365', - }), - 'href': 'https://api.spotify.com/v1/users/121793365', - 'object_type': 'user', - 'owner_id': '121793365', - 'uri': 'spotify:user:121793365', - }), - 'playlist_id': '3pUwhh3WcgvFZbIiwJ3x6f', - 'public': True, - 'uri': 'spotify:playlist:3pUwhh3WcgvFZbIiwJ3x6f', + 'name': 'USB', + 'release_date': '2026-01-23', + 'release_date_precision': , + 'total_tracks': 35, + 'uri': 'spotify:album:3Jvz71ZoKZaTQbbQyXfHwT', }), - dict({ - 'collaborative': False, - 'description': '#ThrowbackThursday Oldies Pop, Rock, Disco, R&B, Swing, Rockabilly & Blues Legends! (Listen here an 80s Disco or Happy Oldies playlist) A fine selection of cheering goldies from the best past!', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1TNg7JCxifAjwrnQARimex', - }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84fbe8a7975a5e0de860715a5a', - 'width': None, - }), - ]), - 'name': 'Oldies Best songs 80s, 70s, 60s / Throwbacks HITS / 💿', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'indiemono', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/sanik007', - }), - 'href': 'https://api.spotify.com/v1/users/sanik007', - 'object_type': 'user', - 'owner_id': 'sanik007', - 'uri': 'spotify:user:sanik007', + 'artists': list([ + dict({ + 'artist_id': '4oLeXFyACqeem2VImYeBFe', + 'name': 'Fred again..', + 'uri': 'spotify:artist:4oLeXFyACqeem2VImYeBFe', }), - 'playlist_id': '1TNg7JCxifAjwrnQARimex', - 'public': True, - 'uri': 'spotify:playlist:1TNg7JCxifAjwrnQARimex', - }), - dict({ - 'collaborative': False, - 'description': 'Thank you', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2rdwGXB4JeeS2DM7PO8pqL', + dict({ + 'artist_id': '3an9rnsXKPCAMlZgH4A0n4', + 'name': 'KETTAMA', + 'uri': 'spotify:artist:3an9rnsXKPCAMlZgH4A0n4', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cda334278d33081937c586935', - 'width': None, - }), - ]), - 'name': 'Old Songs Everyone Knows', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Carterhays', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/kckx6yhloq23mtijf127fvy8q', - }), - 'href': 'https://api.spotify.com/v1/users/kckx6yhloq23mtijf127fvy8q', - 'object_type': 'user', - 'owner_id': 'kckx6yhloq23mtijf127fvy8q', - 'uri': 'spotify:user:kckx6yhloq23mtijf127fvy8q', + dict({ + 'artist_id': '5fEdUhbIAf9JlPhlc3swPx', + 'name': 'Shady Nasty', + 'uri': 'spotify:artist:5fEdUhbIAf9JlPhlc3swPx', }), - 'playlist_id': '2rdwGXB4JeeS2DM7PO8pqL', - 'public': True, - 'uri': 'spotify:playlist:2rdwGXB4JeeS2DM7PO8pqL', + ]), + 'disc_number': 1, + 'duration_ms': 286285, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2Fxdbus1OWJBhy3NMHUF7J', }), - dict({ - 'collaborative': False, - 'description': 'The best ibiza lounge music, full of chill house, lounge & chillout vibes.. Updated weekly 🌴 Ibiza summer mix, old summer vibes, deep house, ibiza house, chill playlist, restaurant & bar vibes, rooftop sessions, sunset vibes, summervibes, ibiza music, morning vibes, evening chill, chill classics.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5ud67zggJb78Rt1EVL11nV', - }), - 'images': list([ + 'href': 'https://api.spotify.com/v1/tracks/2Fxdbus1OWJBhy3NMHUF7J', + 'is_local': False, + 'name': 'HARDSTYLE 2', + 'track_id': '2Fxdbus1OWJBhy3NMHUF7J', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:2Fxdbus1OWJBhy3NMHUF7J', + }), + dict({ + 'album': dict({ + 'album_id': '43W6LvGekoOd3Yk5ym8Bj7', + 'album_type': , + 'artists': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84c7ad21cda30292603fe35ec1', - 'width': None, + 'artist_id': '1gfIkFZ4hIs2gETkRVaY68', + 'name': 'Sons of the Pioneers', + 'uri': 'spotify:artist:1gfIkFZ4hIs2gETkRVaY68', }), ]), - 'name': 'Ibiza Lounge Music 🌴🌞 Summer Mix 2025 - Chill Deep House Vibes - Afro House', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Castle Collective', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/btie3keesw0834g1l5dgbvjqz', - }), - 'href': 'https://api.spotify.com/v1/users/btie3keesw0834g1l5dgbvjqz', - 'object_type': 'user', - 'owner_id': 'btie3keesw0834g1l5dgbvjqz', - 'uri': 'spotify:user:btie3keesw0834g1l5dgbvjqz', - }), - 'playlist_id': '5ud67zggJb78Rt1EVL11nV', - 'public': True, - 'uri': 'spotify:playlist:5ud67zggJb78Rt1EVL11nV', - }), - dict({ - 'collaborative': False, - 'description': '90s-00s Rnb Classics - Best r&b Music - Best Rnb Love Songs of All Time - R&b All Time Favorites / Favourites - Best of Neyo, Usher, Chris Brown, Ne-Yo, Sisqo, Craig David, Mario, Nelly, Akon, Mariah Carey, Boyz II Men', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/2T3BSpqN34Z4sppHDNWoeE', - }), 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84cdcaa5e273d90fdba839069b', - 'width': None, - }), - ]), - 'name': 'R&B Classics 90s & 2000s - Best Old School RnB Hits Playlist - Usher, Chris Brown, Ne-Yo, Mario', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Esydia', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/savz8vts72hqdy7von3mqc29g', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27375b0c528969decafb51425a4', + 'width': 640, }), - 'href': 'https://api.spotify.com/v1/users/savz8vts72hqdy7von3mqc29g', - 'object_type': 'user', - 'owner_id': 'savz8vts72hqdy7von3mqc29g', - 'uri': 'spotify:user:savz8vts72hqdy7von3mqc29g', - }), - 'playlist_id': '2T3BSpqN34Z4sppHDNWoeE', - 'public': True, - 'uri': 'spotify:playlist:2T3BSpqN34Z4sppHDNWoeE', - }), - dict({ - 'collaborative': False, - 'description': 'Takes you back to the 90's with nostalgic pop, house, happy hardcore etc.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5ccR8q4JkCVXSPlmYUQO4d', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84fdec67325d6f0a8a0f302428', - 'width': None, - }), - ]), - 'name': "Oldskool 90's mix", - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'John Den Ollander', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/21y6ay3pymrnshjb6gxt3iqpi', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0275b0c528969decafb51425a4', + 'width': 300, }), - 'href': 'https://api.spotify.com/v1/users/21y6ay3pymrnshjb6gxt3iqpi', - 'object_type': 'user', - 'owner_id': '21y6ay3pymrnshjb6gxt3iqpi', - 'uri': 'spotify:user:21y6ay3pymrnshjb6gxt3iqpi', - }), - 'playlist_id': '5ccR8q4JkCVXSPlmYUQO4d', - 'public': True, - 'uri': 'spotify:playlist:5ccR8q4JkCVXSPlmYUQO4d', - }), - dict({ - 'collaborative': False, - 'description': 'All the old and New Hits in one playlist. Best Afrobeats, Afrobeats Hits, African music, Top Afrobeats 2025, Afrobeat 2025, Top 100 Nigeria - Rema - Tyla - Ayra Starr - Oxlade - Wizkid - Burna Boy - Davido - Omah Lay - FireboyDML - Tems - Lojay -Libianca - Asake - Adekunle - City Boys - Peru.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/25Y75ozl2aI0NylFToefO5', - }), - 'images': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da8457a343b16f9396c0284a8e95', - 'width': None, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485175b0c528969decafb51425a4', + 'width': 64, }), ]), - 'name': 'Afrobeats Hits 🔥', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'EMA Records', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/4djxvzkx1svhemk7ozszfnkga', - }), - 'href': 'https://api.spotify.com/v1/users/4djxvzkx1svhemk7ozszfnkga', - 'object_type': 'user', - 'owner_id': '4djxvzkx1svhemk7ozszfnkga', - 'uri': 'spotify:user:4djxvzkx1svhemk7ozszfnkga', - }), - 'playlist_id': '25Y75ozl2aI0NylFToefO5', - 'public': True, - 'uri': 'spotify:playlist:25Y75ozl2aI0NylFToefO5', + 'name': 'Cool Water (With Bonus Tracks)', + 'release_date': '1959-05-10', + 'release_date_precision': , + 'total_tracks': 24, + 'uri': 'spotify:album:43W6LvGekoOd3Yk5ym8Bj7', }), - dict({ - 'collaborative': False, - 'description': 'white girl bangers, old radio hits, middle school dance memories, 2000-2020 vibes and other bops 🔥🔥', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/7GRnA1buU09xvdDoSJlyEw', + 'artists': list([ + dict({ + 'artist_id': '1gfIkFZ4hIs2gETkRVaY68', + 'name': 'Sons of the Pioneers', + 'uri': 'spotify:artist:1gfIkFZ4hIs2gETkRVaY68', }), - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 141946, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5kI7vpum3qPDB8ZT6rSPNV', + }), + 'href': 'https://api.spotify.com/v1/tracks/5kI7vpum3qPDB8ZT6rSPNV', + 'is_local': False, + 'name': 'Riders In The Sky', + 'track_id': '5kI7vpum3qPDB8ZT6rSPNV', + 'track_number': 10, + 'type': , + 'uri': 'spotify:track:5kI7vpum3qPDB8ZT6rSPNV', + }), + dict({ + 'album': dict({ + 'album_id': '37P2qivB9weEafn1Y2VeF8', + 'album_type': , + 'artists': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dc99f83325d6f2f478b69c68', - 'width': None, + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', }), ]), - 'name': 'nostalgic songs that go crazy🔥🔥', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'ufw.celery', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/31x46jzu4engjhfvh3n3pniojxdu', - }), - 'href': 'https://api.spotify.com/v1/users/31x46jzu4engjhfvh3n3pniojxdu', - 'object_type': 'user', - 'owner_id': '31x46jzu4engjhfvh3n3pniojxdu', - 'uri': 'spotify:user:31x46jzu4engjhfvh3n3pniojxdu', - }), - 'playlist_id': '7GRnA1buU09xvdDoSJlyEw', - 'public': True, - 'uri': 'spotify:playlist:7GRnA1buU09xvdDoSJlyEw', - }), - dict({ - 'collaborative': False, - 'description': 'Your favorite 2000s Hits 🪩 playlist, 2000s music hits, 2000 hits, 2010 hits, top hits 2000s, 2020 hits, 2010s top songs, throwbacks, old songs, 2000s pop hit throwback, old but gold, best pop songs, throwback bangers, best old songs, top hits, oud, 2010s nostalgia, best pop songs 2000s', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/26sGzSJGUxhqFlvNW4X15t', - }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b', + 'url': 'https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b', + 'url': 'https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24', + 'width': 64, }), ]), - 'name': 'Old hits 2000-2020😆', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Paige', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/mvereiken', - }), - 'href': 'https://api.spotify.com/v1/users/mvereiken', - 'object_type': 'user', - 'owner_id': 'mvereiken', - 'uri': 'spotify:user:mvereiken', - }), - 'playlist_id': '26sGzSJGUxhqFlvNW4X15t', - 'public': True, - 'uri': 'spotify:playlist:26sGzSJGUxhqFlvNW4X15t', + 'name': 'There’s Always More That I Could Say', + 'release_date': '2025-10-24', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:37P2qivB9weEafn1Y2VeF8', }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5y1hG76zYFBZ3rGmMFD6aZ', + 'artists': list([ + dict({ + 'artist_id': '4TrraAsitQKl821DQY42cZ', + 'name': 'Sigrid', + 'uri': 'spotify:artist:4TrraAsitQKl821DQY42cZ', }), + ]), + 'disc_number': 1, + 'duration_ms': 172889, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h', + }), + 'href': 'https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h', + 'is_local': False, + 'name': 'Two Years', + 'track_id': '67WAthizRvsLDjgzIZs27h', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:67WAthizRvsLDjgzIZs27h', + }), + dict({ + 'album': dict({ + 'album_id': '2IAVHJdaRPFA6MQqXHoG75', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '2ZRQcIgzPCVaT9XKhXZIzh', + 'name': 'Gryffin', + 'uri': 'spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10', + 'url': 'https://i.scdn.co/image/ab67616d0000b2730e5311993a01fb2e7169f6a7', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10', + 'url': 'https://i.scdn.co/image/ab67616d00001e020e5311993a01fb2e7169f6a7', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048510e5311993a01fb2e7169f6a7', + 'width': 64, }), ]), - 'name': 'Old School Bangers😈', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Declan Allport', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/11175441529', - }), - 'href': 'https://api.spotify.com/v1/users/11175441529', - 'object_type': 'user', - 'owner_id': '11175441529', - 'uri': 'spotify:user:11175441529', - }), - 'playlist_id': '5y1hG76zYFBZ3rGmMFD6aZ', - 'public': True, - 'uri': 'spotify:playlist:5y1hG76zYFBZ3rGmMFD6aZ', + 'name': 'Gravity', + 'release_date': '2019-10-24', + 'release_date_precision': , + 'total_tracks': 16, + 'uri': 'spotify:album:2IAVHJdaRPFA6MQqXHoG75', }), - dict({ - 'collaborative': False, - 'description': 'Best acoustic guitar and piano hits and cover of 2019 - 2023 + a few oldies. unplugged_rec on IG.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4uf0gphPVNtk4Uu0bxtdGA', + 'artists': list([ + dict({ + 'artist_id': '2ZRQcIgzPCVaT9XKhXZIzh', + 'name': 'Gryffin', + 'uri': 'spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh', }), - 'images': list([ - dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84f2e619c3093158e1ccf3a388', - 'width': None, - }), - ]), - 'name': 'Acoustic Covers 2025 (Top 100)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Unplugged', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/312avoycbyo353bvbqm2mpdnghjy', - }), - 'href': 'https://api.spotify.com/v1/users/312avoycbyo353bvbqm2mpdnghjy', - 'object_type': 'user', - 'owner_id': '312avoycbyo353bvbqm2mpdnghjy', - 'uri': 'spotify:user:312avoycbyo353bvbqm2mpdnghjy', + dict({ + 'artist_id': '2JfoFQs5wPHgLz8wnJ4wL2', + 'name': 'ZOHARA', + 'uri': 'spotify:artist:2JfoFQs5wPHgLz8wnJ4wL2', }), - 'playlist_id': '4uf0gphPVNtk4Uu0bxtdGA', - 'public': True, - 'uri': 'spotify:playlist:4uf0gphPVNtk4Uu0bxtdGA', + ]), + 'disc_number': 1, + 'duration_ms': 221129, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3aFxfpfeATHYg1n750dhgq', }), - dict({ - 'collaborative': False, - 'description': 'Essential tracks from the most notable classical works ever recorded - both old and new. Featuring Mozart, Beethoven, Bach, Chopin, Satie, Brahms, Vivaldi, Max Richter, Ludovico Einaudi', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/1h0CEZCm6IbFTbxThn6Xcs', - }), - 'images': list([ + 'href': 'https://api.spotify.com/v1/tracks/3aFxfpfeATHYg1n750dhgq', + 'is_local': False, + 'name': 'Remember (with ZOHARA)', + 'track_id': '3aFxfpfeATHYg1n750dhgq', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3aFxfpfeATHYg1n750dhgq', + }), + dict({ + 'album': dict({ + 'album_id': '7qo7ithHnDDufzWRUkpTHq', + 'album_type': , + 'artists': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da844ed1546759ae6e2e1256cfb0', - 'width': None, + 'artist_id': '543ccHFPnZfJMD8tRGPtu7', + 'name': 'James Smith', + 'uri': 'spotify:artist:543ccHFPnZfJMD8tRGPtu7', }), ]), - 'name': 'Best Classical Music', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Peaceful Classics', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/peacefulclassics', - }), - 'href': 'https://api.spotify.com/v1/users/peacefulclassics', - 'object_type': 'user', - 'owner_id': 'peacefulclassics', - 'uri': 'spotify:user:peacefulclassics', - }), - 'playlist_id': '1h0CEZCm6IbFTbxThn6Xcs', - 'public': True, - 'uri': 'spotify:playlist:1h0CEZCm6IbFTbxThn6Xcs', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/6DsHDZmrOgLBmxa9DJE6sb', - }), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca', + 'url': 'https://i.scdn.co/image/ab67616d0000b2733ef65e80e82a07db7d2ce6f8', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca', + 'url': 'https://i.scdn.co/image/ab67616d00001e023ef65e80e82a07db7d2ce6f8', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048513ef65e80e82a07db7d2ce6f8', + 'width': 64, }), ]), - 'name': 'old songs (2000-2017)', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'cloudkissees_', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/cli1csrh97684wluip5gaf93i', - }), - 'href': 'https://api.spotify.com/v1/users/cli1csrh97684wluip5gaf93i', - 'object_type': 'user', - 'owner_id': 'cli1csrh97684wluip5gaf93i', - 'uri': 'spotify:user:cli1csrh97684wluip5gaf93i', - }), - 'playlist_id': '6DsHDZmrOgLBmxa9DJE6sb', - 'public': True, - 'uri': 'spotify:playlist:6DsHDZmrOgLBmxa9DJE6sb', + 'name': 'Jesus Is A Woman', + 'release_date': '2025-08-29', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:7qo7ithHnDDufzWRUkpTHq', }), - dict({ - 'collaborative': False, - 'description': 'Pov: u r rich, probably drinking expensive champagne and watching your family riding horses or playing golf', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/0mJKDfPHCzi5mtkNxThfwU', + 'artists': list([ + dict({ + 'artist_id': '543ccHFPnZfJMD8tRGPtu7', + 'name': 'James Smith', + 'uri': 'spotify:artist:543ccHFPnZfJMD8tRGPtu7', }), - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 190529, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/10ZuUH8nrb4IbRRJUmsFXq', + }), + 'href': 'https://api.spotify.com/v1/tracks/10ZuUH8nrb4IbRRJUmsFXq', + 'is_local': False, + 'name': 'Jesus Is A Woman', + 'track_id': '10ZuUH8nrb4IbRRJUmsFXq', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:10ZuUH8nrb4IbRRJUmsFXq', + }), + dict({ + 'album': dict({ + 'album_id': '06z3wshQtpYwZnDoVle3pw', + 'album_type': , + 'artists': list([ dict({ - 'height': None, - 'url': 'https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da840f8c868a5d5236d10984e626', - 'width': None, - }), - ]), - 'name': 'old money style/ rich 💸💰', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Julia Marie Coyle Dørum', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/julia.dorum', + 'artist_id': '0QaSiI5TLA4N7mcsdxShDO', + 'name': 'Sub Focus', + 'uri': 'spotify:artist:0QaSiI5TLA4N7mcsdxShDO', }), - 'href': 'https://api.spotify.com/v1/users/julia.dorum', - 'object_type': 'user', - 'owner_id': 'julia.dorum', - 'uri': 'spotify:user:julia.dorum', - }), - 'playlist_id': '0mJKDfPHCzi5mtkNxThfwU', - 'public': True, - 'uri': 'spotify:playlist:0mJKDfPHCzi5mtkNxThfwU', - }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/5VRWlTmnbHXByhM7qQsTEJ', - }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c', + 'url': 'https://i.scdn.co/image/ab67616d0000b273c7f55a59f035464b5b97b305', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c', + 'url': 'https://i.scdn.co/image/ab67616d00001e02c7f55a59f035464b5b97b305', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851c7f55a59f035464b5b97b305', + 'width': 64, }), ]), - 'name': 'OLD BANGERS 2000-2015', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Thomas Bro', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/1157697626', - }), - 'href': 'https://api.spotify.com/v1/users/1157697626', - 'object_type': 'user', - 'owner_id': '1157697626', - 'uri': 'spotify:user:1157697626', - }), - 'playlist_id': '5VRWlTmnbHXByhM7qQsTEJ', - 'public': True, - 'uri': 'spotify:playlist:5VRWlTmnbHXByhM7qQsTEJ', + 'name': 'Contact', + 'release_date': '2025-11-21', + 'release_date_precision': , + 'total_tracks': 14, + 'uri': 'spotify:album:06z3wshQtpYwZnDoVle3pw', }), - dict({ - 'collaborative': False, - 'description': '', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/playlist/4tpbrXsklgYKdtpQIDKgGQ', + 'artists': list([ + dict({ + 'artist_id': '0QaSiI5TLA4N7mcsdxShDO', + 'name': 'Sub Focus', + 'uri': 'spotify:artist:0QaSiI5TLA4N7mcsdxShDO', }), + dict({ + 'artist_id': '2UNjfzEkfsdWVDwnuD6vdH', + 'name': 'bbyclose', + 'uri': 'spotify:artist:2UNjfzEkfsdWVDwnuD6vdH', + }), + ]), + 'disc_number': 1, + 'duration_ms': 184827, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3zMBJKHkqDqm0ZVMKGLHak', + }), + 'href': 'https://api.spotify.com/v1/tracks/3zMBJKHkqDqm0ZVMKGLHak', + 'is_local': False, + 'name': 'On & On (feat. bbyclose)', + 'track_id': '3zMBJKHkqDqm0ZVMKGLHak', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:3zMBJKHkqDqm0ZVMKGLHak', + }), + dict({ + 'album': dict({ + 'album_id': '10VNoWgGKiAas5dWkpCUHL', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6JslXiAQgoATL9rPmLE5du', + 'name': 'Anike Ekina', + 'uri': 'spotify:artist:6JslXiAQgoATL9rPmLE5du', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://mosaic.scdn.co/640/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1', + 'url': 'https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://mosaic.scdn.co/300/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1', + 'url': 'https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0', 'width': 300, }), dict({ - 'height': 60, - 'url': 'https://mosaic.scdn.co/60/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1', - 'width': 60, + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0', + 'width': 64, }), ]), - 'name': 'BEST OLD SONGS❤️', - 'object_type': 'playlist', - 'owner': dict({ - 'display_name': 'Jamie Peeters', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/user/21gxseck66ayyrudfctb2u6wi', - }), - 'href': 'https://api.spotify.com/v1/users/21gxseck66ayyrudfctb2u6wi', - 'object_type': 'user', - 'owner_id': '21gxseck66ayyrudfctb2u6wi', - 'uri': 'spotify:user:21gxseck66ayyrudfctb2u6wi', - }), - 'playlist_id': '4tpbrXsklgYKdtpQIDKgGQ', - 'public': True, - 'uri': 'spotify:playlist:4tpbrXsklgYKdtpQIDKgGQ', + 'name': 'Light Back In (Special Metal version)', + 'release_date': '2025-08-01', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:10VNoWgGKiAas5dWkpCUHL', }), - ]), - 'shows': list([ - dict({ - 'description': 'Join Dhar, Cral & Ben in this informative, irreverent, and largely irrelevant Warhammer Old World lore podcast.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7xb1wRaX7zlLPeoyGm0EmM', + 'artists': list([ + dict({ + 'artist_id': '6JslXiAQgoATL9rPmLE5du', + 'name': 'Anike Ekina', + 'uri': 'spotify:artist:6JslXiAQgoATL9rPmLE5du', }), - 'href': 'https://api.spotify.com/v1/shows/7xb1wRaX7zlLPeoyGm0EmM', + ]), + 'disc_number': 1, + 'duration_ms': 202805, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH', + }), + 'href': 'https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH', + 'is_local': False, + 'name': 'Light Back In - Special Metal Version - Radio Edit', + 'track_id': '34vearIqjyFqWWPZKPPxvH', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:34vearIqjyFqWWPZKPPxvH', + }), + dict({ + 'album': dict({ + 'album_id': '4HUG49D7cBMLrcavbReCG8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '4FmJD0mpgQ70SNt2EKK8tq', + 'name': 'Miracle Of Sound', + 'uri': 'spotify:artist:4FmJD0mpgQ70SNt2EKK8tq', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8abb55c522d8db4aa1b53fdc84', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736e156986dc730ab3f4379381', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fbb55c522d8db4aa1b53fdc84', + 'url': 'https://i.scdn.co/image/ab67616d00001e026e156986dc730ab3f4379381', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dbb55c522d8db4aa1b53fdc84', + 'url': 'https://i.scdn.co/image/ab67616d000048516e156986dc730ab3f4379381', 'width': 64, }), ]), - 'name': 'Warhammer Old World: Laying Down The Lore', - 'publisher': 'Laying Down The Lore', - 'show_id': '7xb1wRaX7zlLPeoyGm0EmM', - 'total_episodes': 100, - 'uri': 'spotify:show:7xb1wRaX7zlLPeoyGm0EmM', + 'name': 'Level 12', + 'release_date': '2023-06-02', + 'release_date_precision': , + 'total_tracks': 15, + 'uri': 'spotify:album:4HUG49D7cBMLrcavbReCG8', }), - dict({ - 'description': 'Immerse yourself in the cozy world of Cottagecore with this soothing music playlist designed to help you relax and drift off to sleep. Let the gentle melodies and nature sounds transport you to a peaceful countryside escape, perfect for unwinding after a long day. Close your eyes, take a deep breath, and let the tranquil vibes of Cottagecore lull you into a restful slumber. Enjoy the vibes💜:) To everyone supporting my channel, Thank You and see you in my next video ❤️', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7L6zhkc7F1vo4dO5VWYnAq', + 'artists': list([ + dict({ + 'artist_id': '4FmJD0mpgQ70SNt2EKK8tq', + 'name': 'Miracle Of Sound', + 'uri': 'spotify:artist:4FmJD0mpgQ70SNt2EKK8tq', }), - 'href': 'https://api.spotify.com/v1/shows/7L6zhkc7F1vo4dO5VWYnAq', + ]), + 'disc_number': 1, + 'duration_ms': 168948, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6ybRWbM4jdku0Pk8SzjORB', + }), + 'href': 'https://api.spotify.com/v1/tracks/6ybRWbM4jdku0Pk8SzjORB', + 'is_local': False, + 'name': 'Skal', + 'track_id': '6ybRWbM4jdku0Pk8SzjORB', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:6ybRWbM4jdku0Pk8SzjORB', + }), + dict({ + 'album': dict({ + 'album_id': '0IsgnhTThoZkeCzY0Bh5JN', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '5Uw20NgiZnH2WMcpQ7FdRB', + 'name': 'Mia Morgan', + 'uri': 'spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a94b5b31e2c34235b74228a2e', + 'url': 'https://i.scdn.co/image/ab67616d0000b273e48fff336e78369502ba3ab7', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f94b5b31e2c34235b74228a2e', + 'url': 'https://i.scdn.co/image/ab67616d00001e02e48fff336e78369502ba3ab7', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d94b5b31e2c34235b74228a2e', + 'url': 'https://i.scdn.co/image/ab67616d00004851e48fff336e78369502ba3ab7', 'width': 64, }), ]), - 'name': 'Oldies playing from another room', - 'publisher': 'Oldies playing from another room', - 'show_id': '7L6zhkc7F1vo4dO5VWYnAq', - 'total_episodes': 10, - 'uri': 'spotify:show:7L6zhkc7F1vo4dO5VWYnAq', + 'name': 'FLEISCH', + 'release_date': '2022-04-29', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:0IsgnhTThoZkeCzY0Bh5JN', }), - dict({ - 'description': 'Nemohli jste poslouchat některou naši Hudební knihovnu, Kalendárium nebo Aktuality v oldies světě? Máme pro vás náš Podcast. Oldies Radio Online, nejlepší hudba 60., 70. a 80. let.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7EAmoqvLflhaf7k5Tu7IIf', + 'artists': list([ + dict({ + 'artist_id': '5Uw20NgiZnH2WMcpQ7FdRB', + 'name': 'Mia Morgan', + 'uri': 'spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB', }), - 'href': 'https://api.spotify.com/v1/shows/7EAmoqvLflhaf7k5Tu7IIf', + ]), + 'disc_number': 1, + 'duration_ms': 236015, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4A6V42HNYeihI4miScgujq', + }), + 'href': 'https://api.spotify.com/v1/tracks/4A6V42HNYeihI4miScgujq', + 'is_local': False, + 'name': 'JENNIFER CHECK', + 'track_id': '4A6V42HNYeihI4miScgujq', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:4A6V42HNYeihI4miScgujq', + }), + dict({ + 'album': dict({ + 'album_id': '1HGrQZLhmqlEuACUnQY7yy', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a37db53b011713ba9986b1371', + 'url': 'https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f37db53b011713ba9986b1371', + 'url': 'https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d37db53b011713ba9986b1371', + 'url': 'https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945', 'width': 64, }), ]), - 'name': 'Oldies Radio Online Podcast', - 'publisher': 'Oldies Radio Online', - 'show_id': '7EAmoqvLflhaf7k5Tu7IIf', - 'total_episodes': 245, - 'uri': 'spotify:show:7EAmoqvLflhaf7k5Tu7IIf', + 'name': 'FATE of ALL', + 'release_date': '2026-02-13', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1HGrQZLhmqlEuACUnQY7yy', }), - dict({ - 'description': 'A community podcast about Warhammer the Old World. A world of legends set out to bring you hot gossip, deep lore and fun insights', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6aYBEAFVNnGxImc7ZGikKE', + 'artists': list([ + dict({ + 'artist_id': '6cmp7ut7okJAgJOSaMAVf3', + 'name': 'Machinae Supremacy', + 'uri': 'spotify:artist:6cmp7ut7okJAgJOSaMAVf3', }), - 'href': 'https://api.spotify.com/v1/shows/6aYBEAFVNnGxImc7ZGikKE', + ]), + 'disc_number': 1, + 'duration_ms': 244360, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs', + }), + 'href': 'https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs', + 'is_local': False, + 'name': 'FATE of ALL', + 'track_id': '29DpW469MK56dBqxSfzwDs', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:29DpW469MK56dBqxSfzwDs', + }), + dict({ + 'album': dict({ + 'album_id': '4Xv90HE4uhD2e71SV7gSEZ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '3hvgLXeDFNiqDOVXl0xTge', + 'name': 'LukHash', + 'uri': 'spotify:artist:3hvgLXeDFNiqDOVXl0xTge', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a1fc3ed9a2255f6fe528f88c0', + 'url': 'https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f1fc3ed9a2255f6fe528f88c0', + 'url': 'https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d1fc3ed9a2255f6fe528f88c0', + 'url': 'https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813', 'width': 64, }), ]), - 'name': 'Square Based: A Warhammer Fantasy in the Old World', - 'publisher': 'Square Based Podcast', - 'show_id': '6aYBEAFVNnGxImc7ZGikKE', - 'total_episodes': 74, - 'uri': 'spotify:show:6aYBEAFVNnGxImc7ZGikKE', + 'name': 'Home Arcade', + 'release_date': '2025-05-02', + 'release_date_precision': , + 'total_tracks': 13, + 'uri': 'spotify:album:4Xv90HE4uhD2e71SV7gSEZ', }), - dict({ - 'description': "In the mountains of central Appalachia, blood runs as deep as these hollers and just as dark. Since before our kind knew these hills, hearts of unknowable hunger and madness have slumbered beneath them. These are the darkest mountains in the world. How dare we think we can break the skin of a god and dig out its heart without bringing forth blood and darkness? Old Gods of Appalachia is a horror-anthology podcast set in the shadows of an Alternate Appalachia, a place where digging too deep into the mines was just the first mistake.To learn more about Old Gods of Appalachia, visit our website at www.oldgodsofappalachia.com, and be sure to complete your social media ritual and follow us on Facebook and Instagram @oldgodsofappalachia, or Twitter and Tumblr @oldgodspod. If you'd like to support the show, you can join or Patreon at www.patreon.com/oldgodsofappalachia, or support us on Acast at supporter.acast.com/old-gods-of-appalachia. You can also find t-shirts, hoodies, mugs, and other Old Gods merch in our shop at www.teepublic.com/stores/oldgodsofappalachia.Old Gods of Appalachia is a production of DeepNerd Media and is distributed by Rusty Quill. All rights reserved. Get Build Mama a Coffin, Black Mouthed Dog and other exclusive content on Patreon!Support this show http://supporter.acast.com/old-gods-of-appalachia. Hosted on Acast. See acast.com/privacy for more information.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/0rOkFpkORBFMEIHfV0YKzJ', + 'artists': list([ + dict({ + 'artist_id': '3hvgLXeDFNiqDOVXl0xTge', + 'name': 'LukHash', + 'uri': 'spotify:artist:3hvgLXeDFNiqDOVXl0xTge', }), - 'href': 'https://api.spotify.com/v1/shows/0rOkFpkORBFMEIHfV0YKzJ', + ]), + 'disc_number': 1, + 'duration_ms': 176280, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf', + }), + 'href': 'https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf', + 'is_local': False, + 'name': 'Touching the Sky', + 'track_id': '0qvDlGZL5TnvV80AMH3lYf', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:0qvDlGZL5TnvV80AMH3lYf', + }), + dict({ + 'album': dict({ + 'album_id': '30O1KkbyS9bbOniw7xtQux', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', + 'name': 'Beast In Black', + 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a2645bffb86a9c9f4bf8b0fca', + 'url': 'https://i.scdn.co/image/ab67616d0000b273913a6d7587d853e1dd4c1580', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f2645bffb86a9c9f4bf8b0fca', + 'url': 'https://i.scdn.co/image/ab67616d00001e02913a6d7587d853e1dd4c1580', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d2645bffb86a9c9f4bf8b0fca', + 'url': 'https://i.scdn.co/image/ab67616d00004851913a6d7587d853e1dd4c1580', 'width': 64, }), ]), - 'name': 'Old Gods of Appalachia', - 'publisher': 'DeepNerd Media', - 'show_id': '0rOkFpkORBFMEIHfV0YKzJ', - 'total_episodes': 107, - 'uri': 'spotify:show:0rOkFpkORBFMEIHfV0YKzJ', + 'name': 'Dark Connection', + 'release_date': '2021-10-29', + 'release_date_precision': , + 'total_tracks': 13, + 'uri': 'spotify:album:30O1KkbyS9bbOniw7xtQux', }), - dict({ - 'description': 'old account was dontha16', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/60vTi9HXDd8t0AMxxOu0lb', + 'artists': list([ + dict({ + 'artist_id': '0rEuaTPLMhlViNCJrg3NEH', + 'name': 'Beast In Black', + 'uri': 'spotify:artist:0rEuaTPLMhlViNCJrg3NEH', }), - 'href': 'https://api.spotify.com/v1/shows/60vTi9HXDd8t0AMxxOu0lb', + ]), + 'disc_number': 1, + 'duration_ms': 272669, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/4cjWVc72Lp9wkwm73AtXNf', + }), + 'href': 'https://api.spotify.com/v1/tracks/4cjWVc72Lp9wkwm73AtXNf', + 'is_local': False, + 'name': "They Don't Care About Us", + 'track_id': '4cjWVc72Lp9wkwm73AtXNf', + 'track_number': 13, + 'type': , + 'uri': 'spotify:track:4cjWVc72Lp9wkwm73AtXNf', + }), + dict({ + 'album': dict({ + 'album_id': '6i6I3dfo8SHBqLq9MHfJt4', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a92ec8ee36e07cff407a9bc87', + 'url': 'https://i.scdn.co/image/ab67616d0000b273fa830b43aa43aa34b512a733', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f92ec8ee36e07cff407a9bc87', + 'url': 'https://i.scdn.co/image/ab67616d00001e02fa830b43aa43aa34b512a733', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d92ec8ee36e07cff407a9bc87', + 'url': 'https://i.scdn.co/image/ab67616d00004851fa830b43aa43aa34b512a733', 'width': 64, }), ]), - 'name': 'donbear', - 'publisher': 'donthaboy', - 'show_id': '60vTi9HXDd8t0AMxxOu0lb', - 'total_episodes': 28, - 'uri': 'spotify:show:60vTi9HXDd8t0AMxxOu0lb', + 'name': 'Dreiundzwanzig', + 'release_date': '2025-08-08', + 'release_date_precision': , + 'total_tracks': 6, + 'uri': 'spotify:album:6i6I3dfo8SHBqLq9MHfJt4', }), - dict({ - 'description': 'Old Cases de Moorden van Toen is een historische true crime podcast die je meeneemt in de duistere geschiedenis van moord en doodslag in Twente en de Achterhoek. In deze serie duik je samen met Annelot van Erven de historie in en reis je af naar de vergeten hoeken van Twente, waar zich de meest gruwelijke taferelen hebben afgespeeld. En waar de rechtspraak misschien nog wel luguberder was dan de moorden zelf. Van radbraken tot ophanging en van onschuldige slachtoffers tot meedogenloze moordenaars; geen detail blijft onbesproken. Luister naar Old Cases en ontdek de verhalen die nog steeds rillingen over je rug zullen jagen.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5ArK0JxpViyd48vb7TYfmL', + 'artists': list([ + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', }), - 'href': 'https://api.spotify.com/v1/shows/5ArK0JxpViyd48vb7TYfmL', - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 180542, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5flXEtnmx7VsADuAYdEiIO', + }), + 'href': 'https://api.spotify.com/v1/tracks/5flXEtnmx7VsADuAYdEiIO', + 'is_local': False, + 'name': 'Angst', + 'track_id': '5flXEtnmx7VsADuAYdEiIO', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:5flXEtnmx7VsADuAYdEiIO', + }), + dict({ + 'album': dict({ + 'album_id': '1iEczV3pKJ9MPmRvYGB9bz', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a20350ee47fe12f026dfab940', - 'width': 640, + 'artist_id': '43BxCL6t4c73BQnIJtry5v', + 'name': 'James Hype', + 'uri': 'spotify:artist:43BxCL6t4c73BQnIJtry5v', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f20350ee47fe12f026dfab940', - 'width': 300, + 'artist_id': '0czTwfZBBvlvlOiypvDvwe', + 'name': 'Sam Harper', + 'uri': 'spotify:artist:0czTwfZBBvlvlOiypvDvwe', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d20350ee47fe12f026dfab940', - 'width': 64, + 'artist_id': '2biXipa3IRLZUOnXgtKmXc', + 'name': 'Bobby Harvey', + 'uri': 'spotify:artist:2biXipa3IRLZUOnXgtKmXc', }), ]), - 'name': 'Old Cases, de moorden van toen', - 'publisher': 'Tubantia', - 'show_id': '5ArK0JxpViyd48vb7TYfmL', - 'total_episodes': 3, - 'uri': 'spotify:show:5ArK0JxpViyd48vb7TYfmL', - }), - dict({ - 'description': 'Welcome to the #1 Horror Podcast in the World. This podcast features professional storytelling productions. New stories released weekly. Be sure to click follow to receive all notifications. 🔔 🎉 Ad-free Podcast + over 80 Exclusive Bonus Episodes: patreon.com/DrNoSleep ✅ Advertising Inquiries: This podcast is represented by True Native Media. Email all advertising inquiries to info@truenativemedia.com. 📈 Business Inquiries: business@drnosleep.com * * * EXPLICIT CONTENT DISCLAIMER: This podcast contains explicit content not limited to intense themes, strong language, and graphic depictions of violence intended for adults 18 years of age or older. These stories are NOT intended for children under the age of 18. Parental guidance is strongly advised for children under the age of 18. Listener discretion is advised. COPYRIGHT WARNING: The use of any affiliated audio of these episodes is not allowed, as it is a direct violation of copyright law and will result in legal action. Copyright © 2025 Dr. NoSleep #drnosleep #horrorstories #scarystories #doctornosleep #horror #horrorpodcast #scary', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/2Sqi0dJoIudYWq430DXRH5', - }), - 'href': 'https://api.spotify.com/v1/shows/2Sqi0dJoIudYWq430DXRH5', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a47b5c09291ffdcf498dff971', + 'url': 'https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f47b5c09291ffdcf498dff971', + 'url': 'https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d47b5c09291ffdcf498dff971', + 'url': 'https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381', 'width': 64, }), ]), - 'name': 'Scary Horror Stories by Dr. NoSleep', - 'publisher': 'Dr. NoSleep Studios', - 'show_id': '2Sqi0dJoIudYWq430DXRH5', - 'total_episodes': 696, - 'uri': 'spotify:show:2Sqi0dJoIudYWq430DXRH5', + 'name': 'Waterfalls (feat. Sam Harper & Bobby Harvey)', + 'release_date': '2025-08-08', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1iEczV3pKJ9MPmRvYGB9bz', }), - dict({ - 'description': "Season 6: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in?Also: Al Fayed: Predator at Harrods. Women accuse Mohamed Al Fayed of rape. And: The Abercrombie Guys. Investigating sexual exploitation claims against the former CEO of fashion giant Abercrombie & Fitch.Delve into a World of Secrets: the global investigations podcast from the BBC. Uncovering stories around the world and telling them, episode by episode, with gripping storytelling.Latest season: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in? Journalist Cat McShane investigates the international yoga movement headed by Gregorian Bivolaru, the spiritual guide arrested by French police in November 2023 and charged with human trafficking, organised kidnapping, rape and organised abuse of weakness by members of a sect.“Nobody joins a cult. You just get sucked in,” says Penny, the mother of a university tutor from London.In 2017, Penny’s daughter Miranda joins a yoga charity with studios in London and Oxford. The classes make Miranda feel amazing and the people make her feel loved. “There was this sense that these people cared,” says Miranda.But as Miranda becomes more deeply involved with the international yoga movement that her group in London is part of, her mother Penny starts to worry. “When she rang us, she'd be speaking in very hushed tones,” says Penny.Miranda has fallen under the spell of guru Gregorian Bivolaru. She joins thousands of his followers from around the world on a free holiday at a coastal resort in Romania. It’s part of a search for spiritual enlightenment which will see her driven through Paris blindfolded and doing sex work in Prague.This series includes explicit sexual content and strong language.Previous seasons of World of Secrets:Season 5: Finding Mr Fox. Investigating a plot to smuggle around a hundred millions of dollars’ worth of drugs from Brazil to Europe and the miscarriage of justice that followed. But where is the man Brazilian police believe to be at the centre of it all?Season 4: Al Fayed, Predator at Harrods. Egyptian billionaire Mohamed Al Fayed – then owner of Harrods, one of the most famous shops in the world – is accused of rape and attempted rape by women who worked for him. Now they refuse to be silenced any longer.Season 3: The Apartheid Killer. All the victims were black and the youngest was just 12 years old. Some relatives are still searching for the graves. They were killed during a three-year bloodbath in the 1980s, in the South African city of East London – by one person. He killed so many, he lost count. In piecing together this story, we expose the disturbed past and racial injustices of South Africa itself.Season 2: The Disciples. The cult of Nigerian prophet TB Joshua. A story of miracles, faith and manipulation, told by people from around the world, who gave up everything for one of the most powerful religious figures of the century. Lured by TB Joshua’s claimed healing powers, they live as disciples in a guarded Lagos compound, cut off from family and friends.Season 1: The Abercrombie Guys. An investigation into claims of sexual exploitation made against the former CEO of fashion giant Abercrombie & Fitch. He and his British partner were accused by several men, recruited for sex events they hosted around the world.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7IhoWIUlWsueU2qqDm2ME6', + 'artists': list([ + dict({ + 'artist_id': '43BxCL6t4c73BQnIJtry5v', + 'name': 'James Hype', + 'uri': 'spotify:artist:43BxCL6t4c73BQnIJtry5v', + }), + dict({ + 'artist_id': '0czTwfZBBvlvlOiypvDvwe', + 'name': 'Sam Harper', + 'uri': 'spotify:artist:0czTwfZBBvlvlOiypvDvwe', + }), + dict({ + 'artist_id': '2biXipa3IRLZUOnXgtKmXc', + 'name': 'Bobby Harvey', + 'uri': 'spotify:artist:2biXipa3IRLZUOnXgtKmXc', }), - 'href': 'https://api.spotify.com/v1/shows/7IhoWIUlWsueU2qqDm2ME6', + ]), + 'disc_number': 1, + 'duration_ms': 120578, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3', + }), + 'href': 'https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3', + 'is_local': False, + 'name': 'Waterfalls (feat. Sam Harper & Bobby Harvey)', + 'track_id': '1OcV53oesLQw3VTW9I3uD3', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:1OcV53oesLQw3VTW9I3uD3', + }), + dict({ + 'album': dict({ + 'album_id': '15TCQN0DHHM3XX4TfnNkV8', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7mnBLXK823vNxN3UWB7Gfz', + 'name': 'The Black Keys', + 'uri': 'spotify:artist:7mnBLXK823vNxN3UWB7Gfz', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a72efc425c83967b0bc656b21', + 'url': 'https://i.scdn.co/image/ab67616d0000b2731984ae05d586371351e056d7', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f72efc425c83967b0bc656b21', + 'url': 'https://i.scdn.co/image/ab67616d00001e021984ae05d586371351e056d7', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d72efc425c83967b0bc656b21', + 'url': 'https://i.scdn.co/image/ab67616d000048511984ae05d586371351e056d7', 'width': 64, }), ]), - 'name': 'World Of Secrets', - 'publisher': 'BBC', - 'show_id': '7IhoWIUlWsueU2qqDm2ME6', - 'total_episodes': 49, - 'uri': 'spotify:show:7IhoWIUlWsueU2qqDm2ME6', + 'name': 'El Camino (2021 Remaster)', + 'release_date': '2011', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:15TCQN0DHHM3XX4TfnNkV8', }), - dict({ - 'description': 'An old texas man narrating true disturbing horror stories that feature deep woods, park rangers,camping,hiking, various cryptids and creatures such as bigfoot,wendigos,dogman and everything true crime. Hosted on Acast. See acast.com/privacy for more information.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6g9J2XiGy6nuUu0CapmYEz', + 'artists': list([ + dict({ + 'artist_id': '7mnBLXK823vNxN3UWB7Gfz', + 'name': 'The Black Keys', + 'uri': 'spotify:artist:7mnBLXK823vNxN3UWB7Gfz', }), - 'href': 'https://api.spotify.com/v1/shows/6g9J2XiGy6nuUu0CapmYEz', + ]), + 'disc_number': 1, + 'duration_ms': 251333, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3BR01wZsCALix7hnhZltGs', + }), + 'href': 'https://api.spotify.com/v1/tracks/3BR01wZsCALix7hnhZltGs', + 'is_local': False, + 'name': 'Little Black Submarines - 2021 Remaster', + 'track_id': '3BR01wZsCALix7hnhZltGs', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:3BR01wZsCALix7hnhZltGs', + }), + dict({ + 'album': dict({ + 'album_id': '3VzsvmhnUb9OZ59bq2aoNZ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ad4e9d55e80a87560c40acf58', + 'url': 'https://i.scdn.co/image/ab67616d0000b27345951a69fe39a6e163122eab', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fd4e9d55e80a87560c40acf58', + 'url': 'https://i.scdn.co/image/ab67616d00001e0245951a69fe39a6e163122eab', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dd4e9d55e80a87560c40acf58', + 'url': 'https://i.scdn.co/image/ab67616d0000485145951a69fe39a6e163122eab', 'width': 64, }), ]), - 'name': 'Old Texas Scare (True Horror Stories Podcast)', - 'publisher': 'A. Rajic', - 'show_id': '6g9J2XiGy6nuUu0CapmYEz', - 'total_episodes': 512, - 'uri': 'spotify:show:6g9J2XiGy6nuUu0CapmYEz', + 'name': 'A Moment Apart', + 'release_date': '2017-09-08', + 'release_date_precision': , + 'total_tracks': 16, + 'uri': 'spotify:album:3VzsvmhnUb9OZ59bq2aoNZ', }), - dict({ - 'description': 'Only Good Songs', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6WehmuNZ5iOtdOdjQAoWWQ', + 'artists': list([ + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '5EBlHXi71tDXnFtroEh7Rg', + 'name': 'Naomi Wild', + 'uri': 'spotify:artist:5EBlHXi71tDXnFtroEh7Rg', }), - 'href': 'https://api.spotify.com/v1/shows/6WehmuNZ5iOtdOdjQAoWWQ', + ]), + 'disc_number': 1, + 'duration_ms': 215130, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7KT7VGnPU5QVXN3q1BOeqb', + }), + 'href': 'https://api.spotify.com/v1/tracks/7KT7VGnPU5QVXN3q1BOeqb', + 'is_local': False, + 'name': 'Higher Ground', + 'track_id': '7KT7VGnPU5QVXN3q1BOeqb', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:7KT7VGnPU5QVXN3q1BOeqb', + }), + dict({ + 'album': dict({ + 'album_id': '1X0ak6iQZOYqdVXzj8Tfbz', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ab7688a7c72b0c4d9c02b3ace', + 'url': 'https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fb7688a7c72b0c4d9c02b3ace', + 'url': 'https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68db7688a7c72b0c4d9c02b3ace', + 'url': 'https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d', 'width': 64, }), ]), - 'name': 'Old Hip Hop', - 'publisher': 'Devil Mate', - 'show_id': '6WehmuNZ5iOtdOdjQAoWWQ', - 'total_episodes': 2, - 'uri': 'spotify:show:6WehmuNZ5iOtdOdjQAoWWQ', + 'name': 'Cold Silver', + 'release_date': '2025-10-08', + 'release_date_precision': , + 'total_tracks': 3, + 'uri': 'spotify:album:1X0ak6iQZOYqdVXzj8Tfbz', }), - dict({ - 'description': "They're old! They're queens! There's two of them! It's Two Old Queens! Join Mark Rennie and John Flynn as they search for the gayest movie ever made, using a byzantine ranking system, their own hard opinions, and some inevitable controversies from a stacked lineup of guests to come!CHECK OUT TWO OLD QUEENS EVERY WEDNESDAY STARTING JUNE 26! SUBSCRIBE NOW!!!!! Hosted on Acast. See acast.com/privacy for more information.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5tJ0mEZEIY1QZPZqdHwgvY', + 'artists': list([ + dict({ + 'artist_id': '61jrgPBUklDAQV9DptCc8u', + 'name': 'Starbenders', + 'uri': 'spotify:artist:61jrgPBUklDAQV9DptCc8u', }), - 'href': 'https://api.spotify.com/v1/shows/5tJ0mEZEIY1QZPZqdHwgvY', + ]), + 'disc_number': 1, + 'duration_ms': 222242, + 'explicit': True, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv', + }), + 'href': 'https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv', + 'is_local': False, + 'name': 'Cold Silver', + 'track_id': '0Y0PdrwwWtYTFhCY5Kj0iv', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv', + }), + dict({ + 'album': dict({ + 'album_id': '1ux2pdgf8Bzaz21pxEEKWQ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7y25aQ8W1jYhdkTdDdiUjH', + 'name': 'KARAVIRS', + 'uri': 'spotify:artist:7y25aQ8W1jYhdkTdDdiUjH', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a44252d43e6cd3a052eff9d94', + 'url': 'https://i.scdn.co/image/ab67616d0000b2730a1d1416d7e8e0013425220d', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f44252d43e6cd3a052eff9d94', + 'url': 'https://i.scdn.co/image/ab67616d00001e020a1d1416d7e8e0013425220d', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d44252d43e6cd3a052eff9d94', + 'url': 'https://i.scdn.co/image/ab67616d000048510a1d1416d7e8e0013425220d', 'width': 64, }), ]), - 'name': 'Two Old Queens', - 'publisher': 'John Flynn & Mark Rennie', - 'show_id': '5tJ0mEZEIY1QZPZqdHwgvY', - 'total_episodes': 200, - 'uri': 'spotify:show:5tJ0mEZEIY1QZPZqdHwgvY', + 'name': 'Ribbon in my hair', + 'release_date': '2025-07-04', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:1ux2pdgf8Bzaz21pxEEKWQ', }), - dict({ - 'description': 'Read through the pre-Disney Star Wars universe along with the Star Wars: Old Canon Book Club, and trace the history of Star Wars as a world, a brand, and a part of our cultural fabric.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/6g4V179CojjvrUgy5B62CY', + 'artists': list([ + dict({ + 'artist_id': '7y25aQ8W1jYhdkTdDdiUjH', + 'name': 'KARAVIRS', + 'uri': 'spotify:artist:7y25aQ8W1jYhdkTdDdiUjH', }), - 'href': 'https://api.spotify.com/v1/shows/6g4V179CojjvrUgy5B62CY', + ]), + 'disc_number': 1, + 'duration_ms': 230039, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6TA8mUL3TjaNqf9kuYBojR', + }), + 'href': 'https://api.spotify.com/v1/tracks/6TA8mUL3TjaNqf9kuYBojR', + 'is_local': False, + 'name': 'Ribbon in my hair', + 'track_id': '6TA8mUL3TjaNqf9kuYBojR', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:6TA8mUL3TjaNqf9kuYBojR', + }), + dict({ + 'album': dict({ + 'album_id': '2729tzbbE6CeRuFmbGOUry', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '7k5jeohQCF20a8foBD9ize', + 'name': 'Battle Beast', + 'uri': 'spotify:artist:7k5jeohQCF20a8foBD9ize', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a5891926b4832680d23befc0b', + 'url': 'https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f5891926b4832680d23befc0b', + 'url': 'https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d5891926b4832680d23befc0b', + 'url': 'https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c', 'width': 64, }), ]), - 'name': 'Star Wars: Old Canon Book Club', - 'publisher': 'Star Wars: Old Canon Book Club', - 'show_id': '6g4V179CojjvrUgy5B62CY', - 'total_episodes': 24, - 'uri': 'spotify:show:6g4V179CojjvrUgy5B62CY', + 'name': 'Steelbound', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:2729tzbbE6CeRuFmbGOUry', }), - dict({ - 'description': 'History and myth of the Cradle of Civilization, bronze age Mesopotamia, beginning with the dawn of writing. The show will cover the full history of Mesopotamia, from Gilgamesh to Nabonidas, a span of some 2500 years, with myths of heroes and gods, and tales of daily life peppered throughout. Sumer, Akkad, Old Babylon, Hittites, and Israel have all been covered in depth, current episodes get deep into the Assyrian Empire. New episodes every other Wednesday. Online at oldeststories.net.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5PGrkXrRpTug5N4r1FRf4Y', + 'artists': list([ + dict({ + 'artist_id': '7k5jeohQCF20a8foBD9ize', + 'name': 'Battle Beast', + 'uri': 'spotify:artist:7k5jeohQCF20a8foBD9ize', }), - 'href': 'https://api.spotify.com/v1/shows/5PGrkXrRpTug5N4r1FRf4Y', + ]), + 'disc_number': 1, + 'duration_ms': 230786, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e', + }), + 'href': 'https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e', + 'is_local': False, + 'name': 'Riders Of The Storm', + 'track_id': '5CEM8PzhisIOQAr8TmG79e', + 'track_number': 9, + 'type': , + 'uri': 'spotify:track:5CEM8PzhisIOQAr8TmG79e', + }), + dict({ + 'album': dict({ + 'album_id': '2MhRCfdhN8os29CovIIsqV', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '0wnYgCeP013HkKoOyC5V32', + 'name': 'Allie X', + 'uri': 'spotify:artist:0wnYgCeP013HkKoOyC5V32', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a78fd84e8ee959fa0fd7d25bb', + 'url': 'https://i.scdn.co/image/ab67616d0000b2738bc25b0c8091663832455805', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f78fd84e8ee959fa0fd7d25bb', + 'url': 'https://i.scdn.co/image/ab67616d00001e028bc25b0c8091663832455805', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d78fd84e8ee959fa0fd7d25bb', + 'url': 'https://i.scdn.co/image/ab67616d000048518bc25b0c8091663832455805', 'width': 64, }), ]), - 'name': 'Oldest Stories', - 'publisher': 'James Bleckley', - 'show_id': '5PGrkXrRpTug5N4r1FRf4Y', - 'total_episodes': 196, - 'uri': 'spotify:show:5PGrkXrRpTug5N4r1FRf4Y', + 'name': 'Happiness Is Going To Get You', + 'release_date': '2025-11-07', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:2MhRCfdhN8os29CovIIsqV', }), - dict({ - 'description': 'Wyatt Earp, Jesse James, and Butch and Sundance. Lakota, Comanche and Apache. Wars, gunfights and robberies. This show covers the toughest lawmen, the wildest outlaws, and the deadliest towns — all the people and events that shaped the American West.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/1ffECQs7FDujQqRsADqvxo', + 'artists': list([ + dict({ + 'artist_id': '0wnYgCeP013HkKoOyC5V32', + 'name': 'Allie X', + 'uri': 'spotify:artist:0wnYgCeP013HkKoOyC5V32', }), - 'href': 'https://api.spotify.com/v1/shows/1ffECQs7FDujQqRsADqvxo', + ]), + 'disc_number': 1, + 'duration_ms': 236026, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3H2rJN1EXtwchBCSPtQMH1', + }), + 'href': 'https://api.spotify.com/v1/tracks/3H2rJN1EXtwchBCSPtQMH1', + 'is_local': False, + 'name': 'Reunite', + 'track_id': '3H2rJN1EXtwchBCSPtQMH1', + 'track_number': 4, + 'type': , + 'uri': 'spotify:track:3H2rJN1EXtwchBCSPtQMH1', + }), + dict({ + 'album': dict({ + 'album_id': '3nL6S2DQUe71FicS2UpJ4b', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '29GuyTDTPnxeRQhEdbmGLn', + 'name': 'HEXXENMIND', + 'uri': 'spotify:artist:29GuyTDTPnxeRQhEdbmGLn', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8abee18dc8e43e2c3da4697729', + 'url': 'https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fbee18dc8e43e2c3da4697729', + 'url': 'https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dbee18dc8e43e2c3da4697729', + 'url': 'https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487', 'width': 64, }), ]), - 'name': 'Legends of the Old West', - 'publisher': 'Black Barrel Media', - 'show_id': '1ffECQs7FDujQqRsADqvxo', - 'total_episodes': 253, - 'uri': 'spotify:show:1ffECQs7FDujQqRsADqvxo', + 'name': 'The Fate of Ophelia - Rock', + 'release_date': '2025-10-15', + 'release_date_precision': , + 'total_tracks': 4, + 'uri': 'spotify:album:3nL6S2DQUe71FicS2UpJ4b', }), - dict({ - 'description': "Dad's Army Old Time Radio", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/5nfz0PM8lgPW4haw3CiUjc', + 'artists': list([ + dict({ + 'artist_id': '29GuyTDTPnxeRQhEdbmGLn', + 'name': 'HEXXENMIND', + 'uri': 'spotify:artist:29GuyTDTPnxeRQhEdbmGLn', }), - 'href': 'https://api.spotify.com/v1/shows/5nfz0PM8lgPW4haw3CiUjc', - 'images': list([ + ]), + 'disc_number': 1, + 'duration_ms': 267697, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7', + }), + 'href': 'https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7', + 'is_local': False, + 'name': 'The Fate of Ophelia', + 'track_id': '7sa0Obv4Y9y7rpIYhudEu7', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:7sa0Obv4Y9y7rpIYhudEu7', + }), + dict({ + 'album': dict({ + 'album_id': '6KpFTQPwkK9hY39Tl7Wggv', + 'album_type': , + 'artists': list([ dict({ - 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a71cbd8f48e3d4e314cf5abda', - 'width': 640, + 'artist_id': '1A6HQzOvtGaCYihOuIKjE6', + 'name': 'Mr. Polska', + 'uri': 'spotify:artist:1A6HQzOvtGaCYihOuIKjE6', }), dict({ - 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f71cbd8f48e3d4e314cf5abda', - 'width': 300, + 'artist_id': '2z9op9COiMU6QquVfY8HTN', + 'name': 'WINSON', + 'uri': 'spotify:artist:2z9op9COiMU6QquVfY8HTN', }), dict({ - 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d71cbd8f48e3d4e314cf5abda', - 'width': 64, + 'artist_id': '30tToHC6q3nB7Lious0MZW', + 'name': 'Teletech', + 'uri': 'spotify:artist:30tToHC6q3nB7Lious0MZW', }), ]), - 'name': "Dad's Army Old Time Radio", - 'publisher': 'sipero', - 'show_id': '5nfz0PM8lgPW4haw3CiUjc', - 'total_episodes': 100, - 'uri': 'spotify:show:5nfz0PM8lgPW4haw3CiUjc', - }), - dict({ - 'description': 'Walk the battlefields of the First World War with Military Historian, Paul Reed. In these podcasts, Paul brings together over 40 years of studying the Great War, from the stories of veterans he interviewed, to when he spent more than a decade living on the Old Front Line in the heart of the Somme battlefields.\xa0', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/7AO6ihESPKA844MfakODi0', - }), - 'href': 'https://api.spotify.com/v1/shows/7AO6ihESPKA844MfakODi0', 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8adae65bc23a2ade4bcceabb54', + 'url': 'https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fdae65bc23a2ade4bcceabb54', + 'url': 'https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68ddae65bc23a2ade4bcceabb54', + 'url': 'https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9', 'width': 64, }), ]), - 'name': 'The Old Front Line', - 'publisher': 'Paul Reed', - 'show_id': '7AO6ihESPKA844MfakODi0', - 'total_episodes': 224, - 'uri': 'spotify:show:7AO6ihESPKA844MfakODi0', + 'name': 'Otherside', + 'release_date': '2025-12-19', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:6KpFTQPwkK9hY39Tl7Wggv', }), - dict({ - 'description': "The historical true-crime podcast that uncovers old blood with each new episode. Join us as a historian investigates history's most fascinating cases of true crime.", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/3SvMPht8MYAmRovdIpb9T2', + 'artists': list([ + dict({ + 'artist_id': '1A6HQzOvtGaCYihOuIKjE6', + 'name': 'Mr. Polska', + 'uri': 'spotify:artist:1A6HQzOvtGaCYihOuIKjE6', + }), + dict({ + 'artist_id': '2z9op9COiMU6QquVfY8HTN', + 'name': 'WINSON', + 'uri': 'spotify:artist:2z9op9COiMU6QquVfY8HTN', + }), + dict({ + 'artist_id': '30tToHC6q3nB7Lious0MZW', + 'name': 'Teletech', + 'uri': 'spotify:artist:30tToHC6q3nB7Lious0MZW', }), - 'href': 'https://api.spotify.com/v1/shows/3SvMPht8MYAmRovdIpb9T2', + ]), + 'disc_number': 1, + 'duration_ms': 192000, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn', + }), + 'href': 'https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn', + 'is_local': False, + 'name': 'Otherside', + 'track_id': '07Zj558j9j9TWq7HIcTFZn', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:07Zj558j9j9TWq7HIcTFZn', + }), + dict({ + 'album': dict({ + 'album_id': '4MRcN8PhMhBe84tcPLe2QJ', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8ac62d11c7b85db976ad033307', + 'url': 'https://i.scdn.co/image/ab67616d0000b2731b029b71b43652cdc6e9fc0f', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1fc62d11c7b85db976ad033307', + 'url': 'https://i.scdn.co/image/ab67616d00001e021b029b71b43652cdc6e9fc0f', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68dc62d11c7b85db976ad033307', + 'url': 'https://i.scdn.co/image/ab67616d000048511b029b71b43652cdc6e9fc0f', 'width': 64, }), ]), - 'name': 'Old Blood', - 'publisher': 'Old Blood', - 'show_id': '3SvMPht8MYAmRovdIpb9T2', - 'total_episodes': 31, - 'uri': 'spotify:show:3SvMPht8MYAmRovdIpb9T2', + 'name': 'A Moment Apart (Deluxe Edition)', + 'release_date': '2018-11-30', + 'release_date_precision': , + 'total_tracks': 25, + 'uri': 'spotify:album:4MRcN8PhMhBe84tcPLe2QJ', }), - dict({ - 'description': "Don't Get Anyone Pregnant, If You Do, Make Sure Their Hot I’m Out……Peaceee Buy my Merch....", - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/119B6Ijbq7A6aZaNQ5i0kW', + 'artists': list([ + dict({ + 'artist_id': '21mKp7DqtSNHhCAU2ugvUw', + 'name': 'ODESZA', + 'uri': 'spotify:artist:21mKp7DqtSNHhCAU2ugvUw', + }), + dict({ + 'artist_id': '0DGAOR3KtqWwWSwDzhzqOa', + 'name': 'Zyra', + 'uri': 'spotify:artist:0DGAOR3KtqWwWSwDzhzqOa', }), - 'href': 'https://api.spotify.com/v1/shows/119B6Ijbq7A6aZaNQ5i0kW', + ]), + 'disc_number': 2, + 'duration_ms': 240440, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/2XyNLoEWc4IDt9OVzXZUXl', + }), + 'href': 'https://api.spotify.com/v1/tracks/2XyNLoEWc4IDt9OVzXZUXl', + 'is_local': False, + 'name': 'It’s Only - ODESZA VIP Remix', + 'track_id': '2XyNLoEWc4IDt9OVzXZUXl', + 'track_number': 3, + 'type': , + 'uri': 'spotify:track:2XyNLoEWc4IDt9OVzXZUXl', + }), + dict({ + 'album': dict({ + 'album_id': '3ZdwtiZ6iYOtkRtFq2tmO9', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1NcsVSxFdXsnwvE64zV9xX', + 'name': 'Rave The Reqviem', + 'uri': 'spotify:artist:1NcsVSxFdXsnwvE64zV9xX', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a9762c3369858d9b23690228e', + 'url': 'https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f9762c3369858d9b23690228e', + 'url': 'https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d9762c3369858d9b23690228e', + 'url': 'https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75', 'width': 64, }), ]), - 'name': 'Old Scrubby', - 'publisher': 'Old Scrubby', - 'show_id': '119B6Ijbq7A6aZaNQ5i0kW', - 'total_episodes': 337, - 'uri': 'spotify:show:119B6Ijbq7A6aZaNQ5i0kW', + 'name': 'The Gospel of Nil - Revised Standard Version', + 'release_date': '2016-10-06', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9', }), - dict({ - 'description': 'From the writers of the internationally successful Grumpy Old Women, award winning Comedian Jenny Eclair and Producer and Writer Judith Holder deliver Older & Wider, a podcast that offers insight, gossip and general news from the menopausal front and beyond. A podcast worth getting your ears syringed for. Hosted on Acast. See acast.com/privacy for more information.', - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/show/3ScVA6cJZpMifpJJDmmodP', + 'artists': list([ + dict({ + 'artist_id': '1NcsVSxFdXsnwvE64zV9xX', + 'name': 'Rave The Reqviem', + 'uri': 'spotify:artist:1NcsVSxFdXsnwvE64zV9xX', }), - 'href': 'https://api.spotify.com/v1/shows/3ScVA6cJZpMifpJJDmmodP', + ]), + 'disc_number': 1, + 'duration_ms': 194085, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r', + }), + 'href': 'https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r', + 'is_local': False, + 'name': 'Mono Heart', + 'track_id': '6vy64DzPmsCUNue0FpmM6r', + 'track_number': 6, + 'type': , + 'uri': 'spotify:track:6vy64DzPmsCUNue0FpmM6r', + }), + dict({ + 'album': dict({ + 'album_id': '2D48QGD5lU5kErH6PxLjTs', + 'album_type': , + 'artists': list([ + dict({ + 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', + 'name': 'MK', + 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', + }), + dict({ + 'artist_id': '4DWuml4Jf6K81b5rAPwMb6', + 'name': 'Clementine Douglas', + 'uri': 'spotify:artist:4DWuml4Jf6K81b5rAPwMb6', + }), + ]), 'images': list([ dict({ 'height': 640, - 'url': 'https://i.scdn.co/image/ab6765630000ba8a06ed28bf2210aafba1c55788', + 'url': 'https://i.scdn.co/image/ab67616d0000b273ff386681b00d7f8ee77734c9', 'width': 640, }), dict({ 'height': 300, - 'url': 'https://i.scdn.co/image/ab67656300005f1f06ed28bf2210aafba1c55788', + 'url': 'https://i.scdn.co/image/ab67616d00001e02ff386681b00d7f8ee77734c9', 'width': 300, }), dict({ 'height': 64, - 'url': 'https://i.scdn.co/image/ab6765630000f68d06ed28bf2210aafba1c55788', + 'url': 'https://i.scdn.co/image/ab67616d00004851ff386681b00d7f8ee77734c9', 'width': 64, }), ]), - 'name': 'Older and Wider Podcast', - 'publisher': 'Avalon ', - 'show_id': '3ScVA6cJZpMifpJJDmmodP', - 'total_episodes': 290, - 'uri': 'spotify:show:3ScVA6cJZpMifpJJDmmodP', + 'name': 'Come Find Me (with Clementine Douglas)', + 'release_date': '2025-09-26', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2D48QGD5lU5kErH6PxLjTs', }), - ]), - 'tracks': list([ - dict({ - 'artists': list([ - dict({ - 'artist_id': '7jVv8c5Fj3E9VhNjxT4snq', - 'name': 'Lil Nas X', - 'uri': 'spotify:artist:7jVv8c5Fj3E9VhNjxT4snq', - }), - dict({ - 'artist_id': '60rpJ9SgigSd16DOAG7GSa', - 'name': 'Billy Ray Cyrus', - 'uri': 'spotify:artist:60rpJ9SgigSd16DOAG7GSa', - }), - ]), - 'disc_number': 1, - 'duration_ms': 157066, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2YpeDb67231RjR0MgVLzsG', + 'artists': list([ + dict({ + 'artist_id': '1yqxFtPHKcGcv6SXZNdyT9', + 'name': 'MK', + 'uri': 'spotify:artist:1yqxFtPHKcGcv6SXZNdyT9', }), - 'href': 'https://api.spotify.com/v1/tracks/2YpeDb67231RjR0MgVLzsG', - 'is_local': False, - 'name': 'Old Town Road (feat. Billy Ray Cyrus) - Remix', - 'track_id': '2YpeDb67231RjR0MgVLzsG', - 'track_number': 1, - 'uri': 'spotify:track:2YpeDb67231RjR0MgVLzsG', + dict({ + 'artist_id': '4DWuml4Jf6K81b5rAPwMb6', + 'name': 'Clementine Douglas', + 'uri': 'spotify:artist:4DWuml4Jf6K81b5rAPwMb6', + }), + ]), + 'disc_number': 1, + 'duration_ms': 207149, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/03AhbPoniP5uqqJKYGWgZE', }), - dict({ + 'href': 'https://api.spotify.com/v1/tracks/03AhbPoniP5uqqJKYGWgZE', + 'is_local': False, + 'name': 'Come Find Me (with Clementine Douglas)', + 'track_id': '03AhbPoniP5uqqJKYGWgZE', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:03AhbPoniP5uqqJKYGWgZE', + }), + dict({ + 'album': dict({ + 'album_id': '2OMCroH113OoIxVbMUwtSY', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '4iqEVZEav7vIiv1HStr6Gx', - 'name': 'Detailed', - 'uri': 'spotify:artist:4iqEVZEav7vIiv1HStr6Gx', + 'artist_id': '343NN0x0NpJGNjwB52gJ5J', + 'name': 'FHE', + 'uri': 'spotify:artist:343NN0x0NpJGNjwB52gJ5J', + }), + ]), + 'images': list([ + dict({ + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647', + 'width': 640, }), dict({ - 'artist_id': '7iH754eigCrs80sQ08MFAx', - 'name': 'Damaxy', - 'uri': 'spotify:artist:7iH754eigCrs80sQ08MFAx', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647', + 'width': 300, }), - ]), - 'disc_number': 1, - 'duration_ms': 142863, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0aQx9BI4PXvBt570HA18LF', - }), - 'href': 'https://api.spotify.com/v1/tracks/0aQx9BI4PXvBt570HA18LF', - 'is_local': False, - 'name': 'Oldschool', - 'track_id': '0aQx9BI4PXvBt570HA18LF', - 'track_number': 1, - 'uri': 'spotify:track:0aQx9BI4PXvBt570HA18LF', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '6v8FB84lnmJs434UJf2Mrm', - 'name': 'Neil Young', - 'uri': 'spotify:artist:6v8FB84lnmJs434UJf2Mrm', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 202146, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/16XeptMdlJTWWeIrwEAOvv', + 'name': 'Beg For More', + 'release_date': '2020-07-23', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:2OMCroH113OoIxVbMUwtSY', + }), + 'artists': list([ + dict({ + 'artist_id': '343NN0x0NpJGNjwB52gJ5J', + 'name': 'FHE', + 'uri': 'spotify:artist:343NN0x0NpJGNjwB52gJ5J', }), - 'href': 'https://api.spotify.com/v1/tracks/16XeptMdlJTWWeIrwEAOvv', - 'is_local': False, - 'name': 'Old Man - 2009 Remaster', - 'track_id': '16XeptMdlJTWWeIrwEAOvv', - 'track_number': 6, - 'uri': 'spotify:track:16XeptMdlJTWWeIrwEAOvv', + ]), + 'disc_number': 1, + 'duration_ms': 203586, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3', }), - dict({ + 'href': 'https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3', + 'is_local': False, + 'name': 'Beg For More', + 'track_id': '6DEsqinq33fSFFMj6MoEH3', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:6DEsqinq33fSFFMj6MoEH3', + }), + dict({ + 'album': dict({ + 'album_id': '2ZYmViriDHQS2bzBohrLXj', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '485uL27bPomh29R4JmQehQ', - 'name': 'Bob Seger', - 'uri': 'spotify:artist:485uL27bPomh29R4JmQehQ', + 'artist_id': '4v4qHupYi7eRJfkniHrp4Z', + 'name': 'Young Guns', + 'uri': 'spotify:artist:4v4qHupYi7eRJfkniHrp4Z', }), ]), - 'disc_number': 1, - 'duration_ms': 194146, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5EOoMWIB9iK4ZpcSex9Ec7', - }), - 'href': 'https://api.spotify.com/v1/tracks/5EOoMWIB9iK4ZpcSex9Ec7', - 'is_local': False, - 'name': 'Old Time Rock & Roll', - 'track_id': '5EOoMWIB9iK4ZpcSex9Ec7', - 'track_number': 3, - 'uri': 'spotify:track:5EOoMWIB9iK4ZpcSex9Ec7', - }), - dict({ - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '2m62cc253Xvd9qYQ8d2X3d', - 'name': 'The Alan Parsons Project', - 'uri': 'spotify:artist:2m62cc253Xvd9qYQ8d2X3d', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe', + 'width': 640, }), - ]), - 'disc_number': 1, - 'duration_ms': 295253, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5qdlMWYpCtJFsHey3rXYms', - }), - 'href': 'https://api.spotify.com/v1/tracks/5qdlMWYpCtJFsHey3rXYms', - 'is_local': False, - 'name': 'Old and Wise', - 'track_id': '5qdlMWYpCtJFsHey3rXYms', - 'track_number': 10, - 'uri': 'spotify:track:5qdlMWYpCtJFsHey3rXYms', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '38GSybQjdc6sxptciOkxMq', - 'name': 'Zaho de Sagazan', - 'uri': 'spotify:artist:38GSybQjdc6sxptciOkxMq', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe', + 'width': 300, }), dict({ - 'artist_id': '2txHhyCwHjUEpJjWrEyqyX', - 'name': 'Tom Odell', - 'uri': 'spotify:artist:2txHhyCwHjUEpJjWrEyqyX', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 157491, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/4h5wTcOMYy6cw47yYoFqNq', + 'name': 'Ones And Zeros', + 'release_date': '2015-02-18', + 'release_date_precision': , + 'total_tracks': 12, + 'uri': 'spotify:album:2ZYmViriDHQS2bzBohrLXj', + }), + 'artists': list([ + dict({ + 'artist_id': '4v4qHupYi7eRJfkniHrp4Z', + 'name': 'Young Guns', + 'uri': 'spotify:artist:4v4qHupYi7eRJfkniHrp4Z', }), - 'href': 'https://api.spotify.com/v1/tracks/4h5wTcOMYy6cw47yYoFqNq', - 'is_local': False, - 'name': 'Old Friend', - 'track_id': '4h5wTcOMYy6cw47yYoFqNq', - 'track_number': 1, - 'uri': 'spotify:track:4h5wTcOMYy6cw47yYoFqNq', + ]), + 'disc_number': 1, + 'duration_ms': 224213, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK', }), - dict({ + 'href': 'https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK', + 'is_local': False, + 'name': 'I Want Out', + 'track_id': '0QSMTHdo8JRa7PazhGrbIK', + 'track_number': 2, + 'type': , + 'uri': 'spotify:track:0QSMTHdo8JRa7PazhGrbIK', + }), + dict({ + 'album': dict({ + 'album_id': '3R9XNmwrYl49GE9tKPCtpL', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '1ZPGzmbFTn8GRjqTqnLiFE', - 'name': 'Niklas Dee', - 'uri': 'spotify:artist:1ZPGzmbFTn8GRjqTqnLiFE', + 'artist_id': '4gfZR0IgXCNrMe1U2QfnyA', + 'name': 'DummiBoiBeatz', + 'uri': 'spotify:artist:4gfZR0IgXCNrMe1U2QfnyA', }), + ]), + 'images': list([ dict({ - 'artist_id': '6v2YWK8EvCyut0QtBcAypu', - 'name': 'Old Jim', - 'uri': 'spotify:artist:6v2YWK8EvCyut0QtBcAypu', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2738ac99c178ab3be15dcac0aa9', + 'width': 640, }), dict({ - 'artist_id': '61PUjJm9JH5ck3LxD6RypE', - 'name': 'Enny-Mae', - 'uri': 'spotify:artist:61PUjJm9JH5ck3LxD6RypE', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e028ac99c178ab3be15dcac0aa9', + 'width': 300, }), - ]), - 'disc_number': 1, - 'duration_ms': 163034, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5rL9LobdwAwFch2J8CiosG', - }), - 'href': 'https://api.spotify.com/v1/tracks/5rL9LobdwAwFch2J8CiosG', - 'is_local': False, - 'name': 'Not Fair', - 'track_id': '5rL9LobdwAwFch2J8CiosG', - 'track_number': 1, - 'uri': 'spotify:track:5rL9LobdwAwFch2J8CiosG', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '6v8FB84lnmJs434UJf2Mrm', - 'name': 'Neil Young', - 'uri': 'spotify:artist:6v8FB84lnmJs434UJf2Mrm', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048518ac99c178ab3be15dcac0aa9', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 204779, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/6grFWYpLQul3nAHjzzPKT8', + 'name': 'Chosen (Side A)', + 'release_date': '2025-09-19', + 'release_date_precision': , + 'total_tracks': 10, + 'uri': 'spotify:album:3R9XNmwrYl49GE9tKPCtpL', + }), + 'artists': list([ + dict({ + 'artist_id': '4gfZR0IgXCNrMe1U2QfnyA', + 'name': 'DummiBoiBeatz', + 'uri': 'spotify:artist:4gfZR0IgXCNrMe1U2QfnyA', }), - 'href': 'https://api.spotify.com/v1/tracks/6grFWYpLQul3nAHjzzPKT8', - 'is_local': False, - 'name': 'Old Man', - 'track_id': '6grFWYpLQul3nAHjzzPKT8', - 'track_number': 6, - 'uri': 'spotify:track:6grFWYpLQul3nAHjzzPKT8', + dict({ + 'artist_id': '6y6iXD929Jqq0xc6lgwhl1', + 'name': 'LAUREL', + 'uri': 'spotify:artist:6y6iXD929Jqq0xc6lgwhl1', + }), + ]), + 'disc_number': 1, + 'duration_ms': 222916, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/17abRyAYKiIm2B46H2jrix', }), - dict({ + 'href': 'https://api.spotify.com/v1/tracks/17abRyAYKiIm2B46H2jrix', + 'is_local': False, + 'name': 'Drown In Sunlight - DummiBoiBeatz Version', + 'track_id': '17abRyAYKiIm2B46H2jrix', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:17abRyAYKiIm2B46H2jrix', + }), + dict({ + 'album': dict({ + 'album_id': '1jjx7U3tayhJTytJVBj0WY', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '5schNIzWdI9gJ1QRK8SBnc', - 'name': 'Ben Howard', - 'uri': 'spotify:artist:5schNIzWdI9gJ1QRK8SBnc', + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', }), ]), - 'disc_number': 1, - 'duration_ms': 328506, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3CAX47TnPqTujLIQTw8nwI', - }), - 'href': 'https://api.spotify.com/v1/tracks/3CAX47TnPqTujLIQTw8nwI', - 'is_local': False, - 'name': 'Old Pine', - 'track_id': '3CAX47TnPqTujLIQTw8nwI', - 'track_number': 1, - 'uri': 'spotify:track:3CAX47TnPqTujLIQTw8nwI', - }), - dict({ - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '7vk5e3vY1uw9plTHJAMwjN', - 'name': 'Alan Walker', - 'uri': 'spotify:artist:7vk5e3vY1uw9plTHJAMwjN', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74', + 'width': 640, }), - ]), - 'disc_number': 1, - 'duration_ms': 168311, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3BtgnlJ7MqpKOHArBbo0QF', - }), - 'href': 'https://api.spotify.com/v1/tracks/3BtgnlJ7MqpKOHArBbo0QF', - 'is_local': False, - 'name': 'Old Habits - Instrumental', - 'track_id': '3BtgnlJ7MqpKOHArBbo0QF', - 'track_number': 1, - 'uri': 'spotify:track:3BtgnlJ7MqpKOHArBbo0QF', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '7LTI9KZLhnMbrDojlJK7Li', - 'name': 'Jacqueline Govaert', - 'uri': 'spotify:artist:7LTI9KZLhnMbrDojlJK7Li', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74', + 'width': 300, }), - ]), - 'disc_number': 1, - 'duration_ms': 197718, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1bD85vOr7SEKdZiRduesfb', - }), - 'href': 'https://api.spotify.com/v1/tracks/1bD85vOr7SEKdZiRduesfb', - 'is_local': False, - 'name': 'Old Records - Acoustic', - 'track_id': '1bD85vOr7SEKdZiRduesfb', - 'track_number': 2, - 'uri': 'spotify:track:1bD85vOr7SEKdZiRduesfb', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '2m62cc253Xvd9qYQ8d2X3d', - 'name': 'The Alan Parsons Project', - 'uri': 'spotify:artist:2m62cc253Xvd9qYQ8d2X3d', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74', + 'width': 64, }), ]), - 'disc_number': 2, - 'duration_ms': 295360, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/3nQRF1plQystLrsEXiE8cR', + 'name': 'Legends', + 'release_date': '2025-10-17', + 'release_date_precision': , + 'total_tracks': 11, + 'uri': 'spotify:album:1jjx7U3tayhJTytJVBj0WY', + }), + 'artists': list([ + dict({ + 'artist_id': '3o2dn2O0FCVsWDFSh8qxgG', + 'name': 'Sabaton', + 'uri': 'spotify:artist:3o2dn2O0FCVsWDFSh8qxgG', }), - 'href': 'https://api.spotify.com/v1/tracks/3nQRF1plQystLrsEXiE8cR', - 'is_local': False, - 'name': 'Old and Wise', - 'track_id': '3nQRF1plQystLrsEXiE8cR', - 'track_number': 14, - 'uri': 'spotify:track:3nQRF1plQystLrsEXiE8cR', + ]), + 'disc_number': 1, + 'duration_ms': 255973, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM', }), - dict({ + 'href': 'https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM', + 'is_local': False, + 'name': 'I, Emperor', + 'track_id': '3CZDkpmq245kzvCe44P2hM', + 'track_number': 5, + 'type': , + 'uri': 'spotify:track:3CZDkpmq245kzvCe44P2hM', + }), + dict({ + 'album': dict({ + 'album_id': '5fuGZizTNkIW3Y0xqJEInl', + 'album_type': , 'artists': list([ dict({ - 'artist_id': '0tNutPAfpYEeY6YEzwIXQp', - 'name': 'Melle', - 'uri': 'spotify:artist:0tNutPAfpYEeY6YEzwIXQp', + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', }), dict({ - 'artist_id': '5VyGPIz23xzQUyXocTxAvL', - 'name': 'philine', - 'uri': 'spotify:artist:5VyGPIz23xzQUyXocTxAvL', + 'artist_id': '5kDJnYkE7Xm5zgEsJHb23u', + 'name': 'emi x', + 'uri': 'spotify:artist:5kDJnYkE7Xm5zgEsJHb23u', }), ]), - 'disc_number': 1, - 'duration_ms': 219968, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/2jjknDW4cIC8d9C3kv5zrS', - }), - 'href': 'https://api.spotify.com/v1/tracks/2jjknDW4cIC8d9C3kv5zrS', - 'is_local': False, - 'name': 'Old Summers (feat. philine)', - 'track_id': '2jjknDW4cIC8d9C3kv5zrS', - 'track_number': 1, - 'uri': 'spotify:track:2jjknDW4cIC8d9C3kv5zrS', - }), - dict({ - 'artists': list([ + 'images': list([ dict({ - 'artist_id': '2M3DTwrZjBfPAT3PBdc3fj', - 'name': 'Jerome Molnar', - 'uri': 'spotify:artist:2M3DTwrZjBfPAT3PBdc3fj', + 'height': 640, + 'url': 'https://i.scdn.co/image/ab67616d0000b27323e759d17f77ea31f69c3fb2', + 'width': 640, }), dict({ - 'artist_id': '5Gent6oObqhnzwW8QbyV0g', - 'name': 'XEDOX', - 'uri': 'spotify:artist:5Gent6oObqhnzwW8QbyV0g', + 'height': 300, + 'url': 'https://i.scdn.co/image/ab67616d00001e0223e759d17f77ea31f69c3fb2', + 'width': 300, }), - ]), - 'disc_number': 1, - 'duration_ms': 108631, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/25OVtoX4BmLhowGeX4oY20', - }), - 'href': 'https://api.spotify.com/v1/tracks/25OVtoX4BmLhowGeX4oY20', - 'is_local': False, - 'name': 'Oldschool Gabber', - 'track_id': '25OVtoX4BmLhowGeX4oY20', - 'track_number': 1, - 'uri': 'spotify:track:25OVtoX4BmLhowGeX4oY20', - }), - dict({ - 'artists': list([ dict({ - 'artist_id': '7jVv8c5Fj3E9VhNjxT4snq', - 'name': 'Lil Nas X', - 'uri': 'spotify:artist:7jVv8c5Fj3E9VhNjxT4snq', + 'height': 64, + 'url': 'https://i.scdn.co/image/ab67616d0000485123e759d17f77ea31f69c3fb2', + 'width': 64, }), ]), - 'disc_number': 1, - 'duration_ms': 113000, - 'explicit': False, - 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/0F7FA14euOIX8KcbEturGH', + 'name': 'unter ihrem dress', + 'release_date': '2021-10-29', + 'release_date_precision': , + 'total_tracks': 1, + 'uri': 'spotify:album:5fuGZizTNkIW3Y0xqJEInl', + }), + 'artists': list([ + dict({ + 'artist_id': '17l4XlVVWNktDeJDigQ3HJ', + 'name': 'Dilla', + 'uri': 'spotify:artist:17l4XlVVWNktDeJDigQ3HJ', }), - 'href': 'https://api.spotify.com/v1/tracks/0F7FA14euOIX8KcbEturGH', - 'is_local': False, - 'name': 'Old Town Road', - 'track_id': '0F7FA14euOIX8KcbEturGH', - 'track_number': 8, - 'uri': 'spotify:track:0F7FA14euOIX8KcbEturGH', + dict({ + 'artist_id': '5kDJnYkE7Xm5zgEsJHb23u', + 'name': 'emi x', + 'uri': 'spotify:artist:5kDJnYkE7Xm5zgEsJHb23u', + }), + ]), + 'disc_number': 1, + 'duration_ms': 164295, + 'explicit': False, + 'external_urls': dict({ + 'spotify': 'https://open.spotify.com/track/0fUSdXwgftvDECtVpSZ2cn', }), + 'href': 'https://api.spotify.com/v1/tracks/0fUSdXwgftvDECtVpSZ2cn', + 'is_local': False, + 'name': 'unter ihrem dress', + 'track_id': '0fUSdXwgftvDECtVpSZ2cn', + 'track_number': 1, + 'type': , + 'uri': 'spotify:track:0fUSdXwgftvDECtVpSZ2cn', + }), + ]) +# --- +# name: test_search + dict({ + 'albums': list([ + ]), + 'artists': list([ + ]), + 'audiobooks': list([ + ]), + 'episodes': list([ + ]), + 'playlists': list([ + ]), + 'shows': list([ + ]), + 'tracks': list([ dict({ 'artists': list([ dict({ - 'artist_id': '1y2yWwjdEenenVdGvm3hqi', - 'name': 'Dennis van Aarssen', - 'uri': 'spotify:artist:1y2yWwjdEenenVdGvm3hqi', + 'artist_id': '0gxyHStUsqpMadRV0Di1Qt', + 'name': 'Rick Astley', + 'uri': 'spotify:artist:0gxyHStUsqpMadRV0Di1Qt', }), ]), 'disc_number': 1, - 'duration_ms': 194274, + 'duration_ms': 213573, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/1PWRiAJgSjYTHavha9QuyK', + 'spotify': 'https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8', }), - 'href': 'https://api.spotify.com/v1/tracks/1PWRiAJgSjYTHavha9QuyK', + 'href': 'https://api.spotify.com/v1/tracks/4PTG3Z6ehGkBFwjybzWkR8', 'is_local': False, - 'name': 'The Old Songs', - 'track_id': '1PWRiAJgSjYTHavha9QuyK', - 'track_number': 5, - 'uri': 'spotify:track:1PWRiAJgSjYTHavha9QuyK', + 'name': 'Never Gonna Give You Up', + 'track_id': '4PTG3Z6ehGkBFwjybzWkR8', + 'track_number': 1, + 'uri': 'spotify:track:4PTG3Z6ehGkBFwjybzWkR8', }), dict({ 'artists': list([ dict({ - 'artist_id': '5arKwJZEvT5uKq4o0JfqR4', - 'name': 'Isabel LaRosa', - 'uri': 'spotify:artist:5arKwJZEvT5uKq4o0JfqR4', + 'artist_id': '1mYgKcXdbklH5RwjU6XA8c', + 'name': 'Sekou', + 'uri': 'spotify:artist:1mYgKcXdbklH5RwjU6XA8c', }), ]), 'disc_number': 1, - 'duration_ms': 137778, + 'duration_ms': 165315, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/75c2zaSdDBSX0A8Jyvm4fO', + 'spotify': 'https://open.spotify.com/track/5juAS6AmOceMjFnlUaJQr2', }), - 'href': 'https://api.spotify.com/v1/tracks/75c2zaSdDBSX0A8Jyvm4fO', + 'href': 'https://api.spotify.com/v1/tracks/5juAS6AmOceMjFnlUaJQr2', 'is_local': False, - 'name': 'older', - 'track_id': '75c2zaSdDBSX0A8Jyvm4fO', + 'name': 'Never Gunna Give You Up', + 'track_id': '5juAS6AmOceMjFnlUaJQr2', 'track_number': 1, - 'uri': 'spotify:track:75c2zaSdDBSX0A8Jyvm4fO', + 'uri': 'spotify:track:5juAS6AmOceMjFnlUaJQr2', }), dict({ 'artists': list([ dict({ - 'artist_id': '4xnihxcoXWK3UqryOSnbw5', - 'name': 'Sasha Alex Sloan', - 'uri': 'spotify:artist:4xnihxcoXWK3UqryOSnbw5', + 'artist_id': '1K8Sk2nWCEIqOsGPT1cV9Q', + 'name': 'Harlem Dance Club', + 'uri': 'spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q', }), ]), 'disc_number': 1, - 'duration_ms': 191001, + 'duration_ms': 193231, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/52iLDrSoRtf9lcgFuLVfqE', + 'spotify': 'https://open.spotify.com/track/0EuQ4KOfNmQX9RQt8BN9gG', }), - 'href': 'https://api.spotify.com/v1/tracks/52iLDrSoRtf9lcgFuLVfqE', + 'href': 'https://api.spotify.com/v1/tracks/0EuQ4KOfNmQX9RQt8BN9gG', 'is_local': False, - 'name': 'Older', - 'track_id': '52iLDrSoRtf9lcgFuLVfqE', + 'name': 'Never Gonna Give You Up', + 'track_id': '0EuQ4KOfNmQX9RQt8BN9gG', 'track_number': 1, - 'uri': 'spotify:track:52iLDrSoRtf9lcgFuLVfqE', + 'uri': 'spotify:track:0EuQ4KOfNmQX9RQt8BN9gG', }), dict({ 'artists': list([ dict({ - 'artist_id': '3LBeTl00bT5IUdyAKfTZxx', - 'name': 'Little Teddy', - 'uri': 'spotify:artist:3LBeTl00bT5IUdyAKfTZxx', + 'artist_id': '5ApzCoihjAuHAfGVoVqv61', + 'name': 'Kapena', + 'uri': 'spotify:artist:5ApzCoihjAuHAfGVoVqv61', }), ]), 'disc_number': 1, - 'duration_ms': 127714, + 'duration_ms': 191796, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/5VM0aiAPstckpkMCp670B7', + 'spotify': 'https://open.spotify.com/track/0PAiAlK1oyPeWvet3ZVmfE', }), - 'href': 'https://api.spotify.com/v1/tracks/5VM0aiAPstckpkMCp670B7', + 'href': 'https://api.spotify.com/v1/tracks/0PAiAlK1oyPeWvet3ZVmfE', 'is_local': False, - 'name': 'Old MacDonald Had A Farm', - 'track_id': '5VM0aiAPstckpkMCp670B7', - 'track_number': 4, - 'uri': 'spotify:track:5VM0aiAPstckpkMCp670B7', + 'name': 'Never Gonna Give You Up', + 'track_id': '0PAiAlK1oyPeWvet3ZVmfE', + 'track_number': 9, + 'uri': 'spotify:track:0PAiAlK1oyPeWvet3ZVmfE', }), dict({ 'artists': list([ dict({ - 'artist_id': '1WXsfnqh2lT56nFMI5Pc0E', - 'name': 'Dimitri K', - 'uri': 'spotify:artist:1WXsfnqh2lT56nFMI5Pc0E', + 'artist_id': '5ApzCoihjAuHAfGVoVqv61', + 'name': 'Kapena', + 'uri': 'spotify:artist:5ApzCoihjAuHAfGVoVqv61', }), ]), 'disc_number': 1, - 'duration_ms': 190200, + 'duration_ms': 191053, 'explicit': False, 'external_urls': dict({ - 'spotify': 'https://open.spotify.com/track/25u5QAh24GoKsaM1pzQJfw', + 'spotify': 'https://open.spotify.com/track/3XQsHKA5zyxVkavbQ5d79m', }), - 'href': 'https://api.spotify.com/v1/tracks/25u5QAh24GoKsaM1pzQJfw', + 'href': 'https://api.spotify.com/v1/tracks/3XQsHKA5zyxVkavbQ5d79m', 'is_local': False, - 'name': 'New School Rules', - 'track_id': '25u5QAh24GoKsaM1pzQJfw', - 'track_number': 1, - 'uri': 'spotify:track:25u5QAh24GoKsaM1pzQJfw', + 'name': 'Never Gonna Give You Up', + 'track_id': '3XQsHKA5zyxVkavbQ5d79m', + 'track_number': 6, + 'uri': 'spotify:track:3XQsHKA5zyxVkavbQ5d79m', }), ]), }) diff --git a/tests/fixtures/accounts_followed.json b/tests/fixtures/accounts_followed.json deleted file mode 100644 index 870284e..0000000 --- a/tests/fixtures/accounts_followed.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - true, - false -] diff --git a/tests/fixtures/album_saved.json b/tests/fixtures/album_saved.json deleted file mode 100644 index bec9304..0000000 --- a/tests/fixtures/album_saved.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - true, - false, - true -] diff --git a/tests/fixtures/album_tracks.json b/tests/fixtures/album_tracks.json index b3bdc9e..3475235 100644 --- a/tests/fixtures/album_tracks.json +++ b/tests/fixtures/album_tracks.json @@ -1,2814 +1,2814 @@ { - "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy/tracks?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "artists": [ + "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy/tracks?offset=0&limit=48", + "items": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" + }, + "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", + "id": "7iJrDbKM5fEkGdm5kpjFzS", + "name": "Sensato", + "type": "artist", + "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 85400, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6OmhkSOpvYBokMKQxpIGx2" + }, + "href": "https://api.spotify.com/v1/tracks/6OmhkSOpvYBokMKQxpIGx2", + "id": "6OmhkSOpvYBokMKQxpIGx2", + "name": "Global Warming (feat. Sensato)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6OmhkSOpvYBokMKQxpIGx2", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" - }, - "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", - "id": "7iJrDbKM5fEkGdm5kpjFzS", - "name": "Sensato", - "type": "artist", - "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 85400, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6OmhkSOpvYBokMKQxpIGx2" - }, - "href": "https://api.spotify.com/v1/tracks/6OmhkSOpvYBokMKQxpIGx2", - "id": "6OmhkSOpvYBokMKQxpIGx2", - "name": "Global Warming (feat. Sensato)", - "preview_url": "https://p.scdn.co/mp3-preview/81b57845f672fa5a0af749489e311ffb9fd552fe?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:6OmhkSOpvYBokMKQxpIGx2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2L8yW8GIoirHEdeW4bWQXq" - }, - "href": "https://api.spotify.com/v1/artists/2L8yW8GIoirHEdeW4bWQXq", - "id": "2L8yW8GIoirHEdeW4bWQXq", - "name": "TJR", - "type": "artist", - "uri": "spotify:artist:2L8yW8GIoirHEdeW4bWQXq" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206120, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2iblMMIgSznA464mNov7A8" - }, - "href": "https://api.spotify.com/v1/tracks/2iblMMIgSznA464mNov7A8", - "id": "2iblMMIgSznA464mNov7A8", - "name": "Don't Stop the Party (feat. TJR)", - "preview_url": "https://p.scdn.co/mp3-preview/4791938e88ca063cb96a5fa8a7a2fad53d0c835e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:2iblMMIgSznA464mNov7A8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS" - }, - "href": "https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS", - "id": "1l7ZsJRRS8wlW3WfJfPfNS", - "name": "Christina Aguilera", - "type": "artist", - "uri": "spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229506, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4yOn1TEcfsKHUJCL2h1r8I" - }, - "href": "https://api.spotify.com/v1/tracks/4yOn1TEcfsKHUJCL2h1r8I", - "id": "4yOn1TEcfsKHUJCL2h1r8I", - "name": "Feel This Moment (feat. Christina Aguilera)", - "preview_url": "https://p.scdn.co/mp3-preview/b962588e91271bb23b1ae0f7510824dc152a8466?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:4yOn1TEcfsKHUJCL2h1r8I", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7fmpKF0rLGPnP7kcQ5ZMm7" - }, - "href": "https://api.spotify.com/v1/tracks/7fmpKF0rLGPnP7kcQ5ZMm7", - "id": "7fmpKF0rLGPnP7kcQ5ZMm7", - "name": "Back in Time - featured in \"Men In Black 3\"", - "preview_url": "https://p.scdn.co/mp3-preview/03b7d0b54b19ab95c621633f2761f8285d8f000b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:7fmpKF0rLGPnP7kcQ5ZMm7", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" - }, - "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", - "id": "7bXgB6jMjp9ATFy66eO08Z", - "name": "Chris Brown", - "type": "artist", - "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221133, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3jStb2imKd6oUoBT1zq5lp" - }, - "href": "https://api.spotify.com/v1/tracks/3jStb2imKd6oUoBT1zq5lp", - "id": "3jStb2imKd6oUoBT1zq5lp", - "name": "Hope We Meet Again (feat. Chris Brown)", - "preview_url": "https://p.scdn.co/mp3-preview/6afce83e02bcbfbc6277e9b310add6179ba5600a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:3jStb2imKd6oUoBT1zq5lp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" - }, - "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", - "id": "23zg3TcAtWQy7J6upgbUnj", - "name": "USHER", - "type": "artist", - "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 243160, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Q4PYJtrq8CBx7YCY5IyRN" - }, - "href": "https://api.spotify.com/v1/tracks/6Q4PYJtrq8CBx7YCY5IyRN", - "id": "6Q4PYJtrq8CBx7YCY5IyRN", - "name": "Party Ain't Over (feat. Usher & Afrojack)", - "preview_url": "https://p.scdn.co/mp3-preview/c0eef14cc92ec73ae215e73c63474cb0d76ffa39?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:6Q4PYJtrq8CBx7YCY5IyRN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2DlGxzQSjYe5N6G9nkYghR" - }, - "href": "https://api.spotify.com/v1/artists/2DlGxzQSjYe5N6G9nkYghR", - "id": "2DlGxzQSjYe5N6G9nkYghR", - "name": "Jennifer Lopez", - "type": "artist", - "uri": "spotify:artist:2DlGxzQSjYe5N6G9nkYghR" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 196920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0QTVwqcOsYd73AOkYkk0Hg" - }, - "href": "https://api.spotify.com/v1/tracks/0QTVwqcOsYd73AOkYkk0Hg", - "id": "0QTVwqcOsYd73AOkYkk0Hg", - "name": "Drinks for You (Ladies Anthem) (feat. J. Lo)", - "preview_url": "https://p.scdn.co/mp3-preview/c8dbfd9733901ad89a36bcba5427dd85f37feb40?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:0QTVwqcOsYd73AOkYkk0Hg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2L8yW8GIoirHEdeW4bWQXq" + }, + "href": "https://api.spotify.com/v1/artists/2L8yW8GIoirHEdeW4bWQXq", + "id": "2L8yW8GIoirHEdeW4bWQXq", + "name": "TJR", + "type": "artist", + "uri": "spotify:artist:2L8yW8GIoirHEdeW4bWQXq" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2iblMMIgSznA464mNov7A8" + }, + "href": "https://api.spotify.com/v1/tracks/2iblMMIgSznA464mNov7A8", + "id": "2iblMMIgSznA464mNov7A8", + "name": "Don't Stop the Party (feat. TJR)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2iblMMIgSznA464mNov7A8", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2NhdGz9EDv2FeUw6udu2g1" - }, - "href": "https://api.spotify.com/v1/artists/2NhdGz9EDv2FeUw6udu2g1", - "id": "2NhdGz9EDv2FeUw6udu2g1", - "name": "The Wanted", - "type": "artist", - "uri": "spotify:artist:2NhdGz9EDv2FeUw6udu2g1" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS" + }, + "href": "https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS", + "id": "1l7ZsJRRS8wlW3WfJfPfNS", + "name": "Christina Aguilera", + "type": "artist", + "uri": "spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229506, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4yOn1TEcfsKHUJCL2h1r8I" + }, + "href": "https://api.spotify.com/v1/tracks/4yOn1TEcfsKHUJCL2h1r8I", + "id": "4yOn1TEcfsKHUJCL2h1r8I", + "name": "Feel This Moment (feat. Christina Aguilera)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4yOn1TEcfsKHUJCL2h1r8I", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244920, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/10Sydb6AAFPdgCzCKOSZuI" - }, - "href": "https://api.spotify.com/v1/tracks/10Sydb6AAFPdgCzCKOSZuI", - "id": "10Sydb6AAFPdgCzCKOSZuI", - "name": "Have Some Fun (feat. The Wanted & Afrojack)", - "preview_url": "https://p.scdn.co/mp3-preview/434334202a27a87178fdf76d38c9519bfb4c93fa?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:10Sydb6AAFPdgCzCKOSZuI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7fmpKF0rLGPnP7kcQ5ZMm7" + }, + "href": "https://api.spotify.com/v1/tracks/7fmpKF0rLGPnP7kcQ5ZMm7", + "id": "7fmpKF0rLGPnP7kcQ5ZMm7", + "name": "Back in Time - featured in \"Men In Black 3\"", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7fmpKF0rLGPnP7kcQ5ZMm7", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0e9P96siQmxphVXAwTy2pa" - }, - "href": "https://api.spotify.com/v1/artists/0e9P96siQmxphVXAwTy2pa", - "id": "0e9P96siQmxphVXAwTy2pa", - "name": "Danny Mercer", - "type": "artist", - "uri": "spotify:artist:0e9P96siQmxphVXAwTy2pa" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206800, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4k61iDqmtX9nI7RfLmp9aq" - }, - "href": "https://api.spotify.com/v1/tracks/4k61iDqmtX9nI7RfLmp9aq", - "id": "4k61iDqmtX9nI7RfLmp9aq", - "name": "Outta Nowhere (feat. Danny Mercer)", - "preview_url": "https://p.scdn.co/mp3-preview/3e2bebcc61e6fd8d2c51f556a150374d77b4823d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:4k61iDqmtX9nI7RfLmp9aq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" + }, + "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", + "id": "7bXgB6jMjp9ATFy66eO08Z", + "name": "Chris Brown", + "type": "artist", + "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jStb2imKd6oUoBT1zq5lp" + }, + "href": "https://api.spotify.com/v1/tracks/3jStb2imKd6oUoBT1zq5lp", + "id": "3jStb2imKd6oUoBT1zq5lp", + "name": "Hope We Meet Again (feat. Chris Brown)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3jStb2imKd6oUoBT1zq5lp", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" - }, - "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", - "id": "7qG3b048QCHVRO5Pv1T5lw", - "name": "Enrique Iglesias", - "type": "artist", - "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205800, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7oGRkL31ElVMcevQDceT99" - }, - "href": "https://api.spotify.com/v1/tracks/7oGRkL31ElVMcevQDceT99", - "id": "7oGRkL31ElVMcevQDceT99", - "name": "Tchu Tchu Tcha (feat. Enrique Iglesias)", - "preview_url": "https://p.scdn.co/mp3-preview/4fb82e67fa6458da3702bf6348890d0570a8376e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:7oGRkL31ElVMcevQDceT99", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" + }, + "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", + "id": "23zg3TcAtWQy7J6upgbUnj", + "name": "USHER", + "type": "artist", + "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 243160, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Q4PYJtrq8CBx7YCY5IyRN" + }, + "href": "https://api.spotify.com/v1/tracks/6Q4PYJtrq8CBx7YCY5IyRN", + "id": "6Q4PYJtrq8CBx7YCY5IyRN", + "name": "Party Ain't Over (feat. Usher & Afrojack)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6Q4PYJtrq8CBx7YCY5IyRN", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2DlGxzQSjYe5N6G9nkYghR" + }, + "href": "https://api.spotify.com/v1/artists/2DlGxzQSjYe5N6G9nkYghR", + "id": "2DlGxzQSjYe5N6G9nkYghR", + "name": "Jennifer Lopez", + "type": "artist", + "uri": "spotify:artist:2DlGxzQSjYe5N6G9nkYghR" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 196920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QTVwqcOsYd73AOkYkk0Hg" + }, + "href": "https://api.spotify.com/v1/tracks/0QTVwqcOsYd73AOkYkk0Hg", + "id": "0QTVwqcOsYd73AOkYkk0Hg", + "name": "Drinks for You (Ladies Anthem) (feat. J. Lo)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0QTVwqcOsYd73AOkYkk0Hg", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1EVWYRr2obCRDoSoD6KSuM" - }, - "href": "https://api.spotify.com/v1/artists/1EVWYRr2obCRDoSoD6KSuM", - "id": "1EVWYRr2obCRDoSoD6KSuM", - "name": "Havana Brown", - "type": "artist", - "uri": "spotify:artist:1EVWYRr2obCRDoSoD6KSuM" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219600, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/60xPqMqnHZl7Jfiu6E9q8X" - }, - "href": "https://api.spotify.com/v1/tracks/60xPqMqnHZl7Jfiu6E9q8X", - "id": "60xPqMqnHZl7Jfiu6E9q8X", - "name": "Last Night (feat. Afrojack & Havana Brown)", - "preview_url": "https://p.scdn.co/mp3-preview/c7be10f151dcd40b37cb84c38461cccc84fddff3?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:60xPqMqnHZl7Jfiu6E9q8X", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197520, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1jAdXqOSICyXYLaW9ioSur" - }, - "href": "https://api.spotify.com/v1/tracks/1jAdXqOSICyXYLaW9ioSur", - "id": "1jAdXqOSICyXYLaW9ioSur", - "name": "I'm Off That", - "preview_url": "https://p.scdn.co/mp3-preview/d9eacfc0cfe1d59403294286b68dba07e0e44639?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:1jAdXqOSICyXYLaW9ioSur", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2NhdGz9EDv2FeUw6udu2g1" + }, + "href": "https://api.spotify.com/v1/artists/2NhdGz9EDv2FeUw6udu2g1", + "id": "2NhdGz9EDv2FeUw6udu2g1", + "name": "The Wanted", + "type": "artist", + "uri": "spotify:artist:2NhdGz9EDv2FeUw6udu2g1" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244920, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/10Sydb6AAFPdgCzCKOSZuI" + }, + "href": "https://api.spotify.com/v1/tracks/10Sydb6AAFPdgCzCKOSZuI", + "id": "10Sydb6AAFPdgCzCKOSZuI", + "name": "Have Some Fun (feat. The Wanted & Afrojack)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:10Sydb6AAFPdgCzCKOSZuI", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5F2Bwl7Is7KVwTbNbMclIS" - }, - "href": "https://api.spotify.com/v1/artists/5F2Bwl7Is7KVwTbNbMclIS", - "id": "5F2Bwl7Is7KVwTbNbMclIS", - "name": "Papayo", - "type": "artist", - "uri": "spotify:artist:5F2Bwl7Is7KVwTbNbMclIS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 196440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0fjRYHFz9ealui1lfnN8it" - }, - "href": "https://api.spotify.com/v1/tracks/0fjRYHFz9ealui1lfnN8it", - "id": "0fjRYHFz9ealui1lfnN8it", - "name": "Echa Pa'lla (Manos Pa'rriba) (feat. Papayo)", - "preview_url": "https://p.scdn.co/mp3-preview/8ae1ca3eae6289fc8f40035a8100dd34a351a872?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:0fjRYHFz9ealui1lfnN8it", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0e9P96siQmxphVXAwTy2pa" + }, + "href": "https://api.spotify.com/v1/artists/0e9P96siQmxphVXAwTy2pa", + "id": "0e9P96siQmxphVXAwTy2pa", + "name": "Danny Mercer", + "type": "artist", + "uri": "spotify:artist:0e9P96siQmxphVXAwTy2pa" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206800, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4k61iDqmtX9nI7RfLmp9aq" + }, + "href": "https://api.spotify.com/v1/tracks/4k61iDqmtX9nI7RfLmp9aq", + "id": "4k61iDqmtX9nI7RfLmp9aq", + "name": "Outta Nowhere (feat. Danny Mercer)", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:4k61iDqmtX9nI7RfLmp9aq", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0z4gvV4rjIZ9wHck67ucSV" - }, - "href": "https://api.spotify.com/v1/artists/0z4gvV4rjIZ9wHck67ucSV", - "id": "0z4gvV4rjIZ9wHck67ucSV", - "name": "Akon", - "type": "artist", - "uri": "spotify:artist:0z4gvV4rjIZ9wHck67ucSV" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" + }, + "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", + "id": "7qG3b048QCHVRO5Pv1T5lw", + "name": "Enrique Iglesias", + "type": "artist", + "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205800, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7oGRkL31ElVMcevQDceT99" + }, + "href": "https://api.spotify.com/v1/tracks/7oGRkL31ElVMcevQDceT99", + "id": "7oGRkL31ElVMcevQDceT99", + "name": "Tchu Tchu Tcha (feat. Enrique Iglesias)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7oGRkL31ElVMcevQDceT99", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5IqWDVLGThjmkm22e3oBU3" - }, - "href": "https://api.spotify.com/v1/artists/5IqWDVLGThjmkm22e3oBU3", - "id": "5IqWDVLGThjmkm22e3oBU3", - "name": "David Rush", - "type": "artist", - "uri": "spotify:artist:5IqWDVLGThjmkm22e3oBU3" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 257613, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7of35ktwTbL906Z1i3mT4K" - }, - "href": "https://api.spotify.com/v1/tracks/7of35ktwTbL906Z1i3mT4K", - "id": "7of35ktwTbL906Z1i3mT4K", - "name": "Everybody Fucks (feat. Akon & David Rush)", - "preview_url": "https://p.scdn.co/mp3-preview/a2c2c6ad931dab7a51df3ba25c6f18ddd10170d1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:7of35ktwTbL906Z1i3mT4K", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1EVWYRr2obCRDoSoD6KSuM" + }, + "href": "https://api.spotify.com/v1/artists/1EVWYRr2obCRDoSoD6KSuM", + "id": "1EVWYRr2obCRDoSoD6KSuM", + "name": "Havana Brown", + "type": "artist", + "uri": "spotify:artist:1EVWYRr2obCRDoSoD6KSuM" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219600, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/60xPqMqnHZl7Jfiu6E9q8X" + }, + "href": "https://api.spotify.com/v1/tracks/60xPqMqnHZl7Jfiu6E9q8X", + "id": "60xPqMqnHZl7Jfiu6E9q8X", + "name": "Last Night (feat. Afrojack & Havana Brown)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:60xPqMqnHZl7Jfiu6E9q8X", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0EmeFodog0BfCgMzAIvKQp" - }, - "href": "https://api.spotify.com/v1/artists/0EmeFodog0BfCgMzAIvKQp", - "id": "0EmeFodog0BfCgMzAIvKQp", - "name": "Shakira", - "type": "artist", - "uri": "spotify:artist:0EmeFodog0BfCgMzAIvKQp" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2JA6A6Y5f4m7PawM58U2Op" - }, - "href": "https://api.spotify.com/v1/tracks/2JA6A6Y5f4m7PawM58U2Op", - "id": "2JA6A6Y5f4m7PawM58U2Op", - "name": "Get It Started (feat. Shakira)", - "preview_url": "https://p.scdn.co/mp3-preview/d6f33dcb1f5d117ae266248996db879a5aba9fec?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:2JA6A6Y5f4m7PawM58U2Op", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197520, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1jAdXqOSICyXYLaW9ioSur" + }, + "href": "https://api.spotify.com/v1/tracks/1jAdXqOSICyXYLaW9ioSur", + "id": "1jAdXqOSICyXYLaW9ioSur", + "name": "I'm Off That", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:1jAdXqOSICyXYLaW9ioSur", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3BnF35ARlp8mMeyXTjUZsr" - }, - "href": "https://api.spotify.com/v1/artists/3BnF35ARlp8mMeyXTjUZsr", - "id": "3BnF35ARlp8mMeyXTjUZsr", - "name": "Vein", - "type": "artist", - "uri": "spotify:artist:3BnF35ARlp8mMeyXTjUZsr" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217680, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/726qZxwhP0jVyIA0ujnnhb" - }, - "href": "https://api.spotify.com/v1/tracks/726qZxwhP0jVyIA0ujnnhb", - "id": "726qZxwhP0jVyIA0ujnnhb", - "name": "11:59 (feat. Vein)", - "preview_url": "https://p.scdn.co/mp3-preview/2b3b9bf5c1c8b7192e4b535f7af11301d1f521af?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 16, - "type": "track", - "uri": "spotify:track:726qZxwhP0jVyIA0ujnnhb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5F2Bwl7Is7KVwTbNbMclIS" + }, + "href": "https://api.spotify.com/v1/artists/5F2Bwl7Is7KVwTbNbMclIS", + "id": "5F2Bwl7Is7KVwTbNbMclIS", + "name": "Papayo", + "type": "artist", + "uri": "spotify:artist:5F2Bwl7Is7KVwTbNbMclIS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 196440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0fjRYHFz9ealui1lfnN8it" + }, + "href": "https://api.spotify.com/v1/tracks/0fjRYHFz9ealui1lfnN8it", + "id": "0fjRYHFz9ealui1lfnN8it", + "name": "Echa Pa'lla (Manos Pa'rriba) (feat. Papayo)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:0fjRYHFz9ealui1lfnN8it", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4wLXwxDeWQ8mtUIRPxGiD6" - }, - "href": "https://api.spotify.com/v1/artists/4wLXwxDeWQ8mtUIRPxGiD6", - "id": "4wLXwxDeWQ8mtUIRPxGiD6", - "name": "Marc Anthony", - "type": "artist", - "uri": "spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0z4gvV4rjIZ9wHck67ucSV" + }, + "href": "https://api.spotify.com/v1/artists/0z4gvV4rjIZ9wHck67ucSV", + "id": "0z4gvV4rjIZ9wHck67ucSV", + "name": "Akon", + "type": "artist", + "uri": "spotify:artist:0z4gvV4rjIZ9wHck67ucSV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IqWDVLGThjmkm22e3oBU3" + }, + "href": "https://api.spotify.com/v1/artists/5IqWDVLGThjmkm22e3oBU3", + "id": "5IqWDVLGThjmkm22e3oBU3", + "name": "David Rush", + "type": "artist", + "uri": "spotify:artist:5IqWDVLGThjmkm22e3oBU3" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 257613, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7of35ktwTbL906Z1i3mT4K" + }, + "href": "https://api.spotify.com/v1/tracks/7of35ktwTbL906Z1i3mT4K", + "id": "7of35ktwTbL906Z1i3mT4K", + "name": "Everybody Fucks (feat. Akon & David Rush)", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:7of35ktwTbL906Z1i3mT4K", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4MHssKddnziCghmwBHRiEY" - }, - "href": "https://api.spotify.com/v1/artists/4MHssKddnziCghmwBHRiEY", - "id": "4MHssKddnziCghmwBHRiEY", - "name": "Alle", - "type": "artist", - "uri": "spotify:artist:4MHssKddnziCghmwBHRiEY" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0EmeFodog0BfCgMzAIvKQp" + }, + "href": "https://api.spotify.com/v1/artists/0EmeFodog0BfCgMzAIvKQp", + "id": "0EmeFodog0BfCgMzAIvKQp", + "name": "Shakira", + "type": "artist", + "uri": "spotify:artist:0EmeFodog0BfCgMzAIvKQp" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2JA6A6Y5f4m7PawM58U2Op" + }, + "href": "https://api.spotify.com/v1/tracks/2JA6A6Y5f4m7PawM58U2Op", + "id": "2JA6A6Y5f4m7PawM58U2Op", + "name": "Get It Started (feat. Shakira)", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:2JA6A6Y5f4m7PawM58U2Op", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4Ws2otunReOa6BbwxxpCt6" - }, - "href": "https://api.spotify.com/v1/artists/4Ws2otunReOa6BbwxxpCt6", - "id": "4Ws2otunReOa6BbwxxpCt6", - "name": "Benny Benassi", - "type": "artist", - "uri": "spotify:artist:4Ws2otunReOa6BbwxxpCt6" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 316480, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6GPER1Sx8MrBiwWxdulg5Q" - }, - "href": "https://api.spotify.com/v1/tracks/6GPER1Sx8MrBiwWxdulg5Q", - "id": "6GPER1Sx8MrBiwWxdulg5Q", - "name": "Rain Over Me (feat. Marc Anthony) - Benny Benassi Remix", - "preview_url": "https://p.scdn.co/mp3-preview/cad9ce18484c8a1ebf27f0e427e97959e586b8fa?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 17, - "type": "track", - "uri": "spotify:track:6GPER1Sx8MrBiwWxdulg5Q", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BnF35ARlp8mMeyXTjUZsr" + }, + "href": "https://api.spotify.com/v1/artists/3BnF35ARlp8mMeyXTjUZsr", + "id": "3BnF35ARlp8mMeyXTjUZsr", + "name": "Vein", + "type": "artist", + "uri": "spotify:artist:3BnF35ARlp8mMeyXTjUZsr" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217680, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/726qZxwhP0jVyIA0ujnnhb" + }, + "href": "https://api.spotify.com/v1/tracks/726qZxwhP0jVyIA0ujnnhb", + "id": "726qZxwhP0jVyIA0ujnnhb", + "name": "11:59 (feat. Vein)", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:726qZxwhP0jVyIA0ujnnhb", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" - }, - "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", - "id": "7bXgB6jMjp9ATFy66eO08Z", - "name": "Chris Brown", - "type": "artist", - "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4wLXwxDeWQ8mtUIRPxGiD6" + }, + "href": "https://api.spotify.com/v1/artists/4wLXwxDeWQ8mtUIRPxGiD6", + "id": "4wLXwxDeWQ8mtUIRPxGiD6", + "name": "Marc Anthony", + "type": "artist", + "uri": "spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4MHssKddnziCghmwBHRiEY" + }, + "href": "https://api.spotify.com/v1/artists/4MHssKddnziCghmwBHRiEY", + "id": "4MHssKddnziCghmwBHRiEY", + "name": "Alle", + "type": "artist", + "uri": "spotify:artist:4MHssKddnziCghmwBHRiEY" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4Ws2otunReOa6BbwxxpCt6" + }, + "href": "https://api.spotify.com/v1/artists/4Ws2otunReOa6BbwxxpCt6", + "id": "4Ws2otunReOa6BbwxxpCt6", + "name": "Benny Benassi", + "type": "artist", + "uri": "spotify:artist:4Ws2otunReOa6BbwxxpCt6" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 316480, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GPER1Sx8MrBiwWxdulg5Q" + }, + "href": "https://api.spotify.com/v1/tracks/6GPER1Sx8MrBiwWxdulg5Q", + "id": "6GPER1Sx8MrBiwWxdulg5Q", + "name": "Rain Over Me (feat. Marc Anthony) - Benny Benassi Remix", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:6GPER1Sx8MrBiwWxdulg5Q", + "is_local": false }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5I7l0lSOyusetwCv1aQPMf" - }, - "href": "https://api.spotify.com/v1/artists/5I7l0lSOyusetwCv1aQPMf", - "id": "5I7l0lSOyusetwCv1aQPMf", - "name": "Jump Smokers", - "type": "artist", - "uri": "spotify:artist:5I7l0lSOyusetwCv1aQPMf" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" + }, + "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", + "id": "7bXgB6jMjp9ATFy66eO08Z", + "name": "Chris Brown", + "type": "artist", + "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5I7l0lSOyusetwCv1aQPMf" + }, + "href": "https://api.spotify.com/v1/artists/5I7l0lSOyusetwCv1aQPMf", + "id": "5I7l0lSOyusetwCv1aQPMf", + "name": "Jump Smokers", + "type": "artist", + "uri": "spotify:artist:5I7l0lSOyusetwCv1aQPMf" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 309626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4TWgcICXXfGty8MHGWJ4Ne" + }, + "href": "https://api.spotify.com/v1/tracks/4TWgcICXXfGty8MHGWJ4Ne", + "id": "4TWgcICXXfGty8MHGWJ4Ne", + "name": "International Love (feat. Chris Brown) - Jump Smokers Extended Mix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:4TWgcICXXfGty8MHGWJ4Ne", + "is_local": false } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 309626, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4TWgcICXXfGty8MHGWJ4Ne" - }, - "href": "https://api.spotify.com/v1/tracks/4TWgcICXXfGty8MHGWJ4Ne", - "id": "4TWgcICXXfGty8MHGWJ4Ne", - "name": "International Love (feat. Chris Brown) - Jump Smokers Extended Mix", - "preview_url": "https://p.scdn.co/mp3-preview/c48b3bb6e6497433f0187d201b7ae27cab0f1906?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 18, - "type": "track", - "uri": "spotify:track:4TWgcICXXfGty8MHGWJ4Ne", - "is_local": false - } - ], - "limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total": 18 + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 18 } diff --git a/tests/fixtures/artist.json b/tests/fixtures/artist.json index 5495602..65d8623 100644 --- a/tests/fixtures/artist.json +++ b/tests/fixtures/artist.json @@ -1,37 +1,30 @@ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "followers": { - "href": null, - "total": 10817055 - }, - "genres": [ - "dance pop", - "miami hip hop", - "pop" - ], - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg?locale=en-US%2Cen%3Bq%3D0.5", - "id": "0TnOYISbd1XYRBk9myaseg", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebee07b5820dd91d15d397e29c", - "height": 640, - "width": 640 + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" }, - { - "url": "https://i.scdn.co/image/ab67616100005174ee07b5820dd91d15d397e29c", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178ee07b5820dd91d15d397e29c", - "height": 160, - "width": 160 - } - ], - "name": "Pitbull", - "popularity": 85, - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "followers": { "href": null, "total": 12425030 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8d8ac7290d0fe2d12fb6e4d9", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051748d8ac7290d0fe2d12fb6e4d9", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788d8ac7290d0fe2d12fb6e4d9", + "height": 160, + "width": 160 + } + ], + "name": "Pitbull", + "popularity": 85, + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" } diff --git a/tests/fixtures/artist_albums.json b/tests/fixtures/artist_albums.json index d3cd6a0..61dfdef 100644 --- a/tests/fixtures/artist_albums.json +++ b/tests/fixtures/artist_albums.json @@ -1,4387 +1,11279 @@ { - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=0&limit=20&locale=en-US,en;q%3D0.5&include_groups=album,single,compilation,appears_on", - "limit": 20, - "next": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=20&limit=20&locale=en-US,en;q%3D0.5&include_groups=album,single,compilation,appears_on", - "offset": 0, - "previous": null, - "total": 903, - "items": [ - { - "album_type": "album", - "total_tracks": 7, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/56jg3KJcYmfL7RzYmG2O1Q" - }, - "href": "https://api.spotify.com/v1/albums/56jg3KJcYmfL7RzYmG2O1Q", - "id": "56jg3KJcYmfL7RzYmG2O1Q", - "images": [ + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=0&limit=48&include_groups=album,single,compilation,appears_on", + "limit": 48, + "next": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=48&limit=48&include_groups=album,single,compilation,appears_on", + "offset": 0, + "previous": null, + "total": 918, + "items": [ { - "url": "https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1nPRTKmS3Bn0f2ih11i2aH" + }, + "href": "https://api.spotify.com/v1/albums/1nPRTKmS3Bn0f2ih11i2aH", + "id": "1nPRTKmS3Bn0f2ih11i2aH", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273fa853d9769c89d08a74983bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02fa853d9769c89d08a74983bb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851fa853d9769c89d08a74983bb", + "height": 64, + "width": 64 + } + ], + "name": "UNDERDOGS", + "release_date": "2025-08-29", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1nPRTKmS3Bn0f2ih11i2aH", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 7, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/56jg3KJcYmfL7RzYmG2O1Q" + }, + "href": "https://api.spotify.com/v1/albums/56jg3KJcYmfL7RzYmG2O1Q", + "id": "56jg3KJcYmfL7RzYmG2O1Q", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520", + "height": 64, + "width": 64 + } + ], + "name": "Trackhouse (Daytona 500 Edition)", + "release_date": "2024-02-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:56jg3KJcYmfL7RzYmG2O1Q", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520", - "height": 64, - "width": 64 - } - ], - "name": "Trackhouse (Daytona 500 Edition)", - "release_date": "2024-02-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:56jg3KJcYmfL7RzYmG2O1Q", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1l86t4bTNT2j1X0ZBCIv6R" - }, - "href": "https://api.spotify.com/v1/albums/1l86t4bTNT2j1X0ZBCIv6R", - "id": "1l86t4bTNT2j1X0ZBCIv6R", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1l86t4bTNT2j1X0ZBCIv6R" + }, + "href": "https://api.spotify.com/v1/albums/1l86t4bTNT2j1X0ZBCIv6R", + "id": "1l86t4bTNT2j1X0ZBCIv6R", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d", + "height": 64, + "width": 64 + } + ], + "name": "Trackhouse", + "release_date": "2023-10-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1l86t4bTNT2j1X0ZBCIv6R", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 15, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6nCJAxRvXmPkPiZo8Vh5ZG" + }, + "href": "https://api.spotify.com/v1/albums/6nCJAxRvXmPkPiZo8Vh5ZG", + "id": "6nCJAxRvXmPkPiZo8Vh5ZG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d", + "height": 64, + "width": 64 + } + ], + "name": "Libertad 548", + "release_date": "2019-09-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d", - "height": 64, - "width": 64 - } - ], - "name": "Trackhouse", - "release_date": "2023-10-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1l86t4bTNT2j1X0ZBCIv6R", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 15, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6nCJAxRvXmPkPiZo8Vh5ZG" - }, - "href": "https://api.spotify.com/v1/albums/6nCJAxRvXmPkPiZo8Vh5ZG", - "id": "6nCJAxRvXmPkPiZo8Vh5ZG", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 19, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6ZSNnOY2ESMNoVQ5DdvHrj" + }, + "href": "https://api.spotify.com/v1/albums/6ZSNnOY2ESMNoVQ5DdvHrj", + "id": "6ZSNnOY2ESMNoVQ5DdvHrj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874", + "height": 64, + "width": 64 + } + ], + "name": "Gotti (Original Motion Picture Soundtrack)", + "release_date": "2018-06-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RFjbxELOWFXv54t6ccuRZ" + }, + "href": "https://api.spotify.com/v1/artists/6RFjbxELOWFXv54t6ccuRZ", + "id": "6RFjbxELOWFXv54t6ccuRZ", + "name": "Jorge Gomez", + "type": "artist", + "uri": "spotify:artist:6RFjbxELOWFXv54t6ccuRZ" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4jtKPpBQ5eneMwEI94f5Y0" + }, + "href": "https://api.spotify.com/v1/albums/4jtKPpBQ5eneMwEI94f5Y0", + "id": "4jtKPpBQ5eneMwEI94f5Y0", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dfa89274cbe23c1fe1b589d5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dfa89274cbe23c1fe1b589d5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dfa89274cbe23c1fe1b589d5", + "height": 64, + "width": 64 + } + ], + "name": "Climate Change", + "release_date": "2017-03-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4jtKPpBQ5eneMwEI94f5Y0", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d", - "height": 64, - "width": 64 - } - ], - "name": "Libertad 548", - "release_date": "2019-09-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 19, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ZSNnOY2ESMNoVQ5DdvHrj" - }, - "href": "https://api.spotify.com/v1/albums/6ZSNnOY2ESMNoVQ5DdvHrj", - "id": "6ZSNnOY2ESMNoVQ5DdvHrj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AD", + "AL", + "AM", + "BA", + "BE", + "BG", + "BY", + "CW", + "CY", + "CZ", + "DK", + "EE", + "ES", + "FI", + "FR", + "GB", + "GE", + "GR", + "HR", + "HU", + "IE", + "IL", + "IS", + "IT", + "KG", + "KZ", + "LI", + "LT", + "LU", + "LV", + "MC", + "MD", + "ME", + "MK", + "MT", + "NL", + "NO", + "PL", + "PT", + "RO", + "RS", + "SE", + "SI", + "SK", + "SM", + "TJ", + "TR", + "UA", + "UZ", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0tKKoGCz9CaZ3x1hDD6Ss2" + }, + "href": "https://api.spotify.com/v1/albums/0tKKoGCz9CaZ3x1hDD6Ss2", + "id": "0tKKoGCz9CaZ3x1hDD6Ss2", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf", + "height": 64, + "width": 64 + } + ], + "name": "Dale", + "release_date": "2015-06-30", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" + }, + "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", + "id": "4EUf4YyNjuXypWY6W5wEDm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e6efeff81a318670a292090f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e6efeff81a318670a292090f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e6efeff81a318670a292090f", + "height": 64, + "width": 64 + } + ], + "name": "Globalization", + "release_date": "2014-11-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874", - "height": 64, - "width": 64 - } - ], - "name": "Gotti (Original Motion Picture Soundtrack)", - "release_date": "2018-06-14", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy" + }, + "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy", + "id": "4aawyAB9vmqN3uQ7FjRGTy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4", + "height": 64, + "width": 64 + } + ], + "name": "Global Warming", + "release_date": "2012-11-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6RFjbxELOWFXv54t6ccuRZ" - }, - "href": "https://api.spotify.com/v1/artists/6RFjbxELOWFXv54t6ccuRZ", - "id": "6RFjbxELOWFXv54t6ccuRZ", - "name": "Jorge Gomez", - "type": "artist", - "uri": "spotify:artist:6RFjbxELOWFXv54t6ccuRZ" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4jtKPpBQ5eneMwEI94f5Y0" - }, - "href": "https://api.spotify.com/v1/albums/4jtKPpBQ5eneMwEI94f5Y0", - "id": "4jtKPpBQ5eneMwEI94f5Y0", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273847d47b2d33517f0e8b2b958", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 17, + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "LS", + "LR", + "MW", + "MV", + "ML", + "FM", + "NA", + "NE", + "PR", + "SM", + "ST", + "SN", + "SC", + "SL", + "KN", + "LC", + "VC", + "SR", + "TL", + "TT", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" + }, + "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", + "id": "2F7tejLHzTqFq2XLol9ZGy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732ffc2c580b6595a3e675a730", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022ffc2c580b6595a3e675a730", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512ffc2c580b6595a3e675a730", + "height": 64, + "width": 64 + } + ], + "name": "Global Warming: Meltdown (Deluxe Version)", + "release_date": "2012", + "release_date_precision": "year", + "type": "album", + "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02847d47b2d33517f0e8b2b958", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 16, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" + }, + "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", + "id": "4rG0MhkU6UojACJxkMHIXB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", + "height": 64, + "width": 64 + } + ], + "name": "Planet Pit (Deluxe Version)", + "release_date": "2011-06-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00004851847d47b2d33517f0e8b2b958", - "height": 64, - "width": 64 - } - ], - "name": "Climate Change", - "release_date": "2017-03-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4jtKPpBQ5eneMwEI94f5Y0", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AD", - "AL", - "AM", - "BA", - "BE", - "BG", - "BY", - "CW", - "CY", - "CZ", - "DK", - "EE", - "ES", - "FI", - "FR", - "GB", - "GE", - "GR", - "HR", - "HU", - "IE", - "IL", - "IS", - "IT", - "KG", - "KZ", - "LI", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MK", - "MT", - "NL", - "NO", - "PL", - "PT", - "RO", - "RS", - "SE", - "SI", - "SK", - "SM", - "TJ", - "TR", - "UA", - "UZ", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0tKKoGCz9CaZ3x1hDD6Ss2" - }, - "href": "https://api.spotify.com/v1/albums/0tKKoGCz9CaZ3x1hDD6Ss2", - "id": "0tKKoGCz9CaZ3x1hDD6Ss2", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AU", + "AT", + "BE", + "BG", + "CA", + "CY", + "CZ", + "DK", + "DE", + "EE", + "FI", + "FR", + "GR", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "NL", + "NZ", + "NO", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1q23hvi1qvoADt2fh7FO7P" + }, + "href": "https://api.spotify.com/v1/albums/1q23hvi1qvoADt2fh7FO7P", + "id": "1q23hvi1qvoADt2fh7FO7P", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2733eb0fc423b496236f33cb033", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e023eb0fc423b496236f33cb033", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048513eb0fc423b496236f33cb033", + "height": 64, + "width": 64 + } + ], + "name": "Armando (Deluxe)", + "release_date": "2010-11-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1q23hvi1qvoADt2fh7FO7P", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AU", + "AT", + "BE", + "BG", + "CA", + "CY", + "CZ", + "DK", + "DE", + "EE", + "FI", + "FR", + "GR", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "NL", + "NZ", + "NO", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0kv3Rm7PODqJBQaVJiezuB" + }, + "href": "https://api.spotify.com/v1/albums/0kv3Rm7PODqJBQaVJiezuB", + "id": "0kv3Rm7PODqJBQaVJiezuB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731091bce0b9d981cac5e4091c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021091bce0b9d981cac5e4091c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511091bce0b9d981cac5e4091c", + "height": 64, + "width": 64 + } + ], + "name": "I Am Armando - Armando Reloaded", + "release_date": "2010", + "release_date_precision": "year", + "type": "album", + "uri": "spotify:album:0kv3Rm7PODqJBQaVJiezuB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf", - "height": 64, - "width": 64 - } - ], - "name": "Dale", - "release_date": "2015-06-30", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" - }, - "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", - "id": "4EUf4YyNjuXypWY6W5wEDm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731e340d1480e7bb29a45e3bd7", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 15, + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5xLAcbvbSAlRtPXnKkggXA" + }, + "href": "https://api.spotify.com/v1/albums/5xLAcbvbSAlRtPXnKkggXA", + "id": "5xLAcbvbSAlRtPXnKkggXA", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0226d73ab8423a350faa5d395a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485126d73ab8423a350faa5d395a", + "height": 64, + "width": 64 + } + ], + "name": "Pitbull Starring In Rebelution", + "release_date": "2009-10-23", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5xLAcbvbSAlRtPXnKkggXA", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e021e340d1480e7bb29a45e3bd7", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6ODOJvYpaQ3p0O6Agrlt4B" + }, + "href": "https://api.spotify.com/v1/albums/6ODOJvYpaQ3p0O6Agrlt4B", + "id": "6ODOJvYpaQ3p0O6Agrlt4B", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e5de6d02e83f63e381f0932b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e5de6d02e83f63e381f0932b", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e5de6d02e83f63e381f0932b", + "height": 64, + "width": 64 + } + ], + "name": "The Boatlift - Clean", + "release_date": "2007-11-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6ODOJvYpaQ3p0O6Agrlt4B", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d000048511e340d1480e7bb29a45e3bd7", - "height": 64, - "width": 64 - } - ], - "name": "Globalization", - "release_date": "2014-11-21", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy" - }, - "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy", - "id": "4aawyAB9vmqN3uQ7FjRGTy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7m9AYxqeFPagkaqlg6WE0J" + }, + "href": "https://api.spotify.com/v1/albums/7m9AYxqeFPagkaqlg6WE0J", + "id": "7m9AYxqeFPagkaqlg6WE0J", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734b6e3bb6e298b4477bf2f6f0", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024b6e3bb6e298b4477bf2f6f0", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514b6e3bb6e298b4477bf2f6f0", + "height": 64, + "width": 64 + } + ], + "name": "The Boatlift", + "release_date": "2007-11-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7m9AYxqeFPagkaqlg6WE0J", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 21, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/69bXbGpsjbLtygqiiaXIqf" + }, + "href": "https://api.spotify.com/v1/albums/69bXbGpsjbLtygqiiaXIqf", + "id": "69bXbGpsjbLtygqiiaXIqf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27363f27725465f14449c8258cb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0263f27725465f14449c8258cb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485163f27725465f14449c8258cb", + "height": 64, + "width": 64 + } + ], + "name": "El Mariel - Clean", + "release_date": "2006-10-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:69bXbGpsjbLtygqiiaXIqf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4", - "height": 64, - "width": 64 - } - ], - "name": "Global Warming", - "release_date": "2012-11-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 17, - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" - }, - "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", - "id": "2F7tejLHzTqFq2XLol9ZGy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f2486b438645e97b523e4f90", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 21, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7rOcmdW8dWxlScy6AUgjI8" + }, + "href": "https://api.spotify.com/v1/albums/7rOcmdW8dWxlScy6AUgjI8", + "id": "7rOcmdW8dWxlScy6AUgjI8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731b05e8f15f93dd1247e90c49", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021b05e8f15f93dd1247e90c49", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511b05e8f15f93dd1247e90c49", + "height": 64, + "width": 64 + } + ], + "name": "El Mariel", + "release_date": "2006-10-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7rOcmdW8dWxlScy6AUgjI8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02f2486b438645e97b523e4f90", - "height": 300, - "width": 300 + "album_type": "album", + "total_tracks": 13, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4y8v2mnHITUR0Vi2HSAh4F" + }, + "href": "https://api.spotify.com/v1/albums/4y8v2mnHITUR0Vi2HSAh4F", + "id": "4y8v2mnHITUR0Vi2HSAh4F", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a8045f86097518b70cb499ee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a8045f86097518b70cb499ee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a8045f86097518b70cb499ee", + "height": 64, + "width": 64 + } + ], + "name": "Money Is Still A Major Issue", + "release_date": "2005-11-15", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4y8v2mnHITUR0Vi2HSAh4F", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00004851f2486b438645e97b523e4f90", - "height": 64, - "width": 64 - } - ], - "name": "Global Warming: Meltdown (Deluxe Version)", - "release_date": "2012", - "release_date_precision": "year", - "type": "album", - "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 16, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" - }, - "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", - "id": "4rG0MhkU6UojACJxkMHIXB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", - "height": 640, - "width": 640 + "album_type": "album", + "total_tracks": 16, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/76N6imyjQ9h5p2NzakHT32" + }, + "href": "https://api.spotify.com/v1/albums/76N6imyjQ9h5p2NzakHT32", + "id": "76N6imyjQ9h5p2NzakHT32", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27300650b5e6be3af579ae18e7c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0200650b5e6be3af579ae18e7c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485100650b5e6be3af579ae18e7c", + "height": 64, + "width": 64 + } + ], + "name": "M.I.A.M.I.", + "release_date": "2004-08-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:76N6imyjQ9h5p2NzakHT32", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" }, { - "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ielCGOyyidzpbnxKctCLk" + }, + "href": "https://api.spotify.com/v1/albums/1ielCGOyyidzpbnxKctCLk", + "id": "1ielCGOyyidzpbnxKctCLk", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27306cb49bdddf422972424980d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0206cb49bdddf422972424980d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485106cb49bdddf422972424980d", + "height": 64, + "width": 64 + } + ], + "name": "Pa' Los Envidiosos", + "release_date": "2026-02-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1ielCGOyyidzpbnxKctCLk", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4zWFlKgU4j7ryWg5nsOmU6" + }, + "href": "https://api.spotify.com/v1/artists/4zWFlKgU4j7ryWg5nsOmU6", + "id": "4zWFlKgU4j7ryWg5nsOmU6", + "name": "Lenier", + "type": "artist", + "uri": "spotify:artist:4zWFlKgU4j7ryWg5nsOmU6" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", - "height": 64, - "width": 64 - } - ], - "name": "Planet Pit (Deluxe Version)", - "release_date": "2011-06-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CA", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1q23hvi1qvoADt2fh7FO7P" - }, - "href": "https://api.spotify.com/v1/albums/1q23hvi1qvoADt2fh7FO7P", - "id": "1q23hvi1qvoADt2fh7FO7P", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2733eb0fc423b496236f33cb033", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1Q53Pq6VrC38FLf8yIHaE9" + }, + "href": "https://api.spotify.com/v1/albums/1Q53Pq6VrC38FLf8yIHaE9", + "id": "1Q53Pq6VrC38FLf8yIHaE9", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27363df79b70d17204b59c7a09e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0263df79b70d17204b59c7a09e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485163df79b70d17204b59c7a09e", + "height": 64, + "width": 64 + } + ], + "name": "R\u00c1PIDOS Y FURIOSOS 11", + "release_date": "2026-01-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Q53Pq6VrC38FLf8yIHaE9", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" + }, + "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", + "id": "1yX62RHdYysNcIrO33WQxJ", + "name": "Dani Flow", + "type": "artist", + "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e023eb0fc423b496236f33cb033", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6lpZfEeWcLG0DDfgd22km8" + }, + "href": "https://api.spotify.com/v1/albums/6lpZfEeWcLG0DDfgd22km8", + "id": "6lpZfEeWcLG0DDfgd22km8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273aa9ba9e7b528084ada3308b1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02aa9ba9e7b528084ada3308b1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851aa9ba9e7b528084ada3308b1", + "height": 64, + "width": 64 + } + ], + "name": "Soy As\u00ed 2", + "release_date": "2026-01-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6lpZfEeWcLG0DDfgd22km8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/137W8MRPWKqSmrBGDBFSop" + }, + "href": "https://api.spotify.com/v1/artists/137W8MRPWKqSmrBGDBFSop", + "id": "137W8MRPWKqSmrBGDBFSop", + "name": "Wiz Khalifa", + "type": "artist", + "uri": "spotify:artist:137W8MRPWKqSmrBGDBFSop" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048513eb0fc423b496236f33cb033", - "height": 64, - "width": 64 - } - ], - "name": "Armando (Deluxe)", - "release_date": "2010-11-02", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1q23hvi1qvoADt2fh7FO7P", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CA", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0kv3Rm7PODqJBQaVJiezuB" - }, - "href": "https://api.spotify.com/v1/albums/0kv3Rm7PODqJBQaVJiezuB", - "id": "0kv3Rm7PODqJBQaVJiezuB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731091bce0b9d981cac5e4091c", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5wguho5YJqF36UgNiY2mA8" + }, + "href": "https://api.spotify.com/v1/albums/5wguho5YJqF36UgNiY2mA8", + "id": "5wguho5YJqF36UgNiY2mA8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732356f919195375b776f579a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022356f919195375b776f579a1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512356f919195375b776f579a1", + "height": 64, + "width": 64 + } + ], + "name": "Yeehaw", + "release_date": "2025-12-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5wguho5YJqF36UgNiY2mA8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" + }, + "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", + "id": "0FvJm0y2eHw0aPkLLU3sIG", + "name": "FILMORE", + "type": "artist", + "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e021091bce0b9d981cac5e4091c", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/44QE4TTUn2HuPc65iOkKhI" + }, + "href": "https://api.spotify.com/v1/albums/44QE4TTUn2HuPc65iOkKhI", + "id": "44QE4TTUn2HuPc65iOkKhI", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273112ffbefca84603d765e1dee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02112ffbefca84603d765e1dee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851112ffbefca84603d765e1dee", + "height": 64, + "width": 64 + } + ], + "name": "Yeehaw (Clean)", + "release_date": "2025-12-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:44QE4TTUn2HuPc65iOkKhI", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" + }, + "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", + "id": "0FvJm0y2eHw0aPkLLU3sIG", + "name": "FILMORE", + "type": "artist", + "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048511091bce0b9d981cac5e4091c", - "height": 64, - "width": 64 - } - ], - "name": "I Am Armando - Armando Reloaded", - "release_date": "2010", - "release_date_precision": "year", - "type": "album", - "uri": "spotify:album:0kv3Rm7PODqJBQaVJiezuB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 15, - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5xLAcbvbSAlRtPXnKkggXA" - }, - "href": "https://api.spotify.com/v1/albums/5xLAcbvbSAlRtPXnKkggXA", - "id": "5xLAcbvbSAlRtPXnKkggXA", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7EoWixoOdwjAqG7QNAYPqy" + }, + "href": "https://api.spotify.com/v1/albums/7EoWixoOdwjAqG7QNAYPqy", + "id": "7EoWixoOdwjAqG7QNAYPqy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273839e75853260058868d9cff9", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02839e75853260058868d9cff9", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851839e75853260058868d9cff9", + "height": 64, + "width": 64 + } + ], + "name": "Fun Dip", + "release_date": "2025-12-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7EoWixoOdwjAqG7QNAYPqy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0LthCv77K8NqLKr8B6266a" + }, + "href": "https://api.spotify.com/v1/artists/0LthCv77K8NqLKr8B6266a", + "id": "0LthCv77K8NqLKr8B6266a", + "name": "Freak Nasty", + "type": "artist", + "uri": "spotify:artist:0LthCv77K8NqLKr8B6266a" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e0226d73ab8423a350faa5d395a", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 5, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/704rVRHvHjgKyIMAuFhn9G" + }, + "href": "https://api.spotify.com/v1/albums/704rVRHvHjgKyIMAuFhn9G", + "id": "704rVRHvHjgKyIMAuFhn9G", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27392aa9a2b1e5c37f1dac1cae5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0292aa9a2b1e5c37f1dac1cae5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485192aa9a2b1e5c37f1dac1cae5", + "height": 64, + "width": 64 + } + ], + "name": "Damn I Love Miami (Remixes)", + "release_date": "2025-10-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:704rVRHvHjgKyIMAuFhn9G", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" + }, + "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", + "id": "7sfl4Xt5KmfyDs2T3SVSMK", + "name": "Lil Jon", + "type": "artist", + "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d0000485126d73ab8423a350faa5d395a", - "height": 64, - "width": 64 - } - ], - "name": "Pitbull Starring In Rebelution", - "release_date": "2009-10-23", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5xLAcbvbSAlRtPXnKkggXA", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ODOJvYpaQ3p0O6Agrlt4B" - }, - "href": "https://api.spotify.com/v1/albums/6ODOJvYpaQ3p0O6Agrlt4B", - "id": "6ODOJvYpaQ3p0O6Agrlt4B", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273e5de6d02e83f63e381f0932b", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iQFOdoDdXSpAJy5vLKA9p" + }, + "href": "https://api.spotify.com/v1/albums/1iQFOdoDdXSpAJy5vLKA9p", + "id": "1iQFOdoDdXSpAJy5vLKA9p", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273872c1a350283cf2a533db263", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02872c1a350283cf2a533db263", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851872c1a350283cf2a533db263", + "height": 64, + "width": 64 + } + ], + "name": "Pretty Woman (All Around The World) (with Gabry Ponte)", + "release_date": "2025-09-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1iQFOdoDdXSpAJy5vLKA9p", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/13NpuESz6tlK819yBs0PuS" + }, + "href": "https://api.spotify.com/v1/artists/13NpuESz6tlK819yBs0PuS", + "id": "13NpuESz6tlK819yBs0PuS", + "name": "Azteck", + "type": "artist", + "uri": "spotify:artist:13NpuESz6tlK819yBs0PuS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ENS85nZShljwNgg4wFD7D" + }, + "href": "https://api.spotify.com/v1/artists/5ENS85nZShljwNgg4wFD7D", + "id": "5ENS85nZShljwNgg4wFD7D", + "name": "Gabry Ponte", + "type": "artist", + "uri": "spotify:artist:5ENS85nZShljwNgg4wFD7D" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02e5de6d02e83f63e381f0932b", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2WzCFW3ywduzHLbPNMrzji" + }, + "href": "https://api.spotify.com/v1/albums/2WzCFW3ywduzHLbPNMrzji", + "id": "2WzCFW3ywduzHLbPNMrzji", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d9adce154235c6c5a5f45807", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d9adce154235c6c5a5f45807", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d9adce154235c6c5a5f45807", + "height": 64, + "width": 64 + } + ], + "name": "Damn I Love Miami", + "release_date": "2025-09-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2WzCFW3ywduzHLbPNMrzji", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" + }, + "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", + "id": "7sfl4Xt5KmfyDs2T3SVSMK", + "name": "Lil Jon", + "type": "artist", + "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00004851e5de6d02e83f63e381f0932b", - "height": 64, - "width": 64 - } - ], - "name": "The Boatlift - Clean", - "release_date": "2007-11-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6ODOJvYpaQ3p0O6Agrlt4B", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7m9AYxqeFPagkaqlg6WE0J" - }, - "href": "https://api.spotify.com/v1/albums/7m9AYxqeFPagkaqlg6WE0J", - "id": "7m9AYxqeFPagkaqlg6WE0J", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734b6e3bb6e298b4477bf2f6f0", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/46FjPDtNFTZ0kn3PVLAcHF" + }, + "href": "https://api.spotify.com/v1/albums/46FjPDtNFTZ0kn3PVLAcHF", + "id": "46FjPDtNFTZ0kn3PVLAcHF", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273523d67dd370be63f64985e96", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02523d67dd370be63f64985e96", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851523d67dd370be63f64985e96", + "height": 64, + "width": 64 + } + ], + "name": "Hangover", + "release_date": "2025-08-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:46FjPDtNFTZ0kn3PVLAcHF", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5hdhHgpxyniooUiQVaPxQ0" + }, + "href": "https://api.spotify.com/v1/artists/5hdhHgpxyniooUiQVaPxQ0", + "id": "5hdhHgpxyniooUiQVaPxQ0", + "name": "Nio Garcia", + "type": "artist", + "uri": "spotify:artist:5hdhHgpxyniooUiQVaPxQ0" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e024b6e3bb6e298b4477bf2f6f0", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5Skfxe8hI3uMoQ5l3Wl0GS" + }, + "href": "https://api.spotify.com/v1/albums/5Skfxe8hI3uMoQ5l3Wl0GS", + "id": "5Skfxe8hI3uMoQ5l3Wl0GS", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2737be5ef3170160852d7de399a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e027be5ef3170160852d7de399a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048517be5ef3170160852d7de399a", + "height": 64, + "width": 64 + } + ], + "name": "Borracho Y Loco", + "release_date": "2025-08-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5Skfxe8hI3uMoQ5l3Wl0GS", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0jnsk9HBra6NMjO2oANoPY" + }, + "href": "https://api.spotify.com/v1/artists/0jnsk9HBra6NMjO2oANoPY", + "id": "0jnsk9HBra6NMjO2oANoPY", + "name": "Flo Rida", + "type": "artist", + "uri": "spotify:artist:0jnsk9HBra6NMjO2oANoPY" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048514b6e3bb6e298b4477bf2f6f0", - "height": 64, - "width": 64 - } - ], - "name": "The Boatlift", - "release_date": "2007-11-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7m9AYxqeFPagkaqlg6WE0J", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 21, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/69bXbGpsjbLtygqiiaXIqf" - }, - "href": "https://api.spotify.com/v1/albums/69bXbGpsjbLtygqiiaXIqf", - "id": "69bXbGpsjbLtygqiiaXIqf", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27363f27725465f14449c8258cb", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3EIHFD7cnGod28Kg61IfEB" + }, + "href": "https://api.spotify.com/v1/albums/3EIHFD7cnGod28Kg61IfEB", + "id": "3EIHFD7cnGod28Kg61IfEB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27305d2f75cc2f039183c14bcdf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0205d2f75cc2f039183c14bcdf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485105d2f75cc2f039183c14bcdf", + "height": 64, + "width": 64 + } + ], + "name": "We Will Rock You (2025 FIFA Club World Cup Theme Song) feat. Pitbull x RedOne", + "release_date": "2025-06-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3EIHFD7cnGod28Kg61IfEB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5C01hDqpEmrmDfUhX9YWsH" + }, + "href": "https://api.spotify.com/v1/artists/5C01hDqpEmrmDfUhX9YWsH", + "id": "5C01hDqpEmrmDfUhX9YWsH", + "name": "FIFA Sound", + "type": "artist", + "uri": "spotify:artist:5C01hDqpEmrmDfUhX9YWsH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6O9WquDfQTxGRZqZUXVEQx" + }, + "href": "https://api.spotify.com/v1/artists/6O9WquDfQTxGRZqZUXVEQx", + "id": "6O9WquDfQTxGRZqZUXVEQx", + "name": "RedOne", + "type": "artist", + "uri": "spotify:artist:6O9WquDfQTxGRZqZUXVEQx" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e0263f27725465f14449c8258cb", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5VaS19t97GVYwJZWi71BDi" + }, + "href": "https://api.spotify.com/v1/albums/5VaS19t97GVYwJZWi71BDi", + "id": "5VaS19t97GVYwJZWi71BDi", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736142c9ff5c9347c67be7cf88", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026142c9ff5c9347c67be7cf88", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516142c9ff5c9347c67be7cf88", + "height": 64, + "width": 64 + } + ], + "name": "Soy As\u00ed", + "release_date": "2025-06-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5VaS19t97GVYwJZWi71BDi", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/00CMSJdbf36zOzKB3z8JrR" + }, + "href": "https://api.spotify.com/v1/artists/00CMSJdbf36zOzKB3z8JrR", + "id": "00CMSJdbf36zOzKB3z8JrR", + "name": "Victor Cardenas", + "type": "artist", + "uri": "spotify:artist:00CMSJdbf36zOzKB3z8JrR" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d0000485163f27725465f14449c8258cb", - "height": 64, - "width": 64 - } - ], - "name": "El Mariel - Clean", - "release_date": "2006-10-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:69bXbGpsjbLtygqiiaXIqf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 21, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7rOcmdW8dWxlScy6AUgjI8" - }, - "href": "https://api.spotify.com/v1/albums/7rOcmdW8dWxlScy6AUgjI8", - "id": "7rOcmdW8dWxlScy6AUgjI8", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731b05e8f15f93dd1247e90c49", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0INLo9d20pUVNHOX1x2X4Q" + }, + "href": "https://api.spotify.com/v1/albums/0INLo9d20pUVNHOX1x2X4Q", + "id": "0INLo9d20pUVNHOX1x2X4Q", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d76e202fccbb3a19727ec34a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d76e202fccbb3a19727ec34a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d76e202fccbb3a19727ec34a", + "height": 64, + "width": 64 + } + ], + "name": "No Te Hagas", + "release_date": "2025-05-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0INLo9d20pUVNHOX1x2X4Q", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" + }, + "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", + "id": "7iJrDbKM5fEkGdm5kpjFzS", + "name": "Sensato", + "type": "artist", + "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e021b05e8f15f93dd1247e90c49", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 4, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5tjFV3KmhkpTpRTnv1I8Wu" + }, + "href": "https://api.spotify.com/v1/albums/5tjFV3KmhkpTpRTnv1I8Wu", + "id": "5tjFV3KmhkpTpRTnv1I8Wu", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f8dd5532fe1387b2ad40f423", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f8dd5532fe1387b2ad40f423", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f8dd5532fe1387b2ad40f423", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never", + "release_date": "2025-03-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5tjFV3KmhkpTpRTnv1I8Wu", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048511b05e8f15f93dd1247e90c49", - "height": 64, - "width": 64 - } - ], - "name": "El Mariel", - "release_date": "2006-10-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7rOcmdW8dWxlScy6AUgjI8", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 13, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0gayfOCt1DJX4j8MOhv7we" - }, - "href": "https://api.spotify.com/v1/albums/0gayfOCt1DJX4j8MOhv7we", - "id": "0gayfOCt1DJX4j8MOhv7we", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731357b1be0bd99e8c01e8acb7", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0f5Fhl4ZgbGtWwtxGofKqa" + }, + "href": "https://api.spotify.com/v1/albums/0f5Fhl4ZgbGtWwtxGofKqa", + "id": "0f5Fhl4ZgbGtWwtxGofKqa", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273deb06c010f4275b0002c7b7e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02deb06c010f4275b0002c7b7e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851deb06c010f4275b0002c7b7e", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never (TropKillaz Remix)", + "release_date": "2025-03-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0f5Fhl4ZgbGtWwtxGofKqa", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5bzWtCkjIAMgN93gLt56SO" + }, + "href": "https://api.spotify.com/v1/artists/5bzWtCkjIAMgN93gLt56SO", + "id": "5bzWtCkjIAMgN93gLt56SO", + "name": "Tropkillaz", + "type": "artist", + "uri": "spotify:artist:5bzWtCkjIAMgN93gLt56SO" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e021357b1be0bd99e8c01e8acb7", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7wI8TpkCWRTwmnzZNjUDTj" + }, + "href": "https://api.spotify.com/v1/albums/7wI8TpkCWRTwmnzZNjUDTj", + "id": "7wI8TpkCWRTwmnzZNjUDTj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d44c7246f1d59d87462644b0", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d44c7246f1d59d87462644b0", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d44c7246f1d59d87462644b0", + "height": 64, + "width": 64 + } + ], + "name": "Now or Never (Muzik Junkies & AROCK Remix)", + "release_date": "2025-03-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7wI8TpkCWRTwmnzZNjUDTj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/34DQTRbIYPLSGU2SkOTEja" + }, + "href": "https://api.spotify.com/v1/artists/34DQTRbIYPLSGU2SkOTEja", + "id": "34DQTRbIYPLSGU2SkOTEja", + "name": "Muzik Junkies", + "type": "artist", + "uri": "spotify:artist:34DQTRbIYPLSGU2SkOTEja" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d000048511357b1be0bd99e8c01e8acb7", - "height": 64, - "width": 64 - } - ], - "name": "Money Is Still A Major Issue", - "release_date": "2005", - "release_date_precision": "year", - "type": "album", - "uri": "spotify:album:0gayfOCt1DJX4j8MOhv7we", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 16, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/76N6imyjQ9h5p2NzakHT32" - }, - "href": "https://api.spotify.com/v1/albums/76N6imyjQ9h5p2NzakHT32", - "id": "76N6imyjQ9h5p2NzakHT32", - "images": [ + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3fZxc2BwHIv2I72Txd9yGq" + }, + "href": "https://api.spotify.com/v1/albums/3fZxc2BwHIv2I72Txd9yGq", + "id": "3fZxc2BwHIv2I72Txd9yGq", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f5b012d83be9076b7b3c8f5c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f5b012d83be9076b7b3c8f5c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f5b012d83be9076b7b3c8f5c", + "height": 64, + "width": 64 + } + ], + "name": "Now or Never (F.A.S.T x & DJ Triple XL Remix)", + "release_date": "2025-03-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3fZxc2BwHIv2I72Txd9yGq", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VyCiFrplEiSgKvimCvGy0" + }, + "href": "https://api.spotify.com/v1/artists/4VyCiFrplEiSgKvimCvGy0", + "id": "4VyCiFrplEiSgKvimCvGy0", + "name": "DJ Triple XL", + "type": "artist", + "uri": "spotify:artist:4VyCiFrplEiSgKvimCvGy0" + } + ], + "album_group": "single" + }, { - "url": "https://i.scdn.co/image/ab67616d0000b27300650b5e6be3af579ae18e7c", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2K3vXTZjcuWR8H8LgvJ8Yk" + }, + "href": "https://api.spotify.com/v1/albums/2K3vXTZjcuWR8H8LgvJ8Yk", + "id": "2K3vXTZjcuWR8H8LgvJ8Yk", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2737e25dc727b5fda6731ea49d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e027e25dc727b5fda6731ea49d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048517e25dc727b5fda6731ea49d2", + "height": 64, + "width": 64 + } + ], + "name": "Tamo Bien", + "release_date": "2025-03-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2K3vXTZjcuWR8H8LgvJ8Yk", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" + }, + "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", + "id": "7qG3b048QCHVRO5Pv1T5lw", + "name": "Enrique Iglesias", + "type": "artist", + "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e0200650b5e6be3af579ae18e7c", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/51dVwp68x0e1GZNOgE7hyK" + }, + "href": "https://api.spotify.com/v1/albums/51dVwp68x0e1GZNOgE7hyK", + "id": "51dVwp68x0e1GZNOgE7hyK", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732a8026edcb4e2e1d87418a73", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022a8026edcb4e2e1d87418a73", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512a8026edcb4e2e1d87418a73", + "height": 64, + "width": 64 + } + ], + "name": "I'll Do It (feat. Pitbull)", + "release_date": "2025-02-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:51dVwp68x0e1GZNOgE7hyK", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5XLBtYR2VrpkqXdlvNnFHG" + }, + "href": "https://api.spotify.com/v1/artists/5XLBtYR2VrpkqXdlvNnFHG", + "id": "5XLBtYR2VrpkqXdlvNnFHG", + "name": "Heidi Montag", + "type": "artist", + "uri": "spotify:artist:5XLBtYR2VrpkqXdlvNnFHG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d0000485100650b5e6be3af579ae18e7c", - "height": 64, - "width": 64 - } - ], - "name": "M.I.A.M.I.", - "release_date": "2004-08-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:76N6imyjQ9h5p2NzakHT32", - "artists": [ + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4ObwiIpULEzwOPrtLSd7xA" + }, + "href": "https://api.spotify.com/v1/albums/4ObwiIpULEzwOPrtLSd7xA", + "id": "4ObwiIpULEzwOPrtLSd7xA", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27328f391d916a9abe7ddc8800e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0228f391d916a9abe7ddc8800e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485128f391d916a9abe7ddc8800e", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never", + "release_date": "2024-11-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4ObwiIpULEzwOPrtLSd7xA", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + } + ], + "album_group": "single" + }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "single", - "total_tracks": 5, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3ZzkxHr39xEJvbl7UWKcPZ" - }, - "href": "https://api.spotify.com/v1/albums/3ZzkxHr39xEJvbl7UWKcPZ", - "id": "3ZzkxHr39xEJvbl7UWKcPZ", - "images": [ + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5s2pXXHew5LPbEU8DgOYHg" + }, + "href": "https://api.spotify.com/v1/albums/5s2pXXHew5LPbEU8DgOYHg", + "id": "5s2pXXHew5LPbEU8DgOYHg", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736b232c8a534909a023259dea", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026b232c8a534909a023259dea", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516b232c8a534909a023259dea", + "height": 64, + "width": 64 + } + ], + "name": "MR. MOONDIAL", + "release_date": "2024-11-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5s2pXXHew5LPbEU8DgOYHg", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52iwsT98xCoGgiGntTiR7K" + }, + "href": "https://api.spotify.com/v1/artists/52iwsT98xCoGgiGntTiR7K", + "id": "52iwsT98xCoGgiGntTiR7K", + "name": "Quevedo", + "type": "artist", + "uri": "spotify:artist:52iwsT98xCoGgiGntTiR7K" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, { - "url": "https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a", - "height": 640, - "width": 640 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7A0AEPu9sqHZpSIDI1zLEM" + }, + "href": "https://api.spotify.com/v1/albums/7A0AEPu9sqHZpSIDI1zLEM", + "id": "7A0AEPu9sqHZpSIDI1zLEM", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273b64f4ac4a25a5ce77ba13b04", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02b64f4ac4a25a5ce77ba13b04", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851b64f4ac4a25a5ce77ba13b04", + "height": 64, + "width": 64 + } + ], + "name": "Bhool Bhulaiyaa 3 - Title Track (feat. Pitbull)", + "release_date": "2024-10-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7A0AEPu9sqHZpSIDI1zLEM", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2FKWNmZWDBZR4dE5KX4plR" + }, + "href": "https://api.spotify.com/v1/artists/2FKWNmZWDBZR4dE5KX4plR", + "id": "2FKWNmZWDBZR4dE5KX4plR", + "name": "Diljit Dosanjh", + "type": "artist", + "uri": "spotify:artist:2FKWNmZWDBZR4dE5KX4plR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4f7KfxeHq9BiylGmyXepGt" + }, + "href": "https://api.spotify.com/v1/artists/4f7KfxeHq9BiylGmyXepGt", + "id": "4f7KfxeHq9BiylGmyXepGt", + "name": "Tanishk Bagchi", + "type": "artist", + "uri": "spotify:artist:4f7KfxeHq9BiylGmyXepGt" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a", - "height": 300, - "width": 300 + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2LLRQs8JFjFm9RkkT9Hmqf" + }, + "href": "https://api.spotify.com/v1/albums/2LLRQs8JFjFm9RkkT9Hmqf", + "id": "2LLRQs8JFjFm9RkkT9Hmqf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2730d2057719283f5bc9af31a31", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e020d2057719283f5bc9af31a31", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048510d2057719283f5bc9af31a31", + "height": 64, + "width": 64 + } + ], + "name": "OMG (Remix)", + "release_date": "2024-10-11", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2LLRQs8JFjFm9RkkT9Hmqf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4WzBqbc7fxl2y8XrznMSqf" + }, + "href": "https://api.spotify.com/v1/artists/4WzBqbc7fxl2y8XrznMSqf", + "id": "4WzBqbc7fxl2y8XrznMSqf", + "name": "Candelita", + "type": "artist", + "uri": "spotify:artist:4WzBqbc7fxl2y8XrznMSqf" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3OcvS8PzSGYMBvLdzY6g3e" + }, + "href": "https://api.spotify.com/v1/artists/3OcvS8PzSGYMBvLdzY6g3e", + "id": "3OcvS8PzSGYMBvLdzY6g3e", + "name": "Silvestre Dangond", + "type": "artist", + "uri": "spotify:artist:3OcvS8PzSGYMBvLdzY6g3e" + } + ], + "album_group": "single" }, { - "url": "https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a", - "height": 64, - "width": 64 - } - ], - "name": "2 The Moon (The Remixes)", - "release_date": "2024-09-20", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3ZzkxHr39xEJvbl7UWKcPZ", - "artists": [ + "album_type": "single", + "total_tracks": 5, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZzkxHr39xEJvbl7UWKcPZ" + }, + "href": "https://api.spotify.com/v1/albums/3ZzkxHr39xEJvbl7UWKcPZ", + "id": "3ZzkxHr39xEJvbl7UWKcPZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a", + "height": 64, + "width": 64 + } + ], + "name": "2 The Moon (The Remixes)", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3ZzkxHr39xEJvbl7UWKcPZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" + }, + "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", + "id": "21E3waRsmPlU7jZsS13rcj", + "name": "Ne-Yo", + "type": "artist", + "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "album_group": "single" + }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + "album_type": "single", + "total_tracks": 3, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0kwED9Hwu9K0d9NLBBsAWd" + }, + "href": "https://api.spotify.com/v1/albums/0kwED9Hwu9K0d9NLBBsAWd", + "id": "0kwED9Hwu9K0d9NLBBsAWd", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c97e191da13e43091c283880", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c97e191da13e43091c283880", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c97e191da13e43091c283880", + "height": 64, + "width": 64 + } + ], + "name": "2 The Moon (The Remixes)", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0kwED9Hwu9K0d9NLBBsAWd", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" + }, + "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", + "id": "21E3waRsmPlU7jZsS13rcj", + "name": "Ne-Yo", + "type": "artist", + "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "album_group": "single" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" - }, - "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", - "id": "21E3waRsmPlU7jZsS13rcj", - "name": "Ne-Yo", - "type": "artist", - "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" + "album_type": "single", + "total_tracks": 2, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0EIZb3DTMZlZt2FLndqpSY" + }, + "href": "https://api.spotify.com/v1/albums/0EIZb3DTMZlZt2FLndqpSY", + "id": "0EIZb3DTMZlZt2FLndqpSY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734d0780b70648eace7cbba259", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024d0780b70648eace7cbba259", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514d0780b70648eace7cbba259", + "height": 64, + "width": 64 + } + ], + "name": "Tonight (D.I.Y.A) [Pitbull Remix]", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0EIZb3DTMZlZt2FLndqpSY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4Q6nIcaBED8qUel8bBx6Cr" + }, + "href": "https://api.spotify.com/v1/artists/4Q6nIcaBED8qUel8bBx6Cr", + "id": "4Q6nIcaBED8qUel8bBx6Cr", + "name": "Jax Jones", + "type": "artist", + "uri": "spotify:artist:4Q6nIcaBED8qUel8bBx6Cr" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07YZf4WDAMNwqr4jfgOZ8y" + }, + "href": "https://api.spotify.com/v1/artists/07YZf4WDAMNwqr4jfgOZ8y", + "id": "07YZf4WDAMNwqr4jfgOZ8y", + "name": "Jason Derulo", + "type": "artist", + "uri": "spotify:artist:07YZf4WDAMNwqr4jfgOZ8y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0Iauzjo1cjGE9cx4odkKHb" + }, + "href": "https://api.spotify.com/v1/albums/0Iauzjo1cjGE9cx4odkKHb", + "id": "0Iauzjo1cjGE9cx4odkKHb", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273786fd1d7ac19c1aa5591522f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02786fd1d7ac19c1aa5591522f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851786fd1d7ac19c1aa5591522f", + "height": 64, + "width": 64 + } + ], + "name": "Chi Chi Bon Bon (Remix)", + "release_date": "2024-08-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0Iauzjo1cjGE9cx4odkKHb", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/37G8DfNgO4mQ3PKh5droSo" + }, + "href": "https://api.spotify.com/v1/artists/37G8DfNgO4mQ3PKh5droSo", + "id": "37G8DfNgO4mQ3PKh5droSo", + "name": "Osmani Garcia \"La Voz\"", + "type": "artist", + "uri": "spotify:artist:37G8DfNgO4mQ3PKh5droSo" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" + }, + "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", + "id": "1yX62RHdYysNcIrO33WQxJ", + "name": "Dani Flow", + "type": "artist", + "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" + } + ], + "album_group": "single" } - ], - "album_group": "single" - } - ] + ] } diff --git a/tests/fixtures/audio_features.json b/tests/fixtures/audio_features.json index 1263d23..9a1b952 100644 --- a/tests/fixtures/audio_features.json +++ b/tests/fixtures/audio_features.json @@ -1,20 +1,20 @@ { - "danceability": 0.696, - "energy": 0.905, - "key": 2, - "loudness": -2.743, - "mode": 1, - "speechiness": 0.103, - "acousticness": 0.011, - "instrumentalness": 0.000905, - "liveness": 0.302, - "valence": 0.625, - "tempo": 114.944, - "type": "audio_features", - "id": "11dFghVXANMlKmJXsNCbNl", - "uri": "spotify:track:11dFghVXANMlKmJXsNCbNl", - "track_href": "https://api.spotify.com/v1/tracks/11dFghVXANMlKmJXsNCbNl", - "analysis_url": "https://api.spotify.com/v1/audio-analysis/11dFghVXANMlKmJXsNCbNl", - "duration_ms": 207960, - "time_signature": 4 + "danceability": 0.696, + "energy": 0.905, + "key": 2, + "loudness": -2.743, + "mode": 1, + "speechiness": 0.103, + "acousticness": 0.011, + "instrumentalness": 0.000905, + "liveness": 0.302, + "valence": 0.625, + "tempo": 114.944, + "type": "audio_features", + "id": "11dFghVXANMlKmJXsNCbNl", + "uri": "spotify:track:11dFghVXANMlKmJXsNCbNl", + "track_href": "https://api.spotify.com/v1/tracks/11dFghVXANMlKmJXsNCbNl", + "analysis_url": "https://api.spotify.com/v1/audio-analysis/11dFghVXANMlKmJXsNCbNl", + "duration_ms": 207960, + "time_signature": 4 } diff --git a/tests/fixtures/audiobook.json b/tests/fixtures/audiobook.json index 38a4e80..3dce696 100644 --- a/tests/fixtures/audiobook.json +++ b/tests/fixtures/audiobook.json @@ -1,11472 +1,4788 @@ { - "authors": [ - { - "name": "Anya Niewierra" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "chapters": { - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV/chapters?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "items": [ - { - "id": "3NW4BmIOG0qzQZgtLgsydR", - "description": "", - "chapter_number": 0, - "duration_ms": 249652, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 1", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 156000 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/chapters/3NW4BmIOG0qzQZgtLgsydR" - }, - { - "id": "49TZsjpPPA4jEuAJ8bJbGf", - "description": "", - "chapter_number": 1, - "duration_ms": 565942, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 2", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:49TZsjpPPA4jEuAJ8bJbGf", - "external_urls": { - "spotify": "https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf" - }, - "href": "https://api.spotify.com/v1/chapters/49TZsjpPPA4jEuAJ8bJbGf" - }, - { - "id": "0rPuWNlTx3j4E2NJxat2rP", - "description": "", - "chapter_number": 2, - "duration_ms": 974132, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 3", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0rPuWNlTx3j4E2NJxat2rP", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP" - }, - "href": "https://api.spotify.com/v1/chapters/0rPuWNlTx3j4E2NJxat2rP" - }, - { - "id": "2E1Wk1N4bigyTVSg1tI0No", - "description": "", - "chapter_number": 3, - "duration_ms": 485590, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 4", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2E1Wk1N4bigyTVSg1tI0No", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No" - }, - "href": "https://api.spotify.com/v1/chapters/2E1Wk1N4bigyTVSg1tI0No" - }, - { - "id": "6tK38pBz4ZzcdeVlIRkRUM", - "description": "", - "chapter_number": 4, - "duration_ms": 523466, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 5", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6tK38pBz4ZzcdeVlIRkRUM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM" - }, - "href": "https://api.spotify.com/v1/chapters/6tK38pBz4ZzcdeVlIRkRUM" - }, - { - "id": "4qQ7jT2GhcIat2pQFFxQA9", - "description": "", - "chapter_number": 5, - "duration_ms": 1022066, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 6", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4qQ7jT2GhcIat2pQFFxQA9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9" - }, - "href": "https://api.spotify.com/v1/chapters/4qQ7jT2GhcIat2pQFFxQA9" - }, - { - "id": "0QNX88urT0YDlKxp9UWOWX", - "description": "", - "chapter_number": 6, - "duration_ms": 1602481, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 7", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0QNX88urT0YDlKxp9UWOWX", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX" - }, - "href": "https://api.spotify.com/v1/chapters/0QNX88urT0YDlKxp9UWOWX" - }, - { - "id": "2KgZ8UnDbdKFUHflP9AotL", - "description": "", - "chapter_number": 7, - "duration_ms": 1412075, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 8", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2KgZ8UnDbdKFUHflP9AotL", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL" - }, - "href": "https://api.spotify.com/v1/chapters/2KgZ8UnDbdKFUHflP9AotL" - }, - { - "id": "4L1Y0jWKgrGfMB0HptLkQB", - "description": "", - "chapter_number": 8, - "duration_ms": 782497, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 9", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4L1Y0jWKgrGfMB0HptLkQB", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB" - }, - "href": "https://api.spotify.com/v1/chapters/4L1Y0jWKgrGfMB0HptLkQB" - }, - { - "id": "0b2UnulIuw17qtiyTb2AwM", - "description": "", - "chapter_number": 9, - "duration_ms": 670223, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 10", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0b2UnulIuw17qtiyTb2AwM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM" - }, - "href": "https://api.spotify.com/v1/chapters/0b2UnulIuw17qtiyTb2AwM" - }, - { - "id": "6LrdmEqBMm6Y3HG9DPkZGc", - "description": "", - "chapter_number": 10, - "duration_ms": 1212630, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 11", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc" - }, - "href": "https://api.spotify.com/v1/chapters/6LrdmEqBMm6Y3HG9DPkZGc" - }, - { - "id": "3XmAaccmDwQaCc63PlbSHu", - "description": "", - "chapter_number": 11, - "duration_ms": 952267, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 12", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3XmAaccmDwQaCc63PlbSHu", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu" - }, - "href": "https://api.spotify.com/v1/chapters/3XmAaccmDwQaCc63PlbSHu" - }, - { - "id": "09SfB2ZdMpJ0Horyvgb7uz", - "description": "", - "chapter_number": 12, - "duration_ms": 685061, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 13", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:09SfB2ZdMpJ0Horyvgb7uz", - "external_urls": { - "spotify": "https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz" - }, - "href": "https://api.spotify.com/v1/chapters/09SfB2ZdMpJ0Horyvgb7uz" - }, - { - "id": "2XA4dwf0ToQ9iVySpHTZ4D", - "description": "", - "chapter_number": 13, - "duration_ms": 986148, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 14", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D" - }, - "href": "https://api.spotify.com/v1/chapters/2XA4dwf0ToQ9iVySpHTZ4D" - }, - { - "id": "0HdNqeQP9PF97GlIUKT2e6", - "description": "", - "chapter_number": 14, - "duration_ms": 347689, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 15", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0HdNqeQP9PF97GlIUKT2e6", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6" - }, - "href": "https://api.spotify.com/v1/chapters/0HdNqeQP9PF97GlIUKT2e6" - }, - { - "id": "4EgGjPK9EyWvuS4pb0JfVn", - "description": "", - "chapter_number": 15, - "duration_ms": 249678, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 16", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4EgGjPK9EyWvuS4pb0JfVn", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn" - }, - "href": "https://api.spotify.com/v1/chapters/4EgGjPK9EyWvuS4pb0JfVn" - }, - { - "id": "0QW159PFdnfSo4jwofmh94", - "description": "", - "chapter_number": 16, - "duration_ms": 793338, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 17", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0QW159PFdnfSo4jwofmh94", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94" - }, - "href": "https://api.spotify.com/v1/chapters/0QW159PFdnfSo4jwofmh94" - }, - { - "id": "6dhG5dwyxkMJ3o6c7VyMa9", - "description": "", - "chapter_number": 17, - "duration_ms": 774870, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 18", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9" - }, - "href": "https://api.spotify.com/v1/chapters/6dhG5dwyxkMJ3o6c7VyMa9" - }, - { - "id": "7LQHbg3sUq9hcWLXFjtor9", - "description": "", - "chapter_number": 18, - "duration_ms": 524800, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 19", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7LQHbg3sUq9hcWLXFjtor9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9" - }, - "href": "https://api.spotify.com/v1/chapters/7LQHbg3sUq9hcWLXFjtor9" - }, - { - "id": "6M0DmXvWGbIktNcxruSPaC", - "description": "", - "chapter_number": 19, - "duration_ms": 777769, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 20", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6M0DmXvWGbIktNcxruSPaC", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC" - }, - "href": "https://api.spotify.com/v1/chapters/6M0DmXvWGbIktNcxruSPaC" - }, - { - "id": "3Jffij0q1mpI9yBut0Qk9s", - "description": "", - "chapter_number": 20, - "duration_ms": 1149648, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 21", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3Jffij0q1mpI9yBut0Qk9s", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3Jffij0q1mpI9yBut0Qk9s" - }, - "href": "https://api.spotify.com/v1/chapters/3Jffij0q1mpI9yBut0Qk9s" - }, - { - "id": "0oZjvmF7NJzNtNyyiciJqB", - "description": "", - "chapter_number": 21, - "duration_ms": 433815, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 22", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0oZjvmF7NJzNtNyyiciJqB", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0oZjvmF7NJzNtNyyiciJqB" - }, - "href": "https://api.spotify.com/v1/chapters/0oZjvmF7NJzNtNyyiciJqB" - }, - { - "id": "1r9bh8GhVPKvzP0sH5y43y", - "description": "", - "chapter_number": 22, - "duration_ms": 1846883, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 23", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1r9bh8GhVPKvzP0sH5y43y", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1r9bh8GhVPKvzP0sH5y43y" - }, - "href": "https://api.spotify.com/v1/chapters/1r9bh8GhVPKvzP0sH5y43y" - }, - { - "id": "1r4Am9RdfpXjOmNVhLe1RB", - "description": "", - "chapter_number": 23, - "duration_ms": 1928855, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 24", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1r4Am9RdfpXjOmNVhLe1RB", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1r4Am9RdfpXjOmNVhLe1RB" - }, - "href": "https://api.spotify.com/v1/chapters/1r4Am9RdfpXjOmNVhLe1RB" - }, - { - "id": "2MB3hYOuX94ualcaTo1IAQ", - "description": "", - "chapter_number": 24, - "duration_ms": 835552, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 25", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2MB3hYOuX94ualcaTo1IAQ", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2MB3hYOuX94ualcaTo1IAQ" - }, - "href": "https://api.spotify.com/v1/chapters/2MB3hYOuX94ualcaTo1IAQ" - }, - { - "id": "28S5Yt9f1GMK0C371FxaQ0", - "description": "", - "chapter_number": 25, - "duration_ms": 1211637, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 26", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:28S5Yt9f1GMK0C371FxaQ0", - "external_urls": { - "spotify": "https://open.spotify.com/episode/28S5Yt9f1GMK0C371FxaQ0" - }, - "href": "https://api.spotify.com/v1/chapters/28S5Yt9f1GMK0C371FxaQ0" - }, - { - "id": "5EuXfpQW2dyfvNKGQmfafO", - "description": "", - "chapter_number": 26, - "duration_ms": 608548, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 27", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5EuXfpQW2dyfvNKGQmfafO", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5EuXfpQW2dyfvNKGQmfafO" - }, - "href": "https://api.spotify.com/v1/chapters/5EuXfpQW2dyfvNKGQmfafO" - }, - { - "id": "3I74lzJe404dLgzS4JSSS1", - "description": "", - "chapter_number": 27, - "duration_ms": 1744848, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 28", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3I74lzJe404dLgzS4JSSS1", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3I74lzJe404dLgzS4JSSS1" - }, - "href": "https://api.spotify.com/v1/chapters/3I74lzJe404dLgzS4JSSS1" - }, - { - "id": "5qol4EI2NnldwPQtAY5kFM", - "description": "", - "chapter_number": 28, - "duration_ms": 986253, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 29", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5qol4EI2NnldwPQtAY5kFM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5qol4EI2NnldwPQtAY5kFM" - }, - "href": "https://api.spotify.com/v1/chapters/5qol4EI2NnldwPQtAY5kFM" - }, - { - "id": "5bsGB6123U4d27TZ4gRTxi", - "description": "", - "chapter_number": 29, - "duration_ms": 2147735, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 30", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5bsGB6123U4d27TZ4gRTxi", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5bsGB6123U4d27TZ4gRTxi" - }, - "href": "https://api.spotify.com/v1/chapters/5bsGB6123U4d27TZ4gRTxi" - }, - { - "id": "07qlaV2Igv88BtBaS4fEdM", - "description": "", - "chapter_number": 30, - "duration_ms": 814080, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 31", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:07qlaV2Igv88BtBaS4fEdM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/07qlaV2Igv88BtBaS4fEdM" - }, - "href": "https://api.spotify.com/v1/chapters/07qlaV2Igv88BtBaS4fEdM" - }, - { - "id": "3c4LRz6BbLuTaRGD9pEEDh", - "description": "", - "chapter_number": 31, - "duration_ms": 2349662, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 32", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3c4LRz6BbLuTaRGD9pEEDh", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3c4LRz6BbLuTaRGD9pEEDh" - }, - "href": "https://api.spotify.com/v1/chapters/3c4LRz6BbLuTaRGD9pEEDh" - }, - { - "id": "7Fl8XJc3ruNHa9GtJqL0Qn", - "description": "", - "chapter_number": 32, - "duration_ms": 509257, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 33", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7Fl8XJc3ruNHa9GtJqL0Qn", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7Fl8XJc3ruNHa9GtJqL0Qn" - }, - "href": "https://api.spotify.com/v1/chapters/7Fl8XJc3ruNHa9GtJqL0Qn" - }, - { - "id": "1XatZyhYldaab2QcGQS9Pb", - "description": "", - "chapter_number": 33, - "duration_ms": 1821910, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 34", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1XatZyhYldaab2QcGQS9Pb", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1XatZyhYldaab2QcGQS9Pb" - }, - "href": "https://api.spotify.com/v1/chapters/1XatZyhYldaab2QcGQS9Pb" - }, - { - "id": "0JvhJpMBLt7AUVaG6uIbde", - "description": "", - "chapter_number": 34, - "duration_ms": 382955, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 35", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0JvhJpMBLt7AUVaG6uIbde", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0JvhJpMBLt7AUVaG6uIbde" - }, - "href": "https://api.spotify.com/v1/chapters/0JvhJpMBLt7AUVaG6uIbde" - }, - { - "id": "5vCof4NdStWGCuV9mRQTWJ", - "description": "", - "chapter_number": 35, - "duration_ms": 647836, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 36", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5vCof4NdStWGCuV9mRQTWJ", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5vCof4NdStWGCuV9mRQTWJ" - }, - "href": "https://api.spotify.com/v1/chapters/5vCof4NdStWGCuV9mRQTWJ" - }, - { - "id": "1pB66z22q8Hq1PuD6uqqBt", - "description": "", - "chapter_number": 36, - "duration_ms": 561005, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 37", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1pB66z22q8Hq1PuD6uqqBt", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1pB66z22q8Hq1PuD6uqqBt" - }, - "href": "https://api.spotify.com/v1/chapters/1pB66z22q8Hq1PuD6uqqBt" - }, - { - "id": "6dI3NSMs9U2JUzliQGdgK7", - "description": "", - "chapter_number": 37, - "duration_ms": 1134158, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 38", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6dI3NSMs9U2JUzliQGdgK7", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6dI3NSMs9U2JUzliQGdgK7" - }, - "href": "https://api.spotify.com/v1/chapters/6dI3NSMs9U2JUzliQGdgK7" - }, - { - "id": "6b1dF8WD0U6rA3ktJqfJp2", - "description": "", - "chapter_number": 38, - "duration_ms": 432195, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 39", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6b1dF8WD0U6rA3ktJqfJp2", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6b1dF8WD0U6rA3ktJqfJp2" - }, - "href": "https://api.spotify.com/v1/chapters/6b1dF8WD0U6rA3ktJqfJp2" - }, - { - "id": "73nqrNdGzTsgR9svw1SA1G", - "description": "", - "chapter_number": 39, - "duration_ms": 648724, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 40", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:73nqrNdGzTsgR9svw1SA1G", - "external_urls": { - "spotify": "https://open.spotify.com/episode/73nqrNdGzTsgR9svw1SA1G" - }, - "href": "https://api.spotify.com/v1/chapters/73nqrNdGzTsgR9svw1SA1G" - }, - { - "id": "45jG2BMCnRZBVEOsw1BswM", - "description": "", - "chapter_number": 40, - "duration_ms": 901146, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 41", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:45jG2BMCnRZBVEOsw1BswM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/45jG2BMCnRZBVEOsw1BswM" - }, - "href": "https://api.spotify.com/v1/chapters/45jG2BMCnRZBVEOsw1BswM" - }, - { - "id": "7CMZE1TeMleiK3PwEVCHVR", - "description": "", - "chapter_number": 41, - "duration_ms": 581877, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 42", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7CMZE1TeMleiK3PwEVCHVR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7CMZE1TeMleiK3PwEVCHVR" - }, - "href": "https://api.spotify.com/v1/chapters/7CMZE1TeMleiK3PwEVCHVR" - }, - { - "id": "4byBCvjAcXe7aNIxmtMcn3", - "description": "", - "chapter_number": 42, - "duration_ms": 2124068, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 43", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4byBCvjAcXe7aNIxmtMcn3", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4byBCvjAcXe7aNIxmtMcn3" - }, - "href": "https://api.spotify.com/v1/chapters/4byBCvjAcXe7aNIxmtMcn3" - }, - { - "id": "62ORogw9Znrj8lG7emt33z", - "description": "", - "chapter_number": 43, - "duration_ms": 1246093, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 44", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:62ORogw9Znrj8lG7emt33z", - "external_urls": { - "spotify": "https://open.spotify.com/episode/62ORogw9Znrj8lG7emt33z" - }, - "href": "https://api.spotify.com/v1/chapters/62ORogw9Znrj8lG7emt33z" - }, - { - "id": "2zVVcf09xv6zuQrVf4mnkx", - "description": "", - "chapter_number": 44, - "duration_ms": 808228, - "images": [ - { + "authors": [ + { + "name": "J.K. Rowling" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "chapters": { + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?offset=0&limit=50", + "items": [ + { + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + }, + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" + }, + { + "id": "3XcHJLv9NVV3lI4ECSNGcl", + "description": "", + "chapter_number": 1, + "duration_ms": 1901683, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 1: The Boy Who Lived", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" + }, + "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" + }, + { + "id": "6yXRrpO4DYkPEphS1wApK6", + "description": "", + "chapter_number": 2, + "duration_ms": 1329841, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 2: The Vanishing Glass", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", + "external_urls": { + "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" + }, + "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" + }, + { + "id": "10fQLdhdGVbBYXvlXRVIPa", + "description": "", + "chapter_number": 3, + "duration_ms": 1517244, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 3: The Letters from No One", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", + "external_urls": { + "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" + }, + "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" + }, + { + "id": "46BVQZ5N2HbrtvO7EesYUY", + "description": "", + "chapter_number": 4, + "duration_ms": 1470066, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 4: The Keeper of the Keys", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", + "external_urls": { + "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" + }, + "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" + }, + { + "id": "4G2TaqHalYmLiL7fvJC75u", + "description": "", + "chapter_number": 5, + "duration_ms": 2643879, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 5: Diagon Alley", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" + }, + "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" + }, + { + "id": "2F4ricTDPdDT2h2m0mhUbt", + "description": "", + "chapter_number": 6, + "duration_ms": 2286524, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" + }, + "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" + }, + { + "id": "2nCrEIRgNfQpR9BUryaiyr", + "description": "", + "chapter_number": 7, + "duration_ms": 1773949, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 7: The Sorting Hat", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" + }, + "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" + }, + { + "id": "4jVigNVaZVhuAOXlf8TDNX", + "description": "", + "chapter_number": 8, + "duration_ms": 1125799, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 8: The Potions Master", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" + }, + "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" + }, + { + "id": "0IHdKlFFno5yhCdmRSip9g", + "description": "", + "chapter_number": 9, + "duration_ms": 1841528, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 9: The Midnight Duel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" + }, + "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" + }, + { + "id": "20kk3OD8mjGkpucTvqYa9K", + "description": "", + "chapter_number": 10, + "duration_ms": 1571735, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 10: Halloween", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", + "external_urls": { + "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" + }, + "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" + }, + { + "id": "7vG172nPGGr3ZXm4YdL1nx", + "description": "", + "chapter_number": 11, + "duration_ms": 1209887, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 11: Quidditch", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", + "external_urls": { + "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" + }, + "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" + }, + { + "id": "1yRfwSOp8Jy1GisI0JIhMK", + "description": "", + "chapter_number": 12, + "duration_ms": 2066155, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 12: The Mirror of Erised", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" + }, + "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" + }, + { + "id": "3BKzXnwHwemuVsJC2bSIYA", + "description": "", + "chapter_number": 13, + "duration_ms": 1219422, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 13: Nicolas Flamel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" + }, + "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" + }, + { + "id": "1wBkAOL29N9vkHTfvaACGv", + "description": "", + "chapter_number": 14, + "duration_ms": 1280000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 14: Norbert The Norwegian Ridgeback", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" + }, + "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" + }, + { + "id": "23cBJs22XGN3G7gA2EA0i1", + "description": "", + "chapter_number": 15, + "duration_ms": 2063306, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 15: The Forbidden Forest", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", + "external_urls": { + "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" + }, + "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" + }, + { + "id": "3K5mu1lHmrHC3CNPWV9r2A", + "description": "", + "chapter_number": 16, + "duration_ms": 2587167, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 16: Through the Trapdoor", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" + }, + "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" + }, + { + "id": "0V36QZwEj9VPrEiZF6AWoh", + "description": "", + "chapter_number": 17, + "duration_ms": 2327308, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 17: The Man with Two Faces", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" + }, + "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" + }, + { + "id": "04xYt1v4vGr7V9lJxl5xwL", + "description": "", + "chapter_number": 18, + "duration_ms": 95770, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Ending Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", + "external_urls": { + "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" + }, + "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" + }, + { + "id": "5q5hnqCbUbgulqlsrnWL7h", + "description": "", + "chapter_number": 19, + "duration_ms": 300000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Harry Potter and the Philosopher's Stone", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", + "external_urls": { + "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" + }, + "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" + } + ], + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20 + }, + "copyrights": [ + { + "text": "Pottermore Ltd. 1997", + "type": "C" + } + ], + "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" + }, + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "id": "6SJQ8VzM5PlDy11wMtcD6v", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 45", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "width": 640 }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2zVVcf09xv6zuQrVf4mnkx", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2zVVcf09xv6zuQrVf4mnkx" - }, - "href": "https://api.spotify.com/v1/chapters/2zVVcf09xv6zuQrVf4mnkx" - }, - { - "id": "1AOg0Ft76RiOITF8hp4cEC", - "description": "", - "chapter_number": 45, - "duration_ms": 741276, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { + { + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 46", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "width": 300 }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1AOg0Ft76RiOITF8hp4cEC", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1AOg0Ft76RiOITF8hp4cEC" - }, - "href": "https://api.spotify.com/v1/chapters/1AOg0Ft76RiOITF8hp4cEC" - }, - { - "id": "3NCNzeZsuSioUkpAWDTGha", - "description": "", - "chapter_number": 46, - "duration_ms": 315062, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { + { + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 47", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3NCNzeZsuSioUkpAWDTGha", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NCNzeZsuSioUkpAWDTGha" - }, - "href": "https://api.spotify.com/v1/chapters/3NCNzeZsuSioUkpAWDTGha" - }, - { - "id": "0580L8XcDYwI8ihms7R81U", - "description": "", - "chapter_number": 47, - "duration_ms": 320783, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 48", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0580L8XcDYwI8ihms7R81U", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0580L8XcDYwI8ihms7R81U" - }, - "href": "https://api.spotify.com/v1/chapters/0580L8XcDYwI8ihms7R81U" - }, - { - "id": "7u2OveukvhLXEcwX2mqhSP", - "description": "", - "chapter_number": 48, - "duration_ms": 227474, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "De nomade", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7u2OveukvhLXEcwX2mqhSP", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7u2OveukvhLXEcwX2mqhSP" - }, - "href": "https://api.spotify.com/v1/chapters/7u2OveukvhLXEcwX2mqhSP" - } + "width": 64 + } ], - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 49 - }, - "copyrights": [], - "description": "Author(s): Anya Niewierra\nNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

\n
\n

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
\nHeleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
\nRob Cobben, cultuurverslaggever Dagblad De Limburger

", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV?locale=en-US%2Cen%3Bq%3D0.5", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "height": 64, - "width": 64 - } - ], - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De nomade", - "narrators": [ - { - "name": "Nienke Brinkhuis" - }, - { - "name": "Cees van Ede" - }, - { - "name": "Mattijn Hartemink" - } - ], - "publisher": "Anya Niewierra", - "total_chapters": 49, - "type": "audiobook", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + "languages": ["en"], + "media_type": "audio", + "name": "Harry Potter and the Philosopher's Stone", + "narrators": [ + { + "name": "Stephen Fry" + } + ], + "publisher": "J.K. Rowling", + "total_chapters": 20, + "type": "audiobook", + "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" } diff --git a/tests/fixtures/audiobook_chapters.json b/tests/fixtures/audiobook_chapters.json index 79d3062..70f3ad9 100644 --- a/tests/fixtures/audiobook_chapters.json +++ b/tests/fixtures/audiobook_chapters.json @@ -1,4590 +1,4490 @@ { - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV/chapters?locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV/chapters?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 49, - "items": [ - { - "id": "3NW4BmIOG0qzQZgtLgsydR", - "description": "", - "chapter_number": 0, - "duration_ms": 249652, - "explicit": false, - "images": [ + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20, + "items": [ { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + }, + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "3XcHJLv9NVV3lI4ECSNGcl", + "description": "", + "chapter_number": 1, + "duration_ms": 1901683, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 1: The Boy Who Lived", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" + }, + "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 1", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 156000 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/chapters/3NW4BmIOG0qzQZgtLgsydR" - }, - { - "id": "49TZsjpPPA4jEuAJ8bJbGf", - "description": "", - "chapter_number": 1, - "duration_ms": 565942, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 2", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:49TZsjpPPA4jEuAJ8bJbGf", - "external_urls": { - "spotify": "https://open.spotify.com/episode/49TZsjpPPA4jEuAJ8bJbGf" - }, - "href": "https://api.spotify.com/v1/chapters/49TZsjpPPA4jEuAJ8bJbGf" - }, - { - "id": "0rPuWNlTx3j4E2NJxat2rP", - "description": "", - "chapter_number": 2, - "duration_ms": 974132, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 3", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0rPuWNlTx3j4E2NJxat2rP", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0rPuWNlTx3j4E2NJxat2rP" - }, - "href": "https://api.spotify.com/v1/chapters/0rPuWNlTx3j4E2NJxat2rP" - }, - { - "id": "2E1Wk1N4bigyTVSg1tI0No", - "description": "", - "chapter_number": 3, - "duration_ms": 485590, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 4", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2E1Wk1N4bigyTVSg1tI0No", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2E1Wk1N4bigyTVSg1tI0No" - }, - "href": "https://api.spotify.com/v1/chapters/2E1Wk1N4bigyTVSg1tI0No" - }, - { - "id": "6tK38pBz4ZzcdeVlIRkRUM", - "description": "", - "chapter_number": 4, - "duration_ms": 523466, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 5", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6tK38pBz4ZzcdeVlIRkRUM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6tK38pBz4ZzcdeVlIRkRUM" - }, - "href": "https://api.spotify.com/v1/chapters/6tK38pBz4ZzcdeVlIRkRUM" - }, - { - "id": "4qQ7jT2GhcIat2pQFFxQA9", - "description": "", - "chapter_number": 5, - "duration_ms": 1022066, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 6", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4qQ7jT2GhcIat2pQFFxQA9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4qQ7jT2GhcIat2pQFFxQA9" - }, - "href": "https://api.spotify.com/v1/chapters/4qQ7jT2GhcIat2pQFFxQA9" - }, - { - "id": "0QNX88urT0YDlKxp9UWOWX", - "description": "", - "chapter_number": 6, - "duration_ms": 1602481, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 7", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0QNX88urT0YDlKxp9UWOWX", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0QNX88urT0YDlKxp9UWOWX" - }, - "href": "https://api.spotify.com/v1/chapters/0QNX88urT0YDlKxp9UWOWX" - }, - { - "id": "2KgZ8UnDbdKFUHflP9AotL", - "description": "", - "chapter_number": 7, - "duration_ms": 1412075, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "6yXRrpO4DYkPEphS1wApK6", + "description": "", + "chapter_number": 2, + "duration_ms": 1329841, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 2: The Vanishing Glass", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", + "external_urls": { + "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" + }, + "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 8", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2KgZ8UnDbdKFUHflP9AotL", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2KgZ8UnDbdKFUHflP9AotL" - }, - "href": "https://api.spotify.com/v1/chapters/2KgZ8UnDbdKFUHflP9AotL" - }, - { - "id": "4L1Y0jWKgrGfMB0HptLkQB", - "description": "", - "chapter_number": 8, - "duration_ms": 782497, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 9", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4L1Y0jWKgrGfMB0HptLkQB", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4L1Y0jWKgrGfMB0HptLkQB" - }, - "href": "https://api.spotify.com/v1/chapters/4L1Y0jWKgrGfMB0HptLkQB" - }, - { - "id": "0b2UnulIuw17qtiyTb2AwM", - "description": "", - "chapter_number": 9, - "duration_ms": 670223, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 10", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0b2UnulIuw17qtiyTb2AwM", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0b2UnulIuw17qtiyTb2AwM" - }, - "href": "https://api.spotify.com/v1/chapters/0b2UnulIuw17qtiyTb2AwM" - }, - { - "id": "6LrdmEqBMm6Y3HG9DPkZGc", - "description": "", - "chapter_number": 10, - "duration_ms": 1212630, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 11", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6LrdmEqBMm6Y3HG9DPkZGc", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6LrdmEqBMm6Y3HG9DPkZGc" - }, - "href": "https://api.spotify.com/v1/chapters/6LrdmEqBMm6Y3HG9DPkZGc" - }, - { - "id": "3XmAaccmDwQaCc63PlbSHu", - "description": "", - "chapter_number": 11, - "duration_ms": 952267, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "10fQLdhdGVbBYXvlXRVIPa", + "description": "", + "chapter_number": 3, + "duration_ms": 1517244, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 3: The Letters from No One", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", + "external_urls": { + "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" + }, + "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "46BVQZ5N2HbrtvO7EesYUY", + "description": "", + "chapter_number": 4, + "duration_ms": 1470066, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 4: The Keeper of the Keys", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", + "external_urls": { + "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" + }, + "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 12", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3XmAaccmDwQaCc63PlbSHu", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XmAaccmDwQaCc63PlbSHu" - }, - "href": "https://api.spotify.com/v1/chapters/3XmAaccmDwQaCc63PlbSHu" - }, - { - "id": "09SfB2ZdMpJ0Horyvgb7uz", - "description": "", - "chapter_number": 12, - "duration_ms": 685061, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 13", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:09SfB2ZdMpJ0Horyvgb7uz", - "external_urls": { - "spotify": "https://open.spotify.com/episode/09SfB2ZdMpJ0Horyvgb7uz" - }, - "href": "https://api.spotify.com/v1/chapters/09SfB2ZdMpJ0Horyvgb7uz" - }, - { - "id": "2XA4dwf0ToQ9iVySpHTZ4D", - "description": "", - "chapter_number": 13, - "duration_ms": 986148, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "4G2TaqHalYmLiL7fvJC75u", + "description": "", + "chapter_number": 5, + "duration_ms": 2643879, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 5: Diagon Alley", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" + }, + "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "2F4ricTDPdDT2h2m0mhUbt", + "description": "", + "chapter_number": 6, + "duration_ms": 2286524, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" + }, + "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 14", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2XA4dwf0ToQ9iVySpHTZ4D", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2XA4dwf0ToQ9iVySpHTZ4D" - }, - "href": "https://api.spotify.com/v1/chapters/2XA4dwf0ToQ9iVySpHTZ4D" - }, - { - "id": "0HdNqeQP9PF97GlIUKT2e6", - "description": "", - "chapter_number": 14, - "duration_ms": 347689, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "2nCrEIRgNfQpR9BUryaiyr", + "description": "", + "chapter_number": 7, + "duration_ms": 1773949, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 7: The Sorting Hat", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" + }, + "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "4jVigNVaZVhuAOXlf8TDNX", + "description": "", + "chapter_number": 8, + "duration_ms": 1125799, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 8: The Potions Master", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" + }, + "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 15", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0HdNqeQP9PF97GlIUKT2e6", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0HdNqeQP9PF97GlIUKT2e6" - }, - "href": "https://api.spotify.com/v1/chapters/0HdNqeQP9PF97GlIUKT2e6" - }, - { - "id": "4EgGjPK9EyWvuS4pb0JfVn", - "description": "", - "chapter_number": 15, - "duration_ms": 249678, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "0IHdKlFFno5yhCdmRSip9g", + "description": "", + "chapter_number": 9, + "duration_ms": 1841528, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 9: The Midnight Duel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" + }, + "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "20kk3OD8mjGkpucTvqYa9K", + "description": "", + "chapter_number": 10, + "duration_ms": 1571735, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 10: Halloween", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", + "external_urls": { + "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" + }, + "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 16", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4EgGjPK9EyWvuS4pb0JfVn", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4EgGjPK9EyWvuS4pb0JfVn" - }, - "href": "https://api.spotify.com/v1/chapters/4EgGjPK9EyWvuS4pb0JfVn" - }, - { - "id": "0QW159PFdnfSo4jwofmh94", - "description": "", - "chapter_number": 16, - "duration_ms": 793338, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "7vG172nPGGr3ZXm4YdL1nx", + "description": "", + "chapter_number": 11, + "duration_ms": 1209887, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 11: Quidditch", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", + "external_urls": { + "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" + }, + "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "1yRfwSOp8Jy1GisI0JIhMK", + "description": "", + "chapter_number": 12, + "duration_ms": 2066155, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 12: The Mirror of Erised", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" + }, + "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 17", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0QW159PFdnfSo4jwofmh94", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0QW159PFdnfSo4jwofmh94" - }, - "href": "https://api.spotify.com/v1/chapters/0QW159PFdnfSo4jwofmh94" - }, - { - "id": "6dhG5dwyxkMJ3o6c7VyMa9", - "description": "", - "chapter_number": 17, - "duration_ms": 774870, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "3BKzXnwHwemuVsJC2bSIYA", + "description": "", + "chapter_number": 13, + "duration_ms": 1219422, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 13: Nicolas Flamel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" + }, + "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "1wBkAOL29N9vkHTfvaACGv", + "description": "", + "chapter_number": 14, + "duration_ms": 1280000, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 14: Norbert The Norwegian Ridgeback", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" + }, + "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 18", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6dhG5dwyxkMJ3o6c7VyMa9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6dhG5dwyxkMJ3o6c7VyMa9" - }, - "href": "https://api.spotify.com/v1/chapters/6dhG5dwyxkMJ3o6c7VyMa9" - }, - { - "id": "7LQHbg3sUq9hcWLXFjtor9", - "description": "", - "chapter_number": 18, - "duration_ms": 524800, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "23cBJs22XGN3G7gA2EA0i1", + "description": "", + "chapter_number": 15, + "duration_ms": 2063306, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 15: The Forbidden Forest", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", + "external_urls": { + "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" + }, + "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "3K5mu1lHmrHC3CNPWV9r2A", + "description": "", + "chapter_number": 16, + "duration_ms": 2587167, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 16: Through the Trapdoor", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" + }, + "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" - } - ], - "languages": [ - "" - ], - "name": "Track 19", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7LQHbg3sUq9hcWLXFjtor9", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7LQHbg3sUq9hcWLXFjtor9" - }, - "href": "https://api.spotify.com/v1/chapters/7LQHbg3sUq9hcWLXFjtor9" - }, - { - "id": "6M0DmXvWGbIktNcxruSPaC", - "description": "", - "chapter_number": 19, - "duration_ms": 777769, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb" + "id": "0V36QZwEj9VPrEiZF6AWoh", + "description": "", + "chapter_number": 17, + "duration_ms": 2327308, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 17: The Man with Two Faces", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" + }, + "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" }, { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb" + "id": "04xYt1v4vGr7V9lJxl5xwL", + "description": "", + "chapter_number": 18, + "duration_ms": 95770, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Ending Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", + "external_urls": { + "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" + }, + "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" }, { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb" + "id": "5q5hnqCbUbgulqlsrnWL7h", + "description": "", + "chapter_number": 19, + "duration_ms": 300000, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Harry Potter and the Philosopher's Stone", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", + "external_urls": { + "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" + }, + "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" } - ], - "languages": [ - "" - ], - "name": "Track 20", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6M0DmXvWGbIktNcxruSPaC", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6M0DmXvWGbIktNcxruSPaC" - }, - "href": "https://api.spotify.com/v1/chapters/6M0DmXvWGbIktNcxruSPaC" - } - ] + ] } diff --git a/tests/fixtures/audiobooks_saved.json b/tests/fixtures/audiobooks_saved.json deleted file mode 100644 index 811cdc6..0000000 --- a/tests/fixtures/audiobooks_saved.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - false, - false, - false -] diff --git a/tests/fixtures/chapter.json b/tests/fixtures/chapter.json index e624a1b..79adc4f 100644 --- a/tests/fixtures/chapter.json +++ b/tests/fixtures/chapter.json @@ -1,471 +1,466 @@ { - "id": "3NW4BmIOG0qzQZgtLgsydR", - "description": "", - "chapter_number": 0, - "duration_ms": 249652, - "explicit": false, - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "languages": [ - "nl" - ], - "name": "Track 1", - "audio_preview_url": null, - "release_date": "2024-06-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 156000 - }, - "is_playable": true, - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "audiobook": { - "authors": [ - { - "name": "Anya Niewierra" - } + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "explicit": false, + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "width": 64 + } ], + "languages": ["en"], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "is_playable": true, + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" ], - "copyrights": [], - "description": "Author(s): Anya Niewierra\nNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

\n
\n

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
\nHeleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
\nRob Cobben, cultuurverslaggever Dagblad De Limburger

", - "edition": "Unabridged", - "explicit": false, + "audiobook": { + "authors": [ + { + "name": "J.K. Rowling" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [ + { + "text": "Pottermore Ltd. 1997", + "type": "C" + } + ], + "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" + }, + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "id": "6SJQ8VzM5PlDy11wMtcD6v", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "width": 64 + } + ], + "languages": ["en"], + "media_type": "audio", + "name": "Harry Potter and the Philosopher's Stone", + "narrators": [ + { + "name": "Stephen Fry" + } + ], + "publisher": "J.K. Rowling", + "total_chapters": 38, + "type": "audiobook", + "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" + }, + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" }, - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De nomade", - "narrators": [ - { - "name": "Nienke Brinkhuis" - }, - { - "name": "Cees van Ede" - }, - { - "name": "Mattijn Hartemink" - } - ], - "publisher": "Anya Niewierra", - "total_chapters": 49, - "type": "audiobook", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" - }, - "type": "chapter", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/chapters/3NW4BmIOG0qzQZgtLgsydR" + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" } diff --git a/tests/fixtures/current_playing_track.json b/tests/fixtures/current_playing_track.json index 17a7057..d4eafaa 100644 --- a/tests/fixtures/current_playing_track.json +++ b/tests/fixtures/current_playing_track.json @@ -1,466 +1,466 @@ { - "timestamp": 1702851692462, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - }, - "progress_ms": 134749, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1LorgdkFY2zgE6NbDdY19k" - }, - "href": "https://api.spotify.com/v1/albums/1LorgdkFY2zgE6NbDdY19k", - "id": "1LorgdkFY2zgE6NbDdY19k", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2", - "width": 64 - } - ], - "name": "Dun Smeren Geld Verdienen", - "release_date": "2019-05-13", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:1LorgdkFY2zgE6NbDdY19k" - }, - "artists": [ - { + "timestamp": 1702851692462, + "context": { "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" }, "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", "type": "artist", "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245581, - "explicit": true, - "external_ids": { - "isrc": "GBMJG1909751" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ" + "progress_ms": 134749, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1LorgdkFY2zgE6NbDdY19k" + }, + "href": "https://api.spotify.com/v1/albums/1LorgdkFY2zgE6NbDdY19k", + "id": "1LorgdkFY2zgE6NbDdY19k", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2", + "width": 64 + } + ], + "name": "Dun Smeren Geld Verdienen", + "release_date": "2019-05-13", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:1LorgdkFY2zgE6NbDdY19k" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245581, + "explicit": true, + "external_ids": { + "isrc": "GBMJG1909751" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ" + }, + "href": "https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ", + "id": "4sIkwgf9bU7rQPvsA37rVQ", + "is_local": false, + "name": "Witte Was", + "popularity": 59, + "preview_url": "https://p.scdn.co/mp3-preview/7e4836cab15ac1f1d03c78c84e411ffa71103a77?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 6, + "type": "track", + "uri": "spotify:track:4sIkwgf9bU7rQPvsA37rVQ" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } }, - "href": "https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ", - "id": "4sIkwgf9bU7rQPvsA37rVQ", - "is_local": false, - "name": "Witte Was", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/7e4836cab15ac1f1d03c78c84e411ffa71103a77?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 6, - "type": "track", - "uri": "spotify:track:4sIkwgf9bU7rQPvsA37rVQ" - }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } - }, - "is_playing": true + "is_playing": true } diff --git a/tests/fixtures/current_user.json b/tests/fixtures/current_user.json index 1326c68..964bf2b 100644 --- a/tests/fixtures/current_user.json +++ b/tests/fixtures/current_user.json @@ -1,33 +1,24 @@ { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "images": [ - { - "url": "https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc", - "height": 64, - "width": 64 - }, - { - "url": "https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc", - "height": 300, - "width": 300 - } - ], - "type": "user", - "uri": "spotify:user:1112264649", - "followers": { - "href": null, - "total": 21 - }, - "country": "NL", - "product": "premium", - "explicit_content": { - "filter_enabled": false, - "filter_locked": false - }, - "email": "joostlek@outlook.com" + "country": "NL", + "display_name": "Joost Lekkerkerker", + "explicit_content": { "filter_enabled": false, "filter_locked": false }, + "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" }, + "followers": { "href": null, "total": 21 }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "images": [ + { + "height": 300, + "url": "https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc", + "width": 64 + } + ], + "product": "premium", + "type": "user", + "uri": "spotify:user:1112264649" } diff --git a/tests/fixtures/current_user_playlist_1.json b/tests/fixtures/current_user_playlist_1.json index af55f1b..7b084bb 100644 --- a/tests/fixtures/current_user_playlist_1.json +++ b/tests/fixtures/current_user_playlist_1.json @@ -1,763 +1,2274 @@ { - "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=20", - "items": [ - null, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" - }, - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", - "id": "4WkWJ0EjHEFASDevhM8oPw", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273d061f5bfae8d38558f3698c1", - "width": 640 - } - ], - "name": "Hyper", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "Myw2ZjkyN2Q1ZWEwMjU1YWJjM2EwOWQ5YzA2ZDJjYjIzNTEzNzVmYmVl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" - }, - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", - "id": "1RHirWgH1weMsBLi4KOK9d", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b2732f3e58dd611d177973cb3a8cab67616d0000b27345cab965cb4639a4e669564aab67616d0000b2739e83c93811be6abfad8649d6ab67616d0000b273e4c03429788f0aff263a5fc6", - "width": 60 - } - ], - "name": "Ain’t got shit on me", - "owner": { - "display_name": "Rens Boeser", - "external_urls": { - "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" - }, - "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", - "id": "317g2sbpe3ccycu45fes6lfr5lpe", - "type": "user", - "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MjksMTdlMGU4ZGIxZWY5NWRkNjVkMzQ1YzUxYjk3YWZkMDdhNzRjNWE0Zg==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", - "total": 28 - }, - "type": "playlist", - "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" - }, - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", - "id": "2ZfissHhjQnhlmD54h6elH", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b2730f0e63e38a0ea92314ab9d7fab67616d0000b2737622b889949b07f15c6b57e2ab67616d0000b273a871bc3a84418ad1240a5d4eab67616d0000b273f56d363d03630bf3ee50b705", - "width": 60 - } - ], - "name": "Billie (interlude)", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "MTAsNTUwZmNiOTQxYThhNTg0ZDAwOTRjNmQ4NTc5NDk0ZDQyNTg0Mjc4Mg==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" - }, - { - "collaborative": false, - "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" - }, - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", - "id": "1vOHEgZ5UszkWycPjnG2Uo", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000bebbdce297c9b2a3b46d3c0a41fb", - "width": null - } - ], - "name": "Forza Horizon 5 Bass Arena", - "owner": { - "display_name": "SylveonTribe", - "external_urls": { - "spotify": "https://open.spotify.com/user/rwilming" - }, - "href": "https://api.spotify.com/v1/users/rwilming", - "id": "rwilming", - "type": "user", - "uri": "spotify:user:rwilming" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MjQsOTA3MmY2MGYwMWEzMTcwNjYzZDNlNTJiNmRmOTgzNmY1NWU2MjBlZg==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", - "total": 17 - }, - "type": "playlist", - "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" - }, - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", - "id": "4hQFqB1AtOpzsAv01E8n6c", - "images": [], - "name": "My Playlist #63", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "MSw4M2YwNzI4OTI3MjMxY2EwYjdmYWFhYTkwOTlmN2MxMGJhYzYzYzU4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" - }, - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", - "id": "0Jgs7FxHX86twpgCDehAHv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b273411d9123d8ac6e5865c1c9e8ab67616d0000b2736c9556ea020144591559e3e3ab67616d0000b27385d230a79a0f0081bff1f102ab67616d0000b273eb9d3cba22cfa81c14fb8f0b", - "width": 60 - } - ], - "name": "Crème", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "Nyw5MjY4MDU4ZWFkNzcwNTRhMGNhN2FlODMzZWI4YTMxMWFmNWNkNWZj", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" - }, - { - "collaborative": false, - "description": "Spotify Wrapped presents the songs that you loved most this year.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit", - "id": "37i9dQZF1F0sijgNaJdgit", - "images": [ - { - "height": null, - "url": "https://wrapped-images.spotifycdn.com/image/yts-2022/large/your-top-songs-2022_large_en.jpg", - "width": null - } - ], - "name": "Your Top Songs 2022", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MTY2OTkwODk2MiwwMDAwMDAwMGIwYjY1YjMyNjI3ZDRjNzIzZjlkOGYyMzVkY2RjNzc5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit/tracks", - "total": 101 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1F0sijgNaJdgit" - }, - { - "collaborative": false, - "description": "Rock for when on the move.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX6YSLRPj8EAI" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6YSLRPj8EAI", - "id": "37i9dQZF1DX6YSLRPj8EAI", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f000000037ef65b059c5fdd9834b05bc9", - "width": null - } - ], - "name": "omw from the pit", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MTY4NjkyMDk4MSwwMDAwMDAwMDlkNGYyOTA0ZWMzYWY4YjljMzNlZTI2ODRkZWViOGI3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX6YSLRPj8EAI/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX6YSLRPj8EAI" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" - }, - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", - "id": "6fHmmdjd2Urd7DAhb4bqOB", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b27304ac00b52282fa61045ad3ddab67616d0000b2731dacb4f92caf0b997cf2b6c7ab67616d0000b273837c1f17d180ad970b2802c2ab67616d0000b273f90e44e9accf167fe582d4b1", - "width": 60 - } - ], - "name": "My Shazam Tracks", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "MTU5LDY2MmIwNDQyY2JmNjk2MzAxYzA2MWI3ZmNmYTA4YWY3NjkzMzUyMmM=", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", - "total": 357 - }, - "type": "playlist", - "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" - }, - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", - "id": "5H2U7tZb9dMSHPwi20XcuD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b2730aa31b3fb95f3e6bc48312d9ab67616d0000b2737adbe35f4bcb61b4e9aa910cab67616d0000b273be90598dc5b123eb550c6d51ab67616d0000b273fe8c4d2d61fa92202800947c", - "width": 60 - } - ], - "name": "Likes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "MzUsYWQyZmVhYmI3ZDY1Mzc5M2I1NTYxODhmNjZlYTNiMTc4YmVjMmZmZg==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", - "total": 4275 - }, - "type": "playlist", - "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" - }, - { - "collaborative": false, - "description": "Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc", - "id": "37i9dQZEVXcGYKTerf9omc", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/stfxRixhceEsm_g7gO49YG1QsPjeunG6pNz8FmJENkOk2hR2EYo9nNsDL_MhjTxn8dIkVBsnTkvXlYlE7IZ0818v7z5KIwRNyI6tUamw8Fg=/MjA6NTQ6ODBUNjItMjEtMw==", - "width": null - } - ], - "name": "Discover Weekly", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MCwwMDAwMDAwMDdjYzBmMzQ3ODgwODYxMmJmOGFhMDg3MjhjN2IwYjk5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXcGYKTerf9omc" - }, - { - "collaborative": false, - "description": "Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe", - "id": "37i9dQZEVXbsfxNSCNXcqe", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab6764780000c480/dt/v3/release-radar/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b/en-GB", - "width": null - } - ], - "name": "Release Radar", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "MCwwMDAwMDAwMDljNTUxMmYyNTQxYjNjZGE0YmU3YWJjMjU5Mzg2Y2Ey", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXbsfxNSCNXcqe" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" - }, - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", - "id": "709T4OzANnUi2lKQLlVkrE", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b27312b78e0955d7be6bd6e9084aab67616d0000b273336a313426983a122d8ed70cab67616d0000b2738fae0b49fa2872779be1e77cab67616d0000b2739b90e4ccf55c0a23a13f4eae", - "width": 60 - } - ], - "name": "March '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "NSwyMWQ3MTRkNjI2NGFkMTlhMjZiN2ZjNTNlZjQ2NjM1NTkwZDEyOTlk", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" - }, - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", - "id": "57ZuuAVl0eAZvhisoFP3SC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b27320b467550945fd123e00f0a5ab67616d0000b273490a887b85a95378ea66b41dab67616d0000b2736bb188bb70c9561e60de61cbab67616d0000b2737f500193535d8fe6d4cb398f", - "width": 60 - } - ], - "name": "February '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MjEsMTY5YjZmNTcwM2RlZDZmZDQ3ODdjZjIzMjQ2MzdkYjJjNTQyMmI2Ng==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" - }, - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", - "id": "4OI1xDCLFlEcfgaeyowpEu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b27315893afacb5d2604085a9d8eab67616d0000b273356a689446b81073e1071987ab67616d0000b2737f86c9158ee0a14faa484d53ab67616d0000b27395da52884fb152645273020d", - "width": 60 - } - ], - "name": "January '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "NSxmYzI0MWY1Yjk3OTRiYWM4YzU1M2RjNjc4OGRkYzFiOGQ0OTU4Nzlj", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" - }, - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", - "id": "4NsY2DKzQIjaajal5L25Kt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b2731bfe2bbcc1f3e104459fef3cab67616d0000b2735425fecb078325803cd33dc8ab67616d0000b273a0a1e3d999ccb049ab3af5eaab67616d0000b273d7d88c479133a202690899d6", - "width": 60 - } - ], - "name": "December '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "OCwyMDNjMDZhMmFlMGVkZTk0MWY0OTgyOWJmZGQzOWRmM2NkZjViYTcw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" - }, - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", - "id": "5dV0IeLCysOP6qEDGzhHw0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b273014392f7224d7765e698a904ab67616d0000b27317f6a7b8151062c09e7c8a8fab67616d0000b273ec8d2bf88ac5308f8b9b8dc8ab67616d0000b273f4a6ca892c6ed5a8e969e8a9", - "width": 60 - } - ], - "name": "November '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MTQsYjM3NDZhYjBhMmUzMDVmYzc1NGU4OTdiNTY1ODE0NTFiNjJiODhlOA==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" - }, - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", - "id": "40bvnxNQlivxZ02DmDzNxy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d0000b2731b6dc095ae71e2a017b5f9b6ab67616d0000b2731d47ca87b7476af61dd4e502ab67616d0000b273fa244f6c5c40c2052d4c5408ab67616d0000b273feeecb5afca011822a371efe", - "width": 60 + "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48", + "limit": 48, + "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 94, + "items": [ + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" + }, + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", + "id": "1Cp6VQCKf2VL4sP09jN9oX", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": null + } + ], + "name": "To find", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Wsgrrb7PCORhHq5L7wF0d" + }, + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d", + "id": "0Wsgrrb7PCORhHq5L7wF0d", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0204290e7559226bf75ac34da8", + "width": null + } + ], + "name": "Repeat ones", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA9Or/3CAEwspEWBNRjmXsGtIRpiq", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:0Wsgrrb7PCORhHq5L7wF0d" + }, + { + "collaborative": false, + "description": "New playlist description", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" + }, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", + "id": "2dGgoMPWpapXYA6rX7ZbbB", + "images": null, + "name": "New Playlist", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAfu2PYguJO6XYV1gFlnjUp0umkry", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", + "total": 0 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/items", + "total": 0 + }, + "type": "playlist", + "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB" + }, + { + "collaborative": true, + "description": "Updated playlist description", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" + }, + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", + "id": "4hQFqB1AtOpzsAv01E8n6c", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983", + "width": null + } + ], + "name": "Updated Playlist Name2", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" + }, + { + "collaborative": false, + "description": "A musical time capsule from the past has been unsealed\u2026!", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2G2eo5DxAtxLu7aNGVvNpY" + }, + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY", + "id": "2G2eo5DxAtxLu7aNGVvNpY", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416264ef6071da49cbe93a951", + "width": null + } + ], + "name": "My 2024 Playlist in a Bottle", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA49BO4ePrhQ9Y7ENMXmDik23Vv27", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:2G2eo5DxAtxLu7aNGVvNpY" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" + }, + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", + "id": "5t75uJ5vBvEdbbvs5uIqXJ", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", + "width": null + } + ], + "name": "Sweet", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null + } + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACAnbhCSBgmOCZb+KmWOAhPdGgQDl", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" + }, + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", + "id": "4WkWJ0EjHEFASDevhM8oPw", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", + "width": null + } + ], + "name": "Hyper", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" + }, + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", + "id": "1RHirWgH1weMsBLi4KOK9d", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 60 + } + ], + "name": "Ain\u2019t got shit on me", + "owner": { + "display_name": "Rensie", + "external_urls": { + "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" + }, + "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", + "id": "317g2sbpe3ccycu45fes6lfr5lpe", + "type": "user", + "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", + "total": 30 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/items", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" + }, + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", + "id": "2ZfissHhjQnhlmD54h6elH", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 60 + } + ], + "name": "Billie (interlude)", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", + "total": 7 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/items", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" + }, + { + "collaborative": false, + "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" + }, + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", + "id": "1vOHEgZ5UszkWycPjnG2Uo", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", + "width": null + } + ], + "name": "Forza Horizon 5 Bass Arena", + "owner": { + "display_name": "SylveonTribe", + "external_urls": { + "spotify": "https://open.spotify.com/user/rwilming" + }, + "href": "https://api.spotify.com/v1/users/rwilming", + "id": "rwilming", + "type": "user", + "uri": "spotify:user:rwilming" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", + "total": 17 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/items", + "total": 17 + }, + "type": "playlist", + "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" + }, + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", + "id": "0Jgs7FxHX86twpgCDehAHv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 60 + } + ], + "name": "Cr\u00e8me", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", + "total": 6 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/items", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" + }, + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", + "id": "6fHmmdjd2Urd7DAhb4bqOB", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 60 + } + ], + "name": "My Shazam Tracks", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAABWHcOmMJhCMpNqc5zVozVx9Lbcnk4", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", + "total": 532 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/items", + "total": 532 + }, + "type": "playlist", + "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" + }, + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", + "id": "5H2U7tZb9dMSHPwi20XcuD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 60 + } + ], + "name": "Likes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJKzTbmZHqmOUqQe1xOWb4eZgf1n/", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", + "total": 4276 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/items", + "total": 4276 + }, + "type": "playlist", + "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" + }, + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", + "id": "709T4OzANnUi2lKQLlVkrE", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 60 + } + ], + "name": "March '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", + "total": 4 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/items", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" + }, + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", + "id": "57ZuuAVl0eAZvhisoFP3SC", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 60 + } + ], + "name": "February '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", + "total": 20 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/items", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" + }, + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", + "id": "4OI1xDCLFlEcfgaeyowpEu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 60 + } + ], + "name": "January '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", + "total": 4 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/items", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" + }, + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", + "id": "4NsY2DKzQIjaajal5L25Kt", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 60 + } + ], + "name": "December '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", + "total": 7 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/items", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" + }, + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", + "id": "5dV0IeLCysOP6qEDGzhHw0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 60 + } + ], + "name": "November '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", + "total": 13 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/items", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" + }, + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", + "id": "40bvnxNQlivxZ02DmDzNxy", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 60 + } + ], + "name": "October '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", + "total": 9 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/items", + "total": 9 + }, + "type": "playlist", + "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" + }, + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", + "id": "2ExZs1G4AOluuEwg3q5M1v", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 60 + } + ], + "name": "September '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", + "total": 19 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/items", + "total": 19 + }, + "type": "playlist", + "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" + }, + { + "collaborative": false, + "description": "de soms niet zo casual weird vibe playlist", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" + }, + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", + "id": "4jNUJLnkZJ32nuFE1PjkGu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 60 + } + ], + "name": "Slumpm\u00e4ssiga", + "owner": { + "display_name": "leanne", + "external_urls": { + "spotify": "https://open.spotify.com/user/xleanne_" + }, + "href": "https://api.spotify.com/v1/users/xleanne_", + "id": "xleanne_", + "type": "user", + "uri": "spotify:user:xleanne_" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", + "total": 107 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/items", + "total": 107 + }, + "type": "playlist", + "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" + }, + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", + "id": "700dVjBihCDj2HwyhYDTRp", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 60 + } + ], + "name": "August '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" + }, + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", + "id": "6B5dmWX7pK2LHHtS6ph265", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 60 + } + ], + "name": "Discover Weekly Archive", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", + "total": 1434 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/items", + "total": 1434 + }, + "type": "playlist", + "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" + }, + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", + "id": "0ISThPpDv4JBNeHdptcK6i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 60 + } + ], + "name": "Dance vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", + "total": 20 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/items", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" + }, + { + "collaborative": true, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" + }, + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", + "id": "2ElmM8s9Um1XSP07hADX9s", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 60 + } + ], + "name": "goeien numertjs", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", + "total": 62 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/items", + "total": 62 + }, + "type": "playlist", + "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" + }, + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", + "id": "0DRUBqBUSFJH1a7FvBIsGg", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 60 + } + ], + "name": "Summer vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", + "total": 13 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/items", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" + }, + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", + "id": "4PSXSX9WhxdjAzSjU175od", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 60 + } + ], + "name": "July '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" + }, + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", + "id": "1XKSZRcsYP6VTkObunDIjQ", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 60 + } + ], + "name": "June '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", + "total": 50 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/items", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" + }, + { + "collaborative": false, + "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" + }, + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", + "id": "3uCD1EyW3JRx8SV1QnA3Zm", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", + "width": null + } + ], + "name": "GTA Cayo Perico Beach Party: Keinemusik Set", + "owner": { + "display_name": "Austin Martinez", + "external_urls": { + "spotify": "https://open.spotify.com/user/127651589" + }, + "href": "https://api.spotify.com/v1/users/127651589", + "id": "127651589", + "type": "user", + "uri": "spotify:user:127651589" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", + "total": 26 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/items", + "total": 26 + }, + "type": "playlist", + "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" + }, + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", + "id": "3yPujxZ9OiB4By8COZaxaK", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 60 + } + ], + "name": "May '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", + "total": 64 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/items", + "total": 64 + }, + "type": "playlist", + "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" + }, + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", + "id": "4A31OO75jaLCV2r7bvbQUa", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 60 + } + ], + "name": "April '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", + "total": 49 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/items", + "total": 49 + }, + "type": "playlist", + "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" + }, + { + "collaborative": false, + "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" + }, + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", + "id": "6JbGAAe70bKTA3yfddjWTK", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", + "width": null + } + ], + "name": "BASS BOOSTED CAR MUSIC 2023", + "owner": { + "display_name": "LIZOT", + "external_urls": { + "spotify": "https://open.spotify.com/user/max.kleinschmidt" + }, + "href": "https://api.spotify.com/v1/users/max.kleinschmidt", + "id": "max.kleinschmidt", + "type": "user", + "uri": "spotify:user:max.kleinschmidt" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", + "total": 47 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/items", + "total": 47 + }, + "type": "playlist", + "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" + }, + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", + "id": "6lVbphMrnxl1vIlfPhdA8i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 60 + } + ], + "name": "March '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", + "total": 36 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/items", + "total": 36 + }, + "type": "playlist", + "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" + }, + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", + "id": "3l0iA85qv43y9aMWztVIHu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 60 + } + ], + "name": "February '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", + "total": 27 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/items", + "total": 27 + }, + "type": "playlist", + "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" + }, + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", + "id": "2jp4GK1k1l7I1X67f2EbmD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 60 + } + ], + "name": "January '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", + "total": 34 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/items", + "total": 34 + }, + "type": "playlist", + "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" + }, + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", + "id": "027kb6scBKg9y9dE5nPPTv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 60 + } + ], + "name": "December '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", + "total": 28 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/items", + "total": 28 + }, + "type": "playlist", + "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" + }, + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", + "id": "1lX3M3MvpNmQGzuh7tVi15", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 60 + } + ], + "name": "November '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", + "total": 32 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/items", + "total": 32 + }, + "type": "playlist", + "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6qGlky0reWcIeMAz70W8fd" + }, + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd", + "id": "6qGlky0reWcIeMAz70W8fd", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 60 + } + ], + "name": "October '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJJ6I6Itv30mFoGlx1ZWKc0I40cME", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/tracks", + "total": 35 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/items", + "total": 35 + }, + "type": "playlist", + "uri": "spotify:playlist:6qGlky0reWcIeMAz70W8fd" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0RyuPsj7lVf8NTQlLnH3j0" + }, + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0", + "id": "0RyuPsj7lVf8NTQlLnH3j0", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8412a6b60909be15810cf163c8", + "width": null + } + ], + "name": "Tones and I and I", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA4LicILuoxQI0vQ3sHt3FqsRHU5+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/tracks", + "total": 25 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/items", + "total": 25 + }, + "type": "playlist", + "uri": "spotify:playlist:0RyuPsj7lVf8NTQlLnH3j0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/7nXa5Ki4rYpTdkymKP9FaX" + }, + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX", + "id": "7nXa5Ki4rYpTdkymKP9FaX", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 60 + } + ], + "name": "September '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAH8Ic4YdKV/m3GHQ6NR1rA1MmupYc", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/tracks", + "total": 30 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/items", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:7nXa5Ki4rYpTdkymKP9FaX" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0cr5tOok6jV1LbxRW3Q1N7" + }, + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7", + "id": "0cr5tOok6jV1LbxRW3Q1N7", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 60 + } + ], + "name": "August '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAINvOu3RTd6/L2JNcOmvga6vYW+N6", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:0cr5tOok6jV1LbxRW3Q1N7" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2OCmZ2TQS3I1t03liWGkKS" + }, + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS", + "id": "2OCmZ2TQS3I1t03liWGkKS", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 60 + } + ], + "name": "July '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAPbe/75GjdiboQ8NQHoSjBc6HWWSy", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/tracks", + "total": 60 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/items", + "total": 60 + }, + "type": "playlist", + "uri": "spotify:playlist:2OCmZ2TQS3I1t03liWGkKS" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5O4UBQXD3A6FrZ9crDNfiC" + }, + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC", + "id": "5O4UBQXD3A6FrZ9crDNfiC", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02722206ae6845cdbbb4ed5e44", + "width": null + } + ], + "name": "Juni '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAn6jyYPE1Rydis2Aw912enTZzyzT", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:5O4UBQXD3A6FrZ9crDNfiC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4ncsy40OjpUIDhbXzi7BR4" + }, + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4", + "id": "4ncsy40OjpUIDhbXzi7BR4", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 60 + } + ], + "name": "June '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAALjpQDG7JUhg4XF64j36IVHVh6DmK", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/tracks", + "total": 45 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/items", + "total": 45 + }, + "type": "playlist", + "uri": "spotify:playlist:4ncsy40OjpUIDhbXzi7BR4" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6DSDjystyVtnkfdsoANXu0" + }, + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0", + "id": "6DSDjystyVtnkfdsoANXu0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 60 + } + ], + "name": "Disco Vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACNeSMD6hLdkSArDZihVm9W9X94kw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/tracks", + "total": 6 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/items", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:6DSDjystyVtnkfdsoANXu0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jvlY5A7LXMtJjQFAZpkER" + }, + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER", + "id": "2jvlY5A7LXMtJjQFAZpkER", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 60 + } + ], + "name": "May '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAALOTM51RP7q2tcb0KZvUn5wBJYing", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/tracks", + "total": 43 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/items", + "total": 43 + }, + "type": "playlist", + "uri": "spotify:playlist:2jvlY5A7LXMtJjQFAZpkER" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/7j2y0Baus5KEznyrb9P7Hh" + }, + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh", + "id": "7j2y0Baus5KEznyrb9P7Hh", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 60 + } + ], + "name": "funk wav bounces vol 2", + "owner": { + "display_name": "angelarbarnes", + "external_urls": { + "spotify": "https://open.spotify.com/user/angelarbarnes" + }, + "href": "https://api.spotify.com/v1/users/angelarbarnes", + "id": "angelarbarnes", + "type": "user", + "uri": "spotify:user:angelarbarnes" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAwnmqbrq34IfUqN5UdZBCYOxnJW9i", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/tracks", + "total": 161 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/items", + "total": 161 + }, + "type": "playlist", + "uri": "spotify:playlist:7j2y0Baus5KEznyrb9P7Hh" } - ], - "name": "October '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": false, - "snapshot_id": "MTAsOWE3Y2M1N2ViYmRlZmE1ZmY5NWM5YThkYzYwOTc0MDFkNDg0YTQwZA==", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" - } - ], - "limit": 18, - "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=18&limit=20", - "offset": 0, - "previous": null, - "total": 101 + ] } diff --git a/tests/fixtures/current_user_playlist_2.json b/tests/fixtures/current_user_playlist_2.json index 90b999f..953a57d 100644 --- a/tests/fixtures/current_user_playlist_2.json +++ b/tests/fixtures/current_user_playlist_2.json @@ -1,1966 +1,1966 @@ { - "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48&locale=en-US,en;q%3D0.5", - "limit": 48, - "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 111, - "items": [ - { - "collaborative": false, - "description": "You listened to freedom and vibing on Mondays in the morning. Here's some: melodic techno, house, fraternity, 130 bpm, doof doof and electric", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1", - "id": "37i9dQZF1EP6YuccBxUcC1", - "images": [ - { - "height": null, - "url": "https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg", - "width": null - } - ], - "name": "daylist • melodic techno house monday morning", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "AAAAAAAAAABk2EIIGQqKLD1fzg4cJNPW", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EP6YuccBxUcC1" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Cheyenne. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd", - "id": "37i9dQZF1EJvpyGjPopYtd", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg", - "width": null - } - ], - "name": "Cheyenne + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAB5VxMH9+Uucj60cxwQ1hP/", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJvpyGjPopYtd" - }, - { - "collaborative": false, - "description": "100% good vibes.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh", - "id": "37i9dQZF1DWYMroOc5KTTh", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2", - "width": null - } - ], - "name": "Serotonin", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "Zv8h8AAAAADjkIR1uih+iXplHwVe3RH7", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWYMroOc5KTTh" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" - }, - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", - "id": "5t75uJ5vBvEdbbvs5uIqXJ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", - "width": null - } - ], - "name": "Sweet", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" - }, - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", - "id": "0pM0KTMXM7K5qr3sL2DPw1", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": null - } - ], - "name": "Pain", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA1EpnaBVKgA8U/N/DhWkHB9jsoA1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" - }, - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", - "id": "4WkWJ0EjHEFASDevhM8oPw", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", - "width": null - } - ], - "name": "Hyper", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Christel. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv", - "id": "37i9dQZF1EJwDEkXAeJkCv", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg", - "width": null - } - ], - "name": "Christel + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAAN3BwiC8g/3dZKnFCGe4eA", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJwDEkXAeJkCv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" - }, - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", - "id": "1RHirWgH1weMsBLi4KOK9d", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 60 - } - ], - "name": "Ain’t got shit on me", - "owner": { - "display_name": "Rensie", - "external_urls": { - "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" - }, - "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", - "id": "317g2sbpe3ccycu45fes6lfr5lpe", - "type": "user", - "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and kosmik. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD", - "id": "37i9dQZF1EJDyIuS82b8FD", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg", - "width": null - } - ], - "name": "kosmik + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAADQO7myvn0ystLH2NNZd1rt", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJDyIuS82b8FD" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" - }, - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", - "id": "2ZfissHhjQnhlmD54h6elH", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 60 - } - ], - "name": "Billie (interlude)", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" - }, - { - "collaborative": false, - "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" - }, - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", - "id": "1vOHEgZ5UszkWycPjnG2Uo", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", - "width": null - } - ], - "name": "Forza Horizon 5 Bass Arena", - "owner": { - "display_name": "SylveonTribe", - "external_urls": { - "spotify": "https://open.spotify.com/user/rwilming" - }, - "href": "https://api.spotify.com/v1/users/rwilming", - "id": "rwilming", - "type": "user", - "uri": "spotify:user:rwilming" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", - "total": 17 - }, - "type": "playlist", - "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" - }, - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", - "id": "4hQFqB1AtOpzsAv01E8n6c", - "images": null, - "name": "My Playlist #63", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAYPwcoknIxygt/qqqQmffBC6xjxY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" - }, - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", - "id": "0Jgs7FxHX86twpgCDehAHv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 60 - } - ], - "name": "Crème", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" - }, - { - "collaborative": false, - "description": "Spotify Wrapped presents the songs that you loved most this year.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit", - "id": "37i9dQZF1F0sijgNaJdgit", - "images": [ - { - "height": null, - "url": "https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg", - "width": null - } - ], - "name": "Your Top Songs 2022", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "Y4jJ4gAAAACwtlsyYn1Mcj+djyNdzcd5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit/tracks", - "total": 98 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1F0sijgNaJdgit" - }, - { - "collaborative": false, - "description": "The UK's biggest rock playlist. Cover: Circa Waves", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT", - "id": "37i9dQZF1DX4DZAVUAwHMT", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464", - "width": null - } - ], - "name": "The Rock List", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "ZwALKQAAAADv+NljetLGFE9m+gYkVvpz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT/tracks", - "total": 80 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4DZAVUAwHMT" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" - }, - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", - "id": "6fHmmdjd2Urd7DAhb4bqOB", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 60 - } - ], - "name": "My Shazam Tracks", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABFo0uvxASD5waHn+QvHuUxhTc3N5U", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", - "total": 466 - }, - "type": "playlist", - "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" - }, - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", - "id": "5H2U7tZb9dMSHPwi20XcuD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 60 - } - ], - "name": "Likes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI60v6rt9ZTeTtVYYj2bqOxeL7C//", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", - "total": 4275 - }, - "type": "playlist", - "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" - }, - { - "collaborative": false, - "description": "Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc", - "id": "37i9dQZEVXcGYKTerf9omc", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==", - "width": null - } - ], - "name": "Discover Weekly", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAAkVTlDM0zEvttx7VRAm5um", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXcGYKTerf9omc" - }, - { - "collaborative": false, - "description": "Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe", - "id": "37i9dQZEVXbsfxNSCNXcqe", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en", - "width": null - } - ], - "name": "Release Radar", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAACoAk1nSBcNqaIU4MZ2K0QY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXbsfxNSCNXcqe" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" - }, - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", - "id": "709T4OzANnUi2lKQLlVkrE", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 60 - } - ], - "name": "March '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" - }, - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", - "id": "57ZuuAVl0eAZvhisoFP3SC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 60 - } - ], - "name": "February '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" - }, - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", - "id": "4OI1xDCLFlEcfgaeyowpEu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 60 - } - ], - "name": "January '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" - }, - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", - "id": "4NsY2DKzQIjaajal5L25Kt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 60 - } - ], - "name": "December '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" - }, - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", - "id": "5dV0IeLCysOP6qEDGzhHw0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 60 - } - ], - "name": "November '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" - }, - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", - "id": "40bvnxNQlivxZ02DmDzNxy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 60 - } - ], - "name": "October '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" - }, - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", - "id": "2ExZs1G4AOluuEwg3q5M1v", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 60 - } - ], - "name": "September '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", - "total": 19 - }, - "type": "playlist", - "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" - }, - { - "collaborative": false, - "description": "de soms niet zo casual weird vibe playlist", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" - }, - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", - "id": "4jNUJLnkZJ32nuFE1PjkGu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 60 - } - ], - "name": "Slumpmässiga", - "owner": { - "display_name": "xleanne_", - "external_urls": { - "spotify": "https://open.spotify.com/user/xleanne_" - }, - "href": "https://api.spotify.com/v1/users/xleanne_", - "id": "xleanne_", - "type": "user", - "uri": "spotify:user:xleanne_" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", - "total": 107 - }, - "type": "playlist", - "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" - }, - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", - "id": "700dVjBihCDj2HwyhYDTRp", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 60 - } - ], - "name": "August '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" - }, - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", - "id": "6B5dmWX7pK2LHHtS6ph265", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 60 - } - ], - "name": "Discover Weekly Archive", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", - "total": 1434 - }, - "type": "playlist", - "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" - }, - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", - "id": "0ISThPpDv4JBNeHdptcK6i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 60 - } - ], - "name": "Dance vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" - }, - { - "collaborative": true, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" - }, - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", - "id": "2ElmM8s9Um1XSP07hADX9s", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 60 - } - ], - "name": "goeien numertjs", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", - "total": 62 - }, - "type": "playlist", - "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" - }, - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", - "id": "0DRUBqBUSFJH1a7FvBIsGg", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 60 + "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48&locale=en-US,en;q%3D0.5", + "limit": 48, + "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48&locale=en-US,en;q%3D0.5", + "offset": 0, + "previous": null, + "total": 111, + "items": [ + { + "collaborative": false, + "description": "You listened to freedom and vibing on Mondays in the morning. Here's some: melodic techno, house, fraternity, 130 bpm, doof doof and electric", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1", + "id": "37i9dQZF1EP6YuccBxUcC1", + "images": [ + { + "height": null, + "url": "https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg", + "width": null + } + ], + "name": "daylist • melodic techno house monday morning", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "AAAAAAAAAABk2EIIGQqKLD1fzg4cJNPW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EP6YuccBxUcC1" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Cheyenne. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd", + "id": "37i9dQZF1EJvpyGjPopYtd", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg", + "width": null + } + ], + "name": "Cheyenne + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAB5VxMH9+Uucj60cxwQ1hP/", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJvpyGjPopYtd" + }, + { + "collaborative": false, + "description": "100% good vibes.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh", + "id": "37i9dQZF1DWYMroOc5KTTh", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2", + "width": null + } + ], + "name": "Serotonin", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "Zv8h8AAAAADjkIR1uih+iXplHwVe3RH7", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DWYMroOc5KTTh" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" + }, + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", + "id": "5t75uJ5vBvEdbbvs5uIqXJ", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", + "width": null + } + ], + "name": "Sweet", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null + } + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA1EpnaBVKgA8U/N/DhWkHB9jsoA1", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", + "total": 2 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" + }, + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", + "id": "4WkWJ0EjHEFASDevhM8oPw", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", + "width": null + } + ], + "name": "Hyper", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Christel. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv", + "id": "37i9dQZF1EJwDEkXAeJkCv", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg", + "width": null + } + ], + "name": "Christel + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAAN3BwiC8g/3dZKnFCGe4eA", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJwDEkXAeJkCv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" + }, + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", + "id": "1RHirWgH1weMsBLi4KOK9d", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 60 + } + ], + "name": "Ain’t got shit on me", + "owner": { + "display_name": "Rensie", + "external_urls": { + "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" + }, + "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", + "id": "317g2sbpe3ccycu45fes6lfr5lpe", + "type": "user", + "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and kosmik. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD", + "id": "37i9dQZF1EJDyIuS82b8FD", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg", + "width": null + } + ], + "name": "kosmik + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAADQO7myvn0ystLH2NNZd1rt", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJDyIuS82b8FD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" + }, + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", + "id": "2ZfissHhjQnhlmD54h6elH", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 60 + } + ], + "name": "Billie (interlude)", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" + }, + { + "collaborative": false, + "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" + }, + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", + "id": "1vOHEgZ5UszkWycPjnG2Uo", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", + "width": null + } + ], + "name": "Forza Horizon 5 Bass Arena", + "owner": { + "display_name": "SylveonTribe", + "external_urls": { + "spotify": "https://open.spotify.com/user/rwilming" + }, + "href": "https://api.spotify.com/v1/users/rwilming", + "id": "rwilming", + "type": "user", + "uri": "spotify:user:rwilming" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", + "total": 17 + }, + "type": "playlist", + "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" + }, + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", + "id": "4hQFqB1AtOpzsAv01E8n6c", + "images": null, + "name": "My Playlist #63", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAYPwcoknIxygt/qqqQmffBC6xjxY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", + "total": 0 + }, + "type": "playlist", + "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" + }, + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", + "id": "0Jgs7FxHX86twpgCDehAHv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 60 + } + ], + "name": "Crème", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" + }, + { + "collaborative": false, + "description": "Spotify Wrapped presents the songs that you loved most this year.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit", + "id": "37i9dQZF1F0sijgNaJdgit", + "images": [ + { + "height": null, + "url": "https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg", + "width": null + } + ], + "name": "Your Top Songs 2022", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "Y4jJ4gAAAACwtlsyYn1Mcj+djyNdzcd5", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit/tracks", + "total": 98 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1F0sijgNaJdgit" + }, + { + "collaborative": false, + "description": "The UK's biggest rock playlist. Cover: Circa Waves", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT", + "id": "37i9dQZF1DX4DZAVUAwHMT", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464", + "width": null + } + ], + "name": "The Rock List", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "ZwALKQAAAADv+NljetLGFE9m+gYkVvpz", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT/tracks", + "total": 80 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DX4DZAVUAwHMT" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" + }, + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", + "id": "6fHmmdjd2Urd7DAhb4bqOB", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 60 + } + ], + "name": "My Shazam Tracks", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAABFo0uvxASD5waHn+QvHuUxhTc3N5U", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", + "total": 466 + }, + "type": "playlist", + "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" + }, + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", + "id": "5H2U7tZb9dMSHPwi20XcuD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 60 + } + ], + "name": "Likes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI60v6rt9ZTeTtVYYj2bqOxeL7C//", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", + "total": 4275 + }, + "type": "playlist", + "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" + }, + { + "collaborative": false, + "description": "Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc", + "id": "37i9dQZEVXcGYKTerf9omc", + "images": [ + { + "height": null, + "url": "https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==", + "width": null + } + ], + "name": "Discover Weekly", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAAkVTlDM0zEvttx7VRAm5um", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZEVXcGYKTerf9omc" + }, + { + "collaborative": false, + "description": "Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe", + "id": "37i9dQZEVXbsfxNSCNXcqe", + "images": [ + { + "height": null, + "url": "https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en", + "width": null + } + ], + "name": "Release Radar", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAACoAk1nSBcNqaIU4MZ2K0QY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZEVXbsfxNSCNXcqe" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" + }, + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", + "id": "709T4OzANnUi2lKQLlVkrE", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 60 + } + ], + "name": "March '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" + }, + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", + "id": "57ZuuAVl0eAZvhisoFP3SC", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 60 + } + ], + "name": "February '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" + }, + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", + "id": "4OI1xDCLFlEcfgaeyowpEu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 60 + } + ], + "name": "January '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" + }, + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", + "id": "4NsY2DKzQIjaajal5L25Kt", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 60 + } + ], + "name": "December '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" + }, + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", + "id": "5dV0IeLCysOP6qEDGzhHw0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 60 + } + ], + "name": "November '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" + }, + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", + "id": "40bvnxNQlivxZ02DmDzNxy", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 60 + } + ], + "name": "October '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", + "total": 9 + }, + "type": "playlist", + "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" + }, + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", + "id": "2ExZs1G4AOluuEwg3q5M1v", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 60 + } + ], + "name": "September '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", + "total": 19 + }, + "type": "playlist", + "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" + }, + { + "collaborative": false, + "description": "de soms niet zo casual weird vibe playlist", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" + }, + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", + "id": "4jNUJLnkZJ32nuFE1PjkGu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 60 + } + ], + "name": "Slumpmässiga", + "owner": { + "display_name": "xleanne_", + "external_urls": { + "spotify": "https://open.spotify.com/user/xleanne_" + }, + "href": "https://api.spotify.com/v1/users/xleanne_", + "id": "xleanne_", + "type": "user", + "uri": "spotify:user:xleanne_" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", + "total": 107 + }, + "type": "playlist", + "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" + }, + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", + "id": "700dVjBihCDj2HwyhYDTRp", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 60 + } + ], + "name": "August '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" + }, + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", + "id": "6B5dmWX7pK2LHHtS6ph265", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 60 + } + ], + "name": "Discover Weekly Archive", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", + "total": 1434 + }, + "type": "playlist", + "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" + }, + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", + "id": "0ISThPpDv4JBNeHdptcK6i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 60 + } + ], + "name": "Dance vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" + }, + { + "collaborative": true, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" + }, + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", + "id": "2ElmM8s9Um1XSP07hADX9s", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 60 + } + ], + "name": "goeien numertjs", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", + "total": 62 + }, + "type": "playlist", + "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" + }, + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", + "id": "0DRUBqBUSFJH1a7FvBIsGg", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 60 + } + ], + "name": "Summer vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" + }, + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", + "id": "4PSXSX9WhxdjAzSjU175od", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 60 + } + ], + "name": "July '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and xleanne_. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly", + "id": "37i9dQZF1EJADo3CBlOCly", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg", + "width": null + } + ], + "name": "xleanne_ + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAACzZrF5pD+dIx3K5ku7m+sL", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJADo3CBlOCly" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" + }, + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", + "id": "1XKSZRcsYP6VTkObunDIjQ", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 60 + } + ], + "name": "June '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" + }, + { + "collaborative": false, + "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" + }, + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", + "id": "3uCD1EyW3JRx8SV1QnA3Zm", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", + "width": null + } + ], + "name": "GTA Cayo Perico Beach Party: Keinemusik Set", + "owner": { + "display_name": "Austin Martinez", + "external_urls": { + "spotify": "https://open.spotify.com/user/127651589" + }, + "href": "https://api.spotify.com/v1/users/127651589", + "id": "127651589", + "type": "user", + "uri": "spotify:user:127651589" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", + "total": 26 + }, + "type": "playlist", + "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Marc. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS", + "id": "37i9dQZF1EJBr22FUQwTGS", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg", + "width": null + } + ], + "name": "Marc + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAADC04p942tJK4EpnONJnwVe", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJBr22FUQwTGS" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" + }, + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", + "id": "3yPujxZ9OiB4By8COZaxaK", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 60 + } + ], + "name": "May '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", + "total": 64 + }, + "type": "playlist", + "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" + }, + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", + "id": "4A31OO75jaLCV2r7bvbQUa", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 60 + } + ], + "name": "April '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", + "total": 49 + }, + "type": "playlist", + "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" + }, + { + "collaborative": false, + "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" + }, + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", + "id": "6JbGAAe70bKTA3yfddjWTK", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", + "width": null + } + ], + "name": "BASS BOOSTED CAR MUSIC 2023", + "owner": { + "display_name": "LIZOT", + "external_urls": { + "spotify": "https://open.spotify.com/user/max.kleinschmidt" + }, + "href": "https://api.spotify.com/v1/users/max.kleinschmidt", + "id": "max.kleinschmidt", + "type": "user", + "uri": "spotify:user:max.kleinschmidt" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", + "total": 47 + }, + "type": "playlist", + "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" + }, + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", + "id": "6lVbphMrnxl1vIlfPhdA8i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 60 + } + ], + "name": "March '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", + "total": 36 + }, + "type": "playlist", + "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" + }, + { + "collaborative": false, + "description": "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV", + "id": "37i9dQZF1DX3FNkD0kDpDV", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337", + "width": null + } + ], + "name": "ADE Guest List", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#2d46b9", + "public": true, + "snapshot_id": "Zv9oQAAAAACxcnsp4MHz+vGui3hjvR6C", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV/tracks", + "total": 45 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DX3FNkD0kDpDV" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" + }, + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", + "id": "3l0iA85qv43y9aMWztVIHu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 60 + } + ], + "name": "February '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", + "total": 27 + }, + "type": "playlist", + "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" + }, + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", + "id": "2jp4GK1k1l7I1X67f2EbmD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 60 + } + ], + "name": "January '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", + "total": 34 + }, + "type": "playlist", + "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" + }, + { + "collaborative": false, + "description": "The songs you loved most this year, all wrapped up.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6", + "id": "37i9dQZF1EM9phQOPnbiB6", + "images": [ + { + "height": null, + "url": "https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg", + "width": null + } + ], + "name": "Your Top Songs 2020", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AZiMSAAAAAC0sxW0bTTwGQC5/H0U1ZHz", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6/tracks", + "total": 100 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EM9phQOPnbiB6" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" + }, + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", + "id": "027kb6scBKg9y9dE5nPPTv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 60 + } + ], + "name": "December '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", + "total": 28 + }, + "type": "playlist", + "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" + }, + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", + "id": "1lX3M3MvpNmQGzuh7tVi15", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 60 + } + ], + "name": "November '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", + "total": 32 + }, + "type": "playlist", + "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" } - ], - "name": "Summer vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" - }, - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", - "id": "4PSXSX9WhxdjAzSjU175od", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 60 - } - ], - "name": "July '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and xleanne_. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly", - "id": "37i9dQZF1EJADo3CBlOCly", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg", - "width": null - } - ], - "name": "xleanne_ + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAACzZrF5pD+dIx3K5ku7m+sL", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJADo3CBlOCly" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" - }, - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", - "id": "1XKSZRcsYP6VTkObunDIjQ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 60 - } - ], - "name": "June '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" - }, - { - "collaborative": false, - "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" - }, - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", - "id": "3uCD1EyW3JRx8SV1QnA3Zm", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", - "width": null - } - ], - "name": "GTA Cayo Perico Beach Party: Keinemusik Set", - "owner": { - "display_name": "Austin Martinez", - "external_urls": { - "spotify": "https://open.spotify.com/user/127651589" - }, - "href": "https://api.spotify.com/v1/users/127651589", - "id": "127651589", - "type": "user", - "uri": "spotify:user:127651589" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", - "total": 26 - }, - "type": "playlist", - "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Marc. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS", - "id": "37i9dQZF1EJBr22FUQwTGS", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg", - "width": null - } - ], - "name": "Marc + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAADC04p942tJK4EpnONJnwVe", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJBr22FUQwTGS" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" - }, - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", - "id": "3yPujxZ9OiB4By8COZaxaK", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 60 - } - ], - "name": "May '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", - "total": 64 - }, - "type": "playlist", - "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" - }, - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", - "id": "4A31OO75jaLCV2r7bvbQUa", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 60 - } - ], - "name": "April '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", - "total": 49 - }, - "type": "playlist", - "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" - }, - { - "collaborative": false, - "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" - }, - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", - "id": "6JbGAAe70bKTA3yfddjWTK", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", - "width": null - } - ], - "name": "BASS BOOSTED CAR MUSIC 2023", - "owner": { - "display_name": "LIZOT", - "external_urls": { - "spotify": "https://open.spotify.com/user/max.kleinschmidt" - }, - "href": "https://api.spotify.com/v1/users/max.kleinschmidt", - "id": "max.kleinschmidt", - "type": "user", - "uri": "spotify:user:max.kleinschmidt" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", - "total": 47 - }, - "type": "playlist", - "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" - }, - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", - "id": "6lVbphMrnxl1vIlfPhdA8i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 60 - } - ], - "name": "March '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", - "total": 36 - }, - "type": "playlist", - "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" - }, - { - "collaborative": false, - "description": "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV", - "id": "37i9dQZF1DX3FNkD0kDpDV", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337", - "width": null - } - ], - "name": "ADE Guest List", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#2d46b9", - "public": true, - "snapshot_id": "Zv9oQAAAAACxcnsp4MHz+vGui3hjvR6C", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV/tracks", - "total": 45 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX3FNkD0kDpDV" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" - }, - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", - "id": "3l0iA85qv43y9aMWztVIHu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 60 - } - ], - "name": "February '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", - "total": 27 - }, - "type": "playlist", - "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" - }, - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", - "id": "2jp4GK1k1l7I1X67f2EbmD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 60 - } - ], - "name": "January '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", - "total": 34 - }, - "type": "playlist", - "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" - }, - { - "collaborative": false, - "description": "The songs you loved most this year, all wrapped up.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6", - "id": "37i9dQZF1EM9phQOPnbiB6", - "images": [ - { - "height": null, - "url": "https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg", - "width": null - } - ], - "name": "Your Top Songs 2020", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AZiMSAAAAAC0sxW0bTTwGQC5/H0U1ZHz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EM9phQOPnbiB6" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" - }, - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", - "id": "027kb6scBKg9y9dE5nPPTv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 60 - } - ], - "name": "December '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", - "total": 28 - }, - "type": "playlist", - "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" - }, - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", - "id": "1lX3M3MvpNmQGzuh7tVi15", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 60 - } - ], - "name": "November '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", - "total": 32 - }, - "type": "playlist", - "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" - } - ] + ] } diff --git a/tests/fixtures/devices.json b/tests/fixtures/devices.json index e589d11..bf4a275 100644 --- a/tests/fixtures/devices.json +++ b/tests/fixtures/devices.json @@ -1,14 +1,14 @@ { - "devices": [ - { - "id": "21dac6b0e0a1f181870fdc9749b2656466557687", - "is_active": false, - "is_private_session": false, - "is_restricted": false, - "name": "DESKTOP-BKC5SIK", - "supports_volume": true, - "type": "Computer", - "volume_percent": 69 - } - ] + "devices": [ + { + "id": "21dac6b0e0a1f181870fdc9749b2656466557687", + "is_active": false, + "is_private_session": false, + "is_restricted": false, + "name": "DESKTOP-BKC5SIK", + "supports_volume": true, + "type": "Computer", + "volume_percent": 69 + } + ] } diff --git a/tests/fixtures/episode.json b/tests/fixtures/episode.json index db6a617..ec5d0df 100644 --- a/tests/fixtures/episode.json +++ b/tests/fixtures/episode.json @@ -1,269 +1,262 @@ { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "explicit": true, + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3o0RYoo5iOMKSmEbunsbvW", "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } ], "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "total_episodes": 120, - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" - }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 90000 }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + }, + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "total_episodes": 159, + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + }, + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" } diff --git a/tests/fixtures/episode_saved.json b/tests/fixtures/episode_saved.json deleted file mode 100644 index 870284e..0000000 --- a/tests/fixtures/episode_saved.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - true, - false -] diff --git a/tests/fixtures/followed_artists.json b/tests/fixtures/followed_artists.json index df16498..6ffe1a8 100644 --- a/tests/fixtures/followed_artists.json +++ b/tests/fixtures/followed_artists.json @@ -1,746 +1,1474 @@ { - "artists": { - "items": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "followers": { - "href": null, - "total": 349437 - }, - "genres": [ - "brostep", - "complextro", - "danish electronic", - "edm", - "electro house", - "glitch", - "speedrun" - ], - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e", - "width": 160 - } - ], - "name": "Pegboard Nerds", - "popularity": 52, - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0p4nmQO2msCgU4IF37Wi3j" - }, - "followers": { - "href": null, - "total": 11296082 - }, - "genres": [ - "canadian pop", - "candy pop", - "dance pop", - "pop" - ], - "href": "https://api.spotify.com/v1/artists/0p4nmQO2msCgU4IF37Wi3j", - "id": "0p4nmQO2msCgU4IF37Wi3j", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5c3349ddba6b8e064c1bab16", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745c3349ddba6b8e064c1bab16", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785c3349ddba6b8e064c1bab16", - "width": 160 - } - ], - "name": "Avril Lavigne", - "popularity": 78, - "type": "artist", - "uri": "spotify:artist:0p4nmQO2msCgU4IF37Wi3j" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" - }, - "followers": { - "href": null, - "total": 328873 - }, - "genres": [ - "finnish heavy metal", - "finnish power metal", - "power metal" - ], - "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", - "id": "0rEuaTPLMhlViNCJrg3NEH", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb7b60ba4ab40815357c713dc2", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051747b60ba4ab40815357c713dc2", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1787b60ba4ab40815357c713dc2", - "width": 160 - } - ], - "name": "Beast In Black", - "popularity": 62, - "type": "artist", - "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0uBVyPbLZRDNEBiA4fZUlp" - }, - "followers": { - "href": null, - "total": 106750 - }, - "genres": [ - "dutch indie", - "dutch pop" - ], - "href": "https://api.spotify.com/v1/artists/0uBVyPbLZRDNEBiA4fZUlp", - "id": "0uBVyPbLZRDNEBiA4fZUlp", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebf6cb4b106fe956c95d243a1f", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174f6cb4b106fe956c95d243a1f", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178f6cb4b106fe956c95d243a1f", - "width": 160 - } - ], - "name": "Froukje", - "popularity": 61, - "type": "artist", - "uri": "spotify:artist:0uBVyPbLZRDNEBiA4fZUlp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/10GT4yz8c6xjjnPGtGPI1l" - }, - "followers": { - "href": null, - "total": 167671 - }, - "genres": [ - "funktronica", - "indie soul" - ], - "href": "https://api.spotify.com/v1/artists/10GT4yz8c6xjjnPGtGPI1l", - "id": "10GT4yz8c6xjjnPGtGPI1l", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebb0debcb6b7015f1a7a1bfaa0", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174b0debcb6b7015f1a7a1bfaa0", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178b0debcb6b7015f1a7a1bfaa0", - "width": 160 - } - ], - "name": "Franc Moody", - "popularity": 56, - "type": "artist", - "uri": "spotify:artist:10GT4yz8c6xjjnPGtGPI1l" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" - }, - "followers": { - "href": null, - "total": 5293 - }, - "genres": [ - "popwave" - ], - "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", - "id": "17IDrizGUiveZm4P77Kkio", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb712d292bff8648aa62c2dad4", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174712d292bff8648aa62c2dad4", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178712d292bff8648aa62c2dad4", - "width": 160 - } - ], - "name": "Icarus", - "popularity": 30, - "type": "artist", - "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1A6zWJwn4XmdZZgob3wYPM" - }, - "followers": { - "href": null, - "total": 43271 - }, - "genres": [ - "dutch indie", - "dutch pop", - "dutch rock" - ], - "href": "https://api.spotify.com/v1/artists/1A6zWJwn4XmdZZgob3wYPM", - "id": "1A6zWJwn4XmdZZgob3wYPM", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5022973615b58f2756ab3ff3", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745022973615b58f2756ab3ff3", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785022973615b58f2756ab3ff3", - "width": 160 - } - ], - "name": "Blaudzun", - "popularity": 36, - "type": "artist", - "uri": "spotify:artist:1A6zWJwn4XmdZZgob3wYPM" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "followers": { - "href": null, - "total": 56685 - }, - "genres": [ - "canadian electronic", - "future bass", - "pop edm" - ], - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebbfa0f25d3d775e4892e0add3", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174bfa0f25d3d775e4892e0add3", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178bfa0f25d3d775e4892e0add3", - "width": 160 - } - ], - "name": "Conro", - "popularity": 48, - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" - }, - "followers": { - "href": null, - "total": 26253660 - }, - "genres": [ - "big room", - "dance pop", - "edm", - "pop", - "pop dance" - ], - "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", - "id": "1Cs0zKBU1kc0i8ypK3B9ai", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebf150017ca69c8793503c2d4f", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174f150017ca69c8793503c2d4f", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178f150017ca69c8793503c2d4f", - "width": 160 - } - ], - "name": "David Guetta", - "popularity": 90, - "type": "artist", - "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1DbXVMdQqNejIYLU2xsIMi" - }, - "followers": { - "href": null, - "total": 966 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1DbXVMdQqNejIYLU2xsIMi", - "id": "1DbXVMdQqNejIYLU2xsIMi", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8", - "width": 160 - } - ], - "name": "Ryan Ritual", - "popularity": 15, - "type": "artist", - "uri": "spotify:artist:1DbXVMdQqNejIYLU2xsIMi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "followers": { - "href": null, - "total": 2572687 - }, - "genres": [ - "brighton indie", - "garage rock", - "modern rock", - "rock" - ], - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebd263e0042b36fd357c8c7cdb", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174d263e0042b36fd357c8c7cdb", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178d263e0042b36fd357c8c7cdb", - "width": 160 - } - ], - "name": "The Kooks", - "popularity": 69, - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1LOB7jTeEV14pHai6EXSzF" - }, - "followers": { - "href": null, - "total": 689740 - }, - "genres": [ - "dance pop", - "edm", - "electro house", - "electropowerpop", - "pop dance" - ], - "href": "https://api.spotify.com/v1/artists/1LOB7jTeEV14pHai6EXSzF", - "id": "1LOB7jTeEV14pHai6EXSzF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebc6b0d99b1a736712a1653d6a", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174c6b0d99b1a736712a1653d6a", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178c6b0d99b1a736712a1653d6a", - "width": 160 - } - ], - "name": "Cash Cash", - "popularity": 60, - "type": "artist", - "uri": "spotify:artist:1LOB7jTeEV14pHai6EXSzF" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1QOHbhVRpDoNtRkz79si6b" - }, - "followers": { - "href": null, - "total": 58781 - }, - "genres": [ - "house", - "pop dance", - "uk dance" - ], - "href": "https://api.spotify.com/v1/artists/1QOHbhVRpDoNtRkz79si6b", - "id": "1QOHbhVRpDoNtRkz79si6b", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb403bad456309541432feb79b", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174403bad456309541432feb79b", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178403bad456309541432feb79b", - "width": 160 - } - ], - "name": "Karen Harding", - "popularity": 57, - "type": "artist", - "uri": "spotify:artist:1QOHbhVRpDoNtRkz79si6b" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1eK59pkylGGka9wRUEKVXt" - }, - "followers": { - "href": null, - "total": 10195 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1eK59pkylGGka9wRUEKVXt", - "id": "1eK59pkylGGka9wRUEKVXt", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb7b6e73b581c807a49a146eb6", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051747b6e73b581c807a49a146eb6", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1787b6e73b581c807a49a146eb6", - "width": 160 - } - ], - "name": "Chris Brochu", - "popularity": 31, - "type": "artist", - "uri": "spotify:artist:1eK59pkylGGka9wRUEKVXt" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1ho3p0XM4jDk7n9NUOekbp" - }, - "followers": { - "href": null, - "total": 11632 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1ho3p0XM4jDk7n9NUOekbp", - "id": "1ho3p0XM4jDk7n9NUOekbp", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736d5999b6e7e2dd2fd19f88f8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026d5999b6e7e2dd2fd19f88f8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516d5999b6e7e2dd2fd19f88f8", - "width": 64 - } - ], - "name": "Inthelittlewood", - "popularity": 11, - "type": "artist", - "uri": "spotify:artist:1ho3p0XM4jDk7n9NUOekbp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1kDGbuxWknIKx4FlgWxiSp" - }, - "followers": { - "href": null, - "total": 1222077 - }, - "genres": [ - "alternative pop rock", - "modern alternative rock", - "modern rock" - ], - "href": "https://api.spotify.com/v1/artists/1kDGbuxWknIKx4FlgWxiSp", - "id": "1kDGbuxWknIKx4FlgWxiSp", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57", - "width": 160 - } - ], - "name": "Nothing But Thieves", - "popularity": 67, - "type": "artist", - "uri": "spotify:artist:1kDGbuxWknIKx4FlgWxiSp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "followers": { - "href": null, - "total": 23051614 - }, - "genres": [ - "dance pop", - "edm", - "pop", - "pop dance" - ], - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebae07171f989fb39736674113", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174ae07171f989fb39736674113", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178ae07171f989fb39736674113", - "width": 160 - } - ], - "name": "Avicii", - "popularity": 82, - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" - }, - "followers": { - "href": null, - "total": 305516 - }, - "genres": [ - "house", - "pop dance" - ], - "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", - "id": "1yqxFtPHKcGcv6SXZNdyT9", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebffa0888ff64a510cbf665855", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174ffa0888ff64a510cbf665855", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178ffa0888ff64a510cbf665855", - "width": 160 - } - ], - "name": "MK", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/23fqKkggKUBHNkbKtXEls4" - }, - "followers": { - "href": null, - "total": 8458659 - }, - "genres": [ - "edm", - "pop", - "pop dance", - "tropical house" - ], - "href": "https://api.spotify.com/v1/artists/23fqKkggKUBHNkbKtXEls4", - "id": "23fqKkggKUBHNkbKtXEls4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebe5ea1aa1404629c12ad86658", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174e5ea1aa1404629c12ad86658", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178e5ea1aa1404629c12ad86658", - "width": 160 - } - ], - "name": "Kygo", - "popularity": 82, - "type": "artist", - "uri": "spotify:artist:23fqKkggKUBHNkbKtXEls4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2NZMqINcyfepvLxQJdzcZk" - }, - "followers": { - "href": null, - "total": 52774 - }, - "genres": [ - "gaming edm" - ], - "href": "https://api.spotify.com/v1/artists/2NZMqINcyfepvLxQJdzcZk", - "id": "2NZMqINcyfepvLxQJdzcZk", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb96b6d4d0d0f43bd50216f22e", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517496b6d4d0d0f43bd50216f22e", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17896b6d4d0d0f43bd50216f22e", - "width": 160 - } - ], - "name": "Lensko", - "popularity": 41, - "type": "artist", - "uri": "spotify:artist:2NZMqINcyfepvLxQJdzcZk" - } - ], - "next": "https://api.spotify.com/v1/me/following?type=artist&limit=20&locale=en-US,en;q=0.5&after=2NZMqINcyfepvLxQJdzcZk", - "total": 74, - "cursors": { - "after": "2NZMqINcyfepvLxQJdzcZk" - }, - "limit": 20, - "href": "https://api.spotify.com/v1/me/following?type=artist&limit=20&locale=en-US,en;q=0.5" - } + "artists": { + "href": "https://api.spotify.com/v1/me/following?type=artist&limit=48", + "limit": 48, + "next": "https://api.spotify.com/v1/me/following?type=artist&limit=48&after=7CajNmpbOovFoOoasH2HaY", + "cursors": { "after": "7CajNmpbOovFoOoasH2HaY" }, + "total": 83, + "items": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49RPyTk0BluLrg3scWFCOw" + }, + "followers": { "href": null, "total": 9445 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/49RPyTk0BluLrg3scWFCOw", + "id": "49RPyTk0BluLrg3scWFCOw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6c0e10129c7d490c1b2f43a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746c0e10129c7d490c1b2f43a1", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786c0e10129c7d490c1b2f43a1", + "height": 160, + "width": 160 + } + ], + "name": "The Excellent Man from Minneapolis", + "popularity": 22, + "type": "artist", + "uri": "spotify:artist:49RPyTk0BluLrg3scWFCOw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" + }, + "followers": { "href": null, "total": 57004 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", + "id": "0r6IrOHMBaKiiZPV1zeIu2", + "images": [ + { + "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", + "height": 1000, + "width": 1000 + }, + { + "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", + "height": 200, + "width": 200 + }, + { + "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", + "height": 64, + "width": 64 + } + ], + "name": "Follow The Cipher", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "followers": { "href": null, "total": 153014 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16", + "height": 160, + "width": 160 + } + ], + "name": "Confidence Man", + "popularity": 52, + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "followers": { "href": null, "total": 1734133 }, + "genres": ["chillwave", "chillstep"], + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", + "height": 160, + "width": 160 + } + ], + "name": "ODESZA", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "followers": { "href": null, "total": 961706 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", + "height": 160, + "width": 160 + } + ], + "name": "Jamie xx", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" + }, + "followers": { "href": null, "total": 146164 }, + "genres": ["slap house"], + "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", + "id": "25sJFKMqDENdsTF7zRXoif", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", + "height": 160, + "width": 160 + } + ], + "name": "Klaas", + "popularity": 63, + "type": "artist", + "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "followers": { "href": null, "total": 82823 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb7525b42a023687841595bbd3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051747525b42a023687841595bbd3", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1787525b42a023687841595bbd3", + "height": 160, + "width": 160 + } + ], + "name": "Abor & Tynna", + "popularity": 48, + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" + }, + "followers": { "href": null, "total": 29781 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", + "id": "5UlJRJmlRLhQJX8lJuerVq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", + "height": 160, + "width": 160 + } + ], + "name": "Telenova", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "followers": { "href": null, "total": 4101737 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb", + "height": 160, + "width": 160 + } + ], + "name": "Foster The People", + "popularity": 69, + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" + }, + "followers": { "href": null, "total": 621 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", + "id": "74Yus6IHfa3tWZzXXAYtS2", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eba38b7b74df480f484747aa5e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174a38b7b74df480f484747aa5e", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178a38b7b74df480f484747aa5e", + "height": 160, + "width": 160 + } + ], + "name": "Onkruid", + "popularity": 7, + "type": "artist", + "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66FZq0wsY6770bc4O9Dlig" + }, + "followers": { "href": null, "total": 217533 }, + "genres": [ + "hard techno", + "techno", + "tekno", + "gabber", + "hardcore techno", + "hardcore" + ], + "href": "https://api.spotify.com/v1/artists/66FZq0wsY6770bc4O9Dlig", + "id": "66FZq0wsY6770bc4O9Dlig", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb86c24ac383ac8bac2abf3490", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517486c24ac383ac8bac2abf3490", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17886c24ac383ac8bac2abf3490", + "height": 160, + "width": 160 + } + ], + "name": "Vieze Asbak", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:66FZq0wsY6770bc4O9Dlig" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "followers": { "href": null, "total": 1011655 }, + "genres": ["downtempo", "electronica", "trip hop"], + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6bc3053447db6b61f3fe444c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746bc3053447db6b61f3fe444c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786bc3053447db6b61f3fe444c", + "height": 160, + "width": 160 + } + ], + "name": "R\u00f6yksopp", + "popularity": 59, + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vhrwzjf9H3icunkVFi9tq" + }, + "followers": { "href": null, "total": 361828 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/2vhrwzjf9H3icunkVFi9tq", + "id": "2vhrwzjf9H3icunkVFi9tq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe3bfc7d382ee69ad39301bf3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e3bfc7d382ee69ad39301bf3", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e3bfc7d382ee69ad39301bf3", + "height": 160, + "width": 160 + } + ], + "name": "Smash Into Pieces", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:2vhrwzjf9H3icunkVFi9tq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" + }, + "followers": { "href": null, "total": 6368 }, + "genres": ["synthwave", "synthpop", "indie dance"], + "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", + "id": "17IDrizGUiveZm4P77Kkio", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb865270a866f29852ee53fa3f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174865270a866f29852ee53fa3f", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178865270a866f29852ee53fa3f", + "height": 160, + "width": 160 + } + ], + "name": "Icarus", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "followers": { "href": null, "total": 981067 }, + "genres": ["gabber", "europop"], + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", + "height": 160, + "width": 160 + } + ], + "name": "Joost", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7FdBcGYvnLdBA3thdl1jpO" + }, + "followers": { "href": null, "total": 679 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7FdBcGYvnLdBA3thdl1jpO", + "id": "7FdBcGYvnLdBA3thdl1jpO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb08d114a81d91a2a9c9fe54c4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517408d114a81d91a2a9c9fe54c4", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17808d114a81d91a2a9c9fe54c4", + "height": 160, + "width": 160 + } + ], + "name": "Scarjen", + "popularity": 0, + "type": "artist", + "uri": "spotify:artist:7FdBcGYvnLdBA3thdl1jpO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1QOHbhVRpDoNtRkz79si6b" + }, + "followers": { "href": null, "total": 65031 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1QOHbhVRpDoNtRkz79si6b", + "id": "1QOHbhVRpDoNtRkz79si6b", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb17117582d67a9817d018ba55", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517417117582d67a9817d018ba55", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17817117582d67a9817d018ba55", + "height": 160, + "width": 160 + } + ], + "name": "Karen Harding", + "popularity": 53, + "type": "artist", + "uri": "spotify:artist:1QOHbhVRpDoNtRkz79si6b" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "followers": { "href": null, "total": 2464287 }, + "genres": ["stutter house", "house", "edm"], + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", + "height": 160, + "width": 160 + } + ], + "name": "Fred again..", + "popularity": 78, + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1DbXVMdQqNejIYLU2xsIMi" + }, + "followers": { "href": null, "total": 1033 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1DbXVMdQqNejIYLU2xsIMi", + "id": "1DbXVMdQqNejIYLU2xsIMi", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8", + "height": 160, + "width": 160 + } + ], + "name": "Ryan Ritual", + "popularity": 6, + "type": "artist", + "uri": "spotify:artist:1DbXVMdQqNejIYLU2xsIMi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "followers": { "href": null, "total": 1144334 }, + "genres": ["indie soul"], + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", + "height": 160, + "width": 160 + } + ], + "name": "Parcels", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "followers": { "href": null, "total": 172224 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", + "height": 160, + "width": 160 + } + ], + "name": "Alfie Templeman", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wF7Cde0abKtrbCj1Gcow7" + }, + "followers": { "href": null, "total": 1848 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5wF7Cde0abKtrbCj1Gcow7", + "id": "5wF7Cde0abKtrbCj1Gcow7", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb30aaa02dea97e4836793acfa", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517430aaa02dea97e4836793acfa", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17830aaa02dea97e4836793acfa", + "height": 160, + "width": 160 + } + ], + "name": "Only Seven Left", + "popularity": 9, + "type": "artist", + "uri": "spotify:artist:5wF7Cde0abKtrbCj1Gcow7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/56X1AGaHZthmkHfMZTcvnY" + }, + "followers": { "href": null, "total": 838 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/56X1AGaHZthmkHfMZTcvnY", + "id": "56X1AGaHZthmkHfMZTcvnY", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6e47926f9b3da6014495b505", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746e47926f9b3da6014495b505", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786e47926f9b3da6014495b505", + "height": 160, + "width": 160 + } + ], + "name": "Lustrum Albertus Magnus", + "popularity": 20, + "type": "artist", + "uri": "spotify:artist:56X1AGaHZthmkHfMZTcvnY" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" + }, + "followers": { "href": null, "total": 1282232 }, + "genres": [ + "power metal", + "speed metal", + "metal", + "symphonic metal" + ], + "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", + "id": "2pH3wEn4eYlMMIIQyKPbVR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", + "height": 160, + "width": 160 + } + ], + "name": "DragonForce", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "followers": { "href": null, "total": 154064 }, + "genres": ["nederpop", "hollands"], + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", + "height": 160, + "width": 160 + } + ], + "name": "Goldband", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4IF11U0nzFhAaLDGZH3vSx" + }, + "followers": { "href": null, "total": 175524 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4IF11U0nzFhAaLDGZH3vSx", + "id": "4IF11U0nzFhAaLDGZH3vSx", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb2fd30c40ef0995f9e884121c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051742fd30c40ef0995f9e884121c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1782fd30c40ef0995f9e884121c", + "height": 160, + "width": 160 + } + ], + "name": "RichaadEB", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:4IF11U0nzFhAaLDGZH3vSx" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/10GT4yz8c6xjjnPGtGPI1l" + }, + "followers": { "href": null, "total": 189669 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/10GT4yz8c6xjjnPGtGPI1l", + "id": "10GT4yz8c6xjjnPGtGPI1l", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb96a091a0f6f5b83e6c0ce41e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517496a091a0f6f5b83e6c0ce41e", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17896a091a0f6f5b83e6c0ce41e", + "height": 160, + "width": 160 + } + ], + "name": "Franc Moody", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:10GT4yz8c6xjjnPGtGPI1l" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1kDGbuxWknIKx4FlgWxiSp" + }, + "followers": { "href": null, "total": 1356513 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1kDGbuxWknIKx4FlgWxiSp", + "id": "1kDGbuxWknIKx4FlgWxiSp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57", + "height": 160, + "width": 160 + } + ], + "name": "Nothing But Thieves", + "popularity": 62, + "type": "artist", + "uri": "spotify:artist:1kDGbuxWknIKx4FlgWxiSp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0uBVyPbLZRDNEBiA4fZUlp" + }, + "followers": { "href": null, "total": 120715 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/0uBVyPbLZRDNEBiA4fZUlp", + "id": "0uBVyPbLZRDNEBiA4fZUlp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb88e1735fe7e1b00d7203e13a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517488e1735fe7e1b00d7203e13a", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17888e1735fe7e1b00d7203e13a", + "height": 160, + "width": 160 + } + ], + "name": "Froukje", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:0uBVyPbLZRDNEBiA4fZUlp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "followers": { "href": null, "total": 740284 }, + "genres": ["norwegian pop"], + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", + "height": 160, + "width": 160 + } + ], + "name": "Sigrid", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "followers": { "href": null, "total": 85930 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb988f5c8a44e2ecf58ee7b282", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174988f5c8a44e2ecf58ee7b282", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178988f5c8a44e2ecf58ee7b282", + "height": 160, + "width": 160 + } + ], + "name": "Litany", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7EuzcvdfScUqksgKfyN7J0" + }, + "followers": { "href": null, "total": 12394 }, + "genres": ["dansk pop", "dansktop"], + "href": "https://api.spotify.com/v1/artists/7EuzcvdfScUqksgKfyN7J0", + "id": "7EuzcvdfScUqksgKfyN7J0", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebc9fd64f340405adebbabbbb1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174c9fd64f340405adebbabbbb1", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178c9fd64f340405adebbabbbb1", + "height": 160, + "width": 160 + } + ], + "name": "Fyr Og Flamme", + "popularity": 29, + "type": "artist", + "uri": "spotify:artist:7EuzcvdfScUqksgKfyN7J0" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/37yradccJvSdTTA2Ol112q" + }, + "followers": { "href": null, "total": 7904 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/37yradccJvSdTTA2Ol112q", + "id": "37yradccJvSdTTA2Ol112q", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb02705fb156e30c3e086a9a17", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517402705fb156e30c3e086a9a17", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17802705fb156e30c3e086a9a17", + "height": 160, + "width": 160 + } + ], + "name": "Brett Domino", + "popularity": 17, + "type": "artist", + "uri": "spotify:artist:37yradccJvSdTTA2Ol112q" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "followers": { "href": null, "total": 399626 }, + "genres": ["power metal", "symphonic metal", "metal"], + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", + "height": 160, + "width": 160 + } + ], + "name": "Beast In Black", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "followers": { "href": null, "total": 2506437 }, + "genres": [ + "power metal", + "metal", + "heavy metal", + "symphonic metal", + "folk metal" + ], + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", + "height": 160, + "width": 160 + } + ], + "name": "Sabaton", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" + }, + "followers": { "href": null, "total": 874156 }, + "genres": ["disco house", "nu disco", "funky house", "house"], + "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", + "id": "2WBJQGf1bT1kxuoqziH5g4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7", + "height": 160, + "width": 160 + } + ], + "name": "Purple Disco Machine", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Dd3NScHWwnW6obMFbl1BH" + }, + "followers": { "href": null, "total": 1918680 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6Dd3NScHWwnW6obMFbl1BH", + "id": "6Dd3NScHWwnW6obMFbl1BH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe79374211456f3edbb005e2c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e79374211456f3edbb005e2c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e79374211456f3edbb005e2c", + "height": 160, + "width": 160 + } + ], + "name": "Daya", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:6Dd3NScHWwnW6obMFbl1BH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7s666LjS611IPQ63Clon0r" + }, + "followers": { "href": null, "total": 884 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7s666LjS611IPQ63Clon0r", + "id": "7s666LjS611IPQ63Clon0r", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb40afab9ab091f76e7948ea16", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517440afab9ab091f76e7948ea16", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17840afab9ab091f76e7948ea16", + "height": 160, + "width": 160 + } + ], + "name": "Sunday Avenue", + "popularity": 5, + "type": "artist", + "uri": "spotify:artist:7s666LjS611IPQ63Clon0r" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/760CXsrIDEEqLxeF2x4tRO" + }, + "followers": { "href": null, "total": 21371 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/760CXsrIDEEqLxeF2x4tRO", + "id": "760CXsrIDEEqLxeF2x4tRO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb102dde38e9c72ced7033d34d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174102dde38e9c72ced7033d34d", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178102dde38e9c72ced7033d34d", + "height": 160, + "width": 160 + } + ], + "name": "Maestro Ziikos", + "popularity": 25, + "type": "artist", + "uri": "spotify:artist:760CXsrIDEEqLxeF2x4tRO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Egoy0UuRKksBWzmGYzd68" + }, + "followers": { "href": null, "total": 77 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7Egoy0UuRKksBWzmGYzd68", + "id": "7Egoy0UuRKksBWzmGYzd68", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb83b9ffb1f6cd3975392af7f7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517483b9ffb1f6cd3975392af7f7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17883b9ffb1f6cd3975392af7f7", + "height": 160, + "width": 160 + } + ], + "name": "YENO", + "popularity": 0, + "type": "artist", + "uri": "spotify:artist:7Egoy0UuRKksBWzmGYzd68" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/751YCAfHx8dQSUbAN8Q9dl" + }, + "followers": { "href": null, "total": 545 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/751YCAfHx8dQSUbAN8Q9dl", + "id": "751YCAfHx8dQSUbAN8Q9dl", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb253147018c2d40ef1c0cdacd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174253147018c2d40ef1c0cdacd", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178253147018c2d40ef1c0cdacd", + "height": 160, + "width": 160 + } + ], + "name": "Nicolas Kanza", + "popularity": 2, + "type": "artist", + "uri": "spotify:artist:751YCAfHx8dQSUbAN8Q9dl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "followers": { "href": null, "total": 59839 }, + "genres": ["future bass"], + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb73c480b64dd16ef5d6396265", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517473c480b64dd16ef5d6396265", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17873c480b64dd16ef5d6396265", + "height": 160, + "width": 160 + } + ], + "name": "Conro", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4AQrqVz6BYwy29iMxcGtx7" + }, + "followers": { "href": null, "total": 310628 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/4AQrqVz6BYwy29iMxcGtx7", + "id": "4AQrqVz6BYwy29iMxcGtx7", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb05858f274692344c6f5ee13a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517405858f274692344c6f5ee13a", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17805858f274692344c6f5ee13a", + "height": 160, + "width": 160 + } + ], + "name": "Roosevelt", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:4AQrqVz6BYwy29iMxcGtx7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6jDwZUFYUH1dC4xWzOd8QU" + }, + "followers": { "href": null, "total": 318962 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6jDwZUFYUH1dC4xWzOd8QU", + "id": "6jDwZUFYUH1dC4xWzOd8QU", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebfc761f5e2d8f6db4dfaaa5ca", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174fc761f5e2d8f6db4dfaaa5ca", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178fc761f5e2d8f6db4dfaaa5ca", + "height": 160, + "width": 160 + } + ], + "name": "Caleb Hyles", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:6jDwZUFYUH1dC4xWzOd8QU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" + }, + "followers": { "href": null, "total": 372904 }, + "genres": ["house"], + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe85ae0ce3fe84474211ef54b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e85ae0ce3fe84474211ef54b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e85ae0ce3fe84474211ef54b", + "height": 160, + "width": 160 + } + ], + "name": "MK", + "popularity": 67, + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Gk5hoM7eW8NSCYhICMDHw" + }, + "followers": { "href": null, "total": 179757 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6Gk5hoM7eW8NSCYhICMDHw", + "id": "6Gk5hoM7eW8NSCYhICMDHw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebf30f0f0e7f93877befa196af", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174f30f0f0e7f93877befa196af", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178f30f0f0e7f93877befa196af", + "height": 160, + "width": 160 + } + ], + "name": "Zak Abel", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:6Gk5hoM7eW8NSCYhICMDHw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "followers": { "href": null, "total": 946656 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebd6f6bf343b8bf12f12dc1a25", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174d6f6bf343b8bf12f12dc1a25", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178d6f6bf343b8bf12f12dc1a25", + "height": 160, + "width": 160 + } + ], + "name": "Becky Hill", + "popularity": 67, + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7CajNmpbOovFoOoasH2HaY" + }, + "followers": { "href": null, "total": 23296885 }, + "genres": ["edm"], + "href": "https://api.spotify.com/v1/artists/7CajNmpbOovFoOoasH2HaY", + "id": "7CajNmpbOovFoOoasH2HaY", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8ebba5e60113b48de8c11f6b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051748ebba5e60113b48de8c11f6b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788ebba5e60113b48de8c11f6b", + "height": 160, + "width": 160 + } + ], + "name": "Calvin Harris", + "popularity": 84, + "type": "artist", + "uri": "spotify:artist:7CajNmpbOovFoOoasH2HaY" + } + ] + } } diff --git a/tests/fixtures/get_album.json b/tests/fixtures/get_album.json index 245871d..632a2f2 100644 --- a/tests/fixtures/get_album.json +++ b/tests/fixtures/get_album.json @@ -1,389 +1,2613 @@ { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "copyrights": [ - { - "text": "2020 Smihilism Records", - "type": "C" - }, - { - "text": "2020 Smihilism Records", - "type": "P" - } - ], - "external_ids": { - "upc": "195916707034" - }, - "external_urls": { - "spotify": "https://open.spotify.com/album/3IqzqH6ShrRtie9Yd2ODyG" - }, - "genres": [], - "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG", - "id": "3IqzqH6ShrRtie9Yd2ODyG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a61a28c2f084761f8833bce6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a61a28c2f084761f8833bce6", - "width": 300 + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3IqzqH6ShrRtie9Yd2ODyG" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a61a28c2f084761f8833bce6", - "width": 64 - } - ], - "label": "Smihilism Records", - "name": "SINGLARITY", - "popularity": 29, - "release_date": "2020-12-18", - "release_date_precision": "day", - "total_tracks": 11, - "tracks": { - "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG/tracks?offset=0&limit=50&locale=en-US,en;q=0.5", - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 260372, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6akJGriy4njdP8fZTPGjwz" + "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG", + "id": "3IqzqH6ShrRtie9Yd2ODyG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a61a28c2f084761f8833bce6", + "height": 640, + "width": 640 }, - "href": "https://api.spotify.com/v1/tracks/6akJGriy4njdP8fZTPGjwz", - "id": "6akJGriy4njdP8fZTPGjwz", - "is_local": false, - "name": "All Your Friends", - "preview_url": "https://p.scdn.co/mp3-preview/484344e579edfdb8e8f872d73299aff2c3d0369d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:6akJGriy4njdP8fZTPGjwz" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 206613, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7N02bJK1amhplZ8yAapRS5" + { + "url": "https://i.scdn.co/image/ab67616d00001e02a61a28c2f084761f8833bce6", + "height": 300, + "width": 300 }, - "href": "https://api.spotify.com/v1/tracks/7N02bJK1amhplZ8yAapRS5", - "id": "7N02bJK1amhplZ8yAapRS5", - "is_local": false, - "name": "New Magiks", - "preview_url": "https://p.scdn.co/mp3-preview/b59a5a73ed2e9a61be471822993e91210d5f255a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:7N02bJK1amhplZ8yAapRS5" - }, - { - "artists": [ - { + { + "url": "https://i.scdn.co/image/ab67616d00004851a61a28c2f084761f8833bce6", + "height": 64, + "width": 64 + } + ], + "name": "SINGLARITY", + "release_date": "2020-12-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", "id": "3jULn43a6xfzqleyeFjPIq", "name": "Area 11", "type": "artist", "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 237266, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6wcBBzmaXHTfg6xNWtjhal" - }, - "href": "https://api.spotify.com/v1/tracks/6wcBBzmaXHTfg6xNWtjhal", - "id": "6wcBBzmaXHTfg6xNWtjhal", - "is_local": false, - "name": "Everybody Gets a Piece", - "preview_url": "https://p.scdn.co/mp3-preview/f188217a17a942136908535dcb6bfa7dd2055006?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:6wcBBzmaXHTfg6xNWtjhal" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 260372, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6akJGriy4njdP8fZTPGjwz" + }, + "href": "https://api.spotify.com/v1/tracks/6akJGriy4njdP8fZTPGjwz", + "id": "6akJGriy4njdP8fZTPGjwz", + "name": "All Your Friends", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6akJGriy4njdP8fZTPGjwz", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 244813, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6S1fviwvPfMGD7kk6oAZQN" - }, - "href": "https://api.spotify.com/v1/tracks/6S1fviwvPfMGD7kk6oAZQN", - "id": "6S1fviwvPfMGD7kk6oAZQN", - "is_local": false, - "name": "Curtain Fall", - "preview_url": "https://p.scdn.co/mp3-preview/8d123660acba414d4f711dc88df31b57bbc18d92?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:6S1fviwvPfMGD7kk6oAZQN" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206613, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7N02bJK1amhplZ8yAapRS5" + }, + "href": "https://api.spotify.com/v1/tracks/7N02bJK1amhplZ8yAapRS5", + "id": "7N02bJK1amhplZ8yAapRS5", + "name": "New Magiks", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7N02bJK1amhplZ8yAapRS5", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 227517, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0HeSCiPSm1d6V7b4CMHPo3" - }, - "href": "https://api.spotify.com/v1/tracks/0HeSCiPSm1d6V7b4CMHPo3", - "id": "0HeSCiPSm1d6V7b4CMHPo3", - "is_local": false, - "name": "Tear Up", - "preview_url": "https://p.scdn.co/mp3-preview/211cc8b80b81c5c7b9a58a78458637b0d9b322f1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:0HeSCiPSm1d6V7b4CMHPo3" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 237266, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wcBBzmaXHTfg6xNWtjhal" + }, + "href": "https://api.spotify.com/v1/tracks/6wcBBzmaXHTfg6xNWtjhal", + "id": "6wcBBzmaXHTfg6xNWtjhal", + "name": "Everybody Gets a Piece", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6wcBBzmaXHTfg6xNWtjhal", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 231891, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/72Q66d8akZekf6AQH414nc" - }, - "href": "https://api.spotify.com/v1/tracks/72Q66d8akZekf6AQH414nc", - "id": "72Q66d8akZekf6AQH414nc", - "is_local": false, - "name": "ØCULIST", - "preview_url": "https://p.scdn.co/mp3-preview/9acf7326540f41097d24055d0bd36bfb88489efa?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:72Q66d8akZekf6AQH414nc" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244813, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6S1fviwvPfMGD7kk6oAZQN" + }, + "href": "https://api.spotify.com/v1/tracks/6S1fviwvPfMGD7kk6oAZQN", + "id": "6S1fviwvPfMGD7kk6oAZQN", + "name": "Curtain Fall", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6S1fviwvPfMGD7kk6oAZQN", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 235540, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2X34r3wmh9KhM1LrohGotI" - }, - "href": "https://api.spotify.com/v1/tracks/2X34r3wmh9KhM1LrohGotI", - "id": "2X34r3wmh9KhM1LrohGotI", - "is_local": false, - "name": "Kaleidoscope", - "preview_url": "https://p.scdn.co/mp3-preview/e1aff7e222df30e25b1e7019bc2570e88b9e0f46?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:2X34r3wmh9KhM1LrohGotI" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227517, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0HeSCiPSm1d6V7b4CMHPo3" + }, + "href": "https://api.spotify.com/v1/tracks/0HeSCiPSm1d6V7b4CMHPo3", + "id": "0HeSCiPSm1d6V7b4CMHPo3", + "name": "Tear Up", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0HeSCiPSm1d6V7b4CMHPo3", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 264000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4QGWwmBFhq38PpGj0jRBZg" - }, - "href": "https://api.spotify.com/v1/tracks/4QGWwmBFhq38PpGj0jRBZg", - "id": "4QGWwmBFhq38PpGj0jRBZg", - "is_local": false, - "name": "Desaturate", - "preview_url": "https://p.scdn.co/mp3-preview/bd9144d2c92d9edd0a978bcb5ce1acf8a687ea1c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:4QGWwmBFhq38PpGj0jRBZg" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231891, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/72Q66d8akZekf6AQH414nc" + }, + "href": "https://api.spotify.com/v1/tracks/72Q66d8akZekf6AQH414nc", + "id": "72Q66d8akZekf6AQH414nc", + "name": "\u00d8CULIST", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:72Q66d8akZekf6AQH414nc", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 234493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1DPGkXCZA2j9Eu98rrNcoj" - }, - "href": "https://api.spotify.com/v1/tracks/1DPGkXCZA2j9Eu98rrNcoj", - "id": "1DPGkXCZA2j9Eu98rrNcoj", - "is_local": false, - "name": "(Break) In Case Of...", - "preview_url": "https://p.scdn.co/mp3-preview/2aa50019c9bc8d4fcf0ec1c1bbd09aee51c35b06?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:1DPGkXCZA2j9Eu98rrNcoj" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 235540, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2X34r3wmh9KhM1LrohGotI" + }, + "href": "https://api.spotify.com/v1/tracks/2X34r3wmh9KhM1LrohGotI", + "id": "2X34r3wmh9KhM1LrohGotI", + "name": "Kaleidoscope", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2X34r3wmh9KhM1LrohGotI", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 267080, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6FcIiMd7sJSCNweLf6ZRsk" - }, - "href": "https://api.spotify.com/v1/tracks/6FcIiMd7sJSCNweLf6ZRsk", - "id": "6FcIiMd7sJSCNweLf6ZRsk", - "is_local": false, - "name": "Dancing on the Head of a Pin", - "preview_url": "https://p.scdn.co/mp3-preview/e6be7af11ef6041639b3d9a5402c90228b5cc0e4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:6FcIiMd7sJSCNweLf6ZRsk" - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 264000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4QGWwmBFhq38PpGj0jRBZg" + }, + "href": "https://api.spotify.com/v1/tracks/4QGWwmBFhq38PpGj0jRBZg", + "id": "4QGWwmBFhq38PpGj0jRBZg", + "name": "Desaturate", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4QGWwmBFhq38PpGj0jRBZg", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 288493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/49i0yyGEPxP19NpGhNhsTv" - }, - "href": "https://api.spotify.com/v1/tracks/49i0yyGEPxP19NpGhNhsTv", - "id": "49i0yyGEPxP19NpGhNhsTv", - "is_local": false, - "name": "Singularity", - "preview_url": "https://p.scdn.co/mp3-preview/cb60391551d8cdea6d0f8359eaa912c9a3320349?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:49i0yyGEPxP19NpGhNhsTv" - } + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 234493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1DPGkXCZA2j9Eu98rrNcoj" + }, + "href": "https://api.spotify.com/v1/tracks/1DPGkXCZA2j9Eu98rrNcoj", + "id": "1DPGkXCZA2j9Eu98rrNcoj", + "name": "(Break) In Case Of...", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1DPGkXCZA2j9Eu98rrNcoj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6FcIiMd7sJSCNweLf6ZRsk" + }, + "href": "https://api.spotify.com/v1/tracks/6FcIiMd7sJSCNweLf6ZRsk", + "id": "6FcIiMd7sJSCNweLf6ZRsk", + "name": "Dancing on the Head of a Pin", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6FcIiMd7sJSCNweLf6ZRsk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 288493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/49i0yyGEPxP19NpGhNhsTv" + }, + "href": "https://api.spotify.com/v1/tracks/49i0yyGEPxP19NpGhNhsTv", + "id": "49i0yyGEPxP19NpGhNhsTv", + "name": "Singularity", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:49i0yyGEPxP19NpGhNhsTv", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2020 Smihilism Records", "type": "C" }, + { "text": "2020 Smihilism Records", "type": "P" } ], - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11 - }, - "type": "album", - "uri": "spotify:album:3IqzqH6ShrRtie9Yd2ODyG" + "external_ids": { "upc": "195916707034" }, + "genres": [], + "label": "Smihilism Records", + "popularity": 20 } diff --git a/tests/fixtures/library_contains.json b/tests/fixtures/library_contains.json new file mode 100644 index 0000000..7639083 --- /dev/null +++ b/tests/fixtures/library_contains.json @@ -0,0 +1 @@ +[false, false] diff --git a/tests/fixtures/new_playlist.json b/tests/fixtures/new_playlist.json index f6a0132..98f85f2 100644 --- a/tests/fixtures/new_playlist.json +++ b/tests/fixtures/new_playlist.json @@ -1,39 +1,39 @@ { - "collaborative": false, - "description": "New playlist description", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" - }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", - "id": "2dGgoMPWpapXYA6rX7ZbbB", - "images": [], - "primary_color": null, - "name": "New Playlist", - "type": "playlist", - "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB", - "owner": { - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649", - "display_name": null, + "collaborative": false, + "description": "New playlist description", "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" + "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" + }, + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", + "id": "2dGgoMPWpapXYA6rX7ZbbB", + "images": [], + "primary_color": null, + "name": "New Playlist", + "type": "playlist", + "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB", + "owner": { + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649", + "display_name": null, + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + } + }, + "public": false, + "snapshot_id": "AAABRUSqXDRHND7RgBQhEmksjQG8o/A+", + "tracks": { + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", + "total": 0, + "items": [] } - }, - "public": false, - "snapshot_id": "AAABRUSqXDRHND7RgBQhEmksjQG8o/A+", - "tracks": { - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", - "total": 0, - "items": [] - } } diff --git a/tests/fixtures/playback_1.json b/tests/fixtures/playback_1.json index f60200f..aa19225 100644 --- a/tests/fixtures/playback_1.json +++ b/tests/fixtures/playback_1.json @@ -1,478 +1,478 @@ { - "device": { - "id": "21dac6b0e0a1f181870fdc9749b2656466557687", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "DESKTOP-BKC5SIK", - "supports_volume": true, - "type": "Computer", - "volume_percent": 69 - }, - "shuffle_state": false, - "repeat_state": "off", - "timestamp": 1701284951675, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/collection/tracks" + "device": { + "id": "21dac6b0e0a1f181870fdc9749b2656466557687", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "DESKTOP-BKC5SIK", + "supports_volume": true, + "type": "Computer", + "volume_percent": 69 }, - "href": "https://api.spotify.com/v1/me/tracks", - "type": "collection", - "uri": "spotify:user:1112264649:collection" - }, - "progress_ms": 225564, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1iasbpTobDPa5BmsK0Rz1f" - }, - "href": "https://api.spotify.com/v1/albums/1iasbpTobDPa5BmsK0Rz1f", - "id": "1iasbpTobDPa5BmsK0Rz1f", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722", - "width": 300 + "shuffle_state": false, + "repeat_state": "off", + "timestamp": 1701284951675, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/collection/tracks" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722", - "width": 64 - } - ], - "name": "WARRIORS, Pt. 1 (Final Stage)", - "release_date": "2023-10-20", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1iasbpTobDPa5BmsK0Rz1f" + "href": "https://api.spotify.com/v1/me/tracks", + "type": "collection", + "uri": "spotify:user:1112264649:collection" }, - "artists": [ - { + "progress_ms": 225564, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iasbpTobDPa5BmsK0Rz1f" + }, + "href": "https://api.spotify.com/v1/albums/1iasbpTobDPa5BmsK0Rz1f", + "id": "1iasbpTobDPa5BmsK0Rz1f", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722", + "width": 64 + } + ], + "name": "WARRIORS, Pt. 1 (Final Stage)", + "release_date": "2023-10-20", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iasbpTobDPa5BmsK0Rz1f" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268525, + "explicit": false, + "external_ids": { + "isrc": "QZTB52388870" + }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + "spotify": "https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv" }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268525, - "explicit": false, - "external_ids": { - "isrc": "QZTB52388870" + "href": "https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv", + "id": "1FyXbzOlq3dkxaB6iRsETv", + "is_local": false, + "name": "WARRIORS, Pt. 1 (Final Stage)", + "popularity": 38, + "preview_url": "https://p.scdn.co/mp3-preview/f96aa9e00d2579b9e94aa3f0e73fceecfa825382?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 1, + "type": "track", + "uri": "spotify:track:1FyXbzOlq3dkxaB6iRsETv" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv" + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } }, - "href": "https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv", - "id": "1FyXbzOlq3dkxaB6iRsETv", - "is_local": false, - "name": "WARRIORS, Pt. 1 (Final Stage)", - "popularity": 38, - "preview_url": "https://p.scdn.co/mp3-preview/f96aa9e00d2579b9e94aa3f0e73fceecfa825382?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1FyXbzOlq3dkxaB6iRsETv" - }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } - }, - "is_playing": true + "is_playing": true } diff --git a/tests/fixtures/playback_3.json b/tests/fixtures/playback_3.json index cdd8fea..b03927f 100644 --- a/tests/fixtures/playback_3.json +++ b/tests/fixtures/playback_3.json @@ -1,478 +1,478 @@ { - "device": { - "id": null, - "is_active": true, - "is_private_session": false, - "is_restricted": true, - "name": "Sonos Roam SL", - "supports_volume": true, - "type": "Speaker", - "volume_percent": 34 - }, - "shuffle_state": false, - "repeat_state": "off", - "timestamp": 1701294541372, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/collection/tracks" + "device": { + "id": null, + "is_active": true, + "is_private_session": false, + "is_restricted": true, + "name": "Sonos Roam SL", + "supports_volume": true, + "type": "Speaker", + "volume_percent": 34 }, - "href": "https://api.spotify.com/v1/me/tracks", - "type": "collection", - "uri": "spotify:user:1112264649:collection" - }, - "progress_ms": 7919, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "name": "Joost", - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3qCsGHHWG6t9izvmsE47jr" - }, - "href": "https://api.spotify.com/v1/albums/3qCsGHHWG6t9izvmsE47jr", - "id": "3qCsGHHWG6t9izvmsE47jr", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c", - "width": 300 + "shuffle_state": false, + "repeat_state": "off", + "timestamp": 1701294541372, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/collection/tracks" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c", - "width": 64 - } - ], - "name": "Ome Robert", - "release_date": "2018-04-26", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:3qCsGHHWG6t9izvmsE47jr" + "href": "https://api.spotify.com/v1/me/tracks", + "type": "collection", + "uri": "spotify:user:1112264649:collection" }, - "artists": [ - { + "progress_ms": 7919, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "name": "Joost", + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3qCsGHHWG6t9izvmsE47jr" + }, + "href": "https://api.spotify.com/v1/albums/3qCsGHHWG6t9izvmsE47jr", + "id": "3qCsGHHWG6t9izvmsE47jr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c", + "width": 64 + } + ], + "name": "Ome Robert", + "release_date": "2018-04-26", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3qCsGHHWG6t9izvmsE47jr" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "name": "Joost", + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152500, + "explicit": true, + "external_ids": { + "isrc": "NLG661800442" + }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + "spotify": "https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z" }, - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "name": "Joost", - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 152500, - "explicit": true, - "external_ids": { - "isrc": "NLG661800442" + "href": "https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z", + "id": "3TE49HXyoNczZk2IBhP87z", + "is_local": false, + "name": "Ome Robert", + "popularity": 50, + "preview_url": "https://p.scdn.co/mp3-preview/5921a992d9086f054c28ee15ebd4912c09b13378?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 1, + "type": "track", + "uri": "spotify:track:3TE49HXyoNczZk2IBhP87z" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z" + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } }, - "href": "https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z", - "id": "3TE49HXyoNczZk2IBhP87z", - "is_local": false, - "name": "Ome Robert", - "popularity": 50, - "preview_url": "https://p.scdn.co/mp3-preview/5921a992d9086f054c28ee15ebd4912c09b13378?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3TE49HXyoNczZk2IBhP87z" - }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } - }, - "is_playing": true + "is_playing": true } diff --git a/tests/fixtures/playback_4.json b/tests/fixtures/playback_4.json index 59f0c49..ea06928 100644 --- a/tests/fixtures/playback_4.json +++ b/tests/fixtures/playback_4.json @@ -1,67 +1,67 @@ { - "device": { - "id": "aee274e4bbe6b44cf3b22ad3b68eca3a6954a701", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "Joost’s MacBook Pro", - "supports_volume": true, - "type": "Computer", - "volume_percent": 67 - }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1731336494187, - "context": null, - "progress_ms": 22215, - "item": { - "album": { - "album_type": null, - "artists": [], - "available_markets": [], - "external_urls": {}, - "href": null, - "id": null, - "images": [], - "name": "", - "release_date": null, - "release_date_precision": null, - "type": "album", - "uri": null + "device": { + "id": "aee274e4bbe6b44cf3b22ad3b68eca3a6954a701", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "Joost’s MacBook Pro", + "supports_volume": true, + "type": "Computer", + "volume_percent": 67 }, - "artists": [ - { + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1731336494187, + "context": null, + "progress_ms": 22215, + "item": { + "album": { + "album_type": null, + "artists": [], + "available_markets": [], + "external_urls": {}, + "href": null, + "id": null, + "images": [], + "name": "", + "release_date": null, + "release_date_precision": null, + "type": "album", + "uri": null + }, + "artists": [ + { + "external_urls": {}, + "href": null, + "id": null, + "name": "Four Tet x Fred again.. x Skrillex", + "type": "artist", + "uri": null + } + ], + "available_markets": [], + "disc_number": 0, + "duration_ms": 5432000, + "explicit": false, + "external_ids": {}, "external_urls": {}, "href": null, "id": null, - "name": "Four Tet x Fred again.. x Skrillex", - "type": "artist", - "uri": null - } - ], - "available_markets": [], - "disc_number": 0, - "duration_ms": 5432000, - "explicit": false, - "external_ids": {}, - "external_urls": {}, - "href": null, - "id": null, - "is_local": true, - "name": "Coachella 2023", - "popularity": 0, - "preview_url": null, - "track_number": 0, - "type": "track", - "uri": "spotify:local:Four+Tet+x+Fred+again..+x+Skrillex::Coachella+2023:5432" - }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true, - "skipping_prev": true - } - }, - "is_playing": true + "is_local": true, + "name": "Coachella 2023", + "popularity": 0, + "preview_url": null, + "track_number": 0, + "type": "track", + "uri": "spotify:local:Four+Tet+x+Fred+again..+x+Skrillex::Coachella+2023:5432" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true, + "skipping_prev": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_audiobook_1.json b/tests/fixtures/playback_audiobook_1.json index 3b8c838..8f3af09 100644 --- a/tests/fixtures/playback_audiobook_1.json +++ b/tests/fixtures/playback_audiobook_1.json @@ -1,301 +1,297 @@ { - "device": { - "id": "9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "Nothing phone (1)", - "supports_volume": false, - "type": "Smartphone", - "volume_percent": 100 - }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1729276241451, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + "device": { + "id": "9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "Nothing phone (1)", + "supports_volume": false, + "type": "Smartphone", + "volume_percent": 100 }, - "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", - "type": "show", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" - }, - "progress_ms": 15611, - "item": { - "audio_preview_url": null, - "description": "", - "duration_ms": 249652, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR", - "html_description": "", - "id": "3NW4BmIOG0qzQZgtLgsydR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "is_externally_hosted": false, - "language": "", - "languages": [ - "" - ], - "name": "Track 1", - "release_date": "0000", - "release_date_precision": "year", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1729276241451, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra\nNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink\n

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

\n

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

\n

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

\n

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

\n
\n

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
\nHeleen Spanjaard, Margriet

\n

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
\nRob Cobben, cultuurverslaggever Dagblad De Limburger

", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", - "html_description": "Author(s): Anya NiewierraNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p><p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p><p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p><p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p><br><p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>Heleen Spanjaard, <i>Margriet</i></p><p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 + "progress_ms": 15611, + "item": { + "audio_preview_url": null, + "description": "", + "duration_ms": 249652, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 + "href": "https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR", + "html_description": "", + "id": "3NW4BmIOG0qzQZgtLgsydR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", + "width": 64 + } + ], + "is_externally_hosted": false, + "language": "", + "languages": [""], + "name": "Track 1", + "release_date": "0000", + "release_date_precision": "year", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.


‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
Rob Cobben, cultuurverslaggever Dagblad De Limburger

", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "html_description": "Author(s): Anya NiewierraNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p><p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p><p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p><p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p><br><p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>Heleen Spanjaard, <i>Margriet</i></p><p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", + "width": 64 + } + ], + "is_externally_hosted": null, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "publisher": "Anya Niewierra", + "total_episodes": null, + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + }, + "type": "episode", + "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR" + }, + "currently_playing_type": "episode", + "actions": { + "disallows": { + "resuming": true, + "skipping_prev": true } - ], - "is_externally_hosted": null, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De nomade", - "publisher": "Anya Niewierra", - "total_episodes": null, - "type": "show", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" }, - "type": "episode", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR" - }, - "currently_playing_type": "episode", - "actions": { - "disallows": { - "resuming": true, - "skipping_prev": true - } - }, - "is_playing": true + "is_playing": true } diff --git a/tests/fixtures/playback_episode_1.json b/tests/fixtures/playback_episode_1.json index 9229b77..95447f1 100644 --- a/tests/fixtures/playback_episode_1.json +++ b/tests/fixtures/playback_episode_1.json @@ -1,301 +1,297 @@ { - "device": { - "id": null, - "is_active": true, - "is_private_session": false, - "is_restricted": true, - "name": "Sonos Roam SL", - "supports_volume": true, - "type": "Speaker", - "volume_percent": 46 - }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1728219605131, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + "device": { + "id": null, + "is_active": true, + "is_private_session": false, + "is_restricted": true, + "name": "Sonos Roam SL", + "supports_volume": true, + "type": "Speaker", + "volume_percent": 46 }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" - }, - "progress_ms": 5410, - "item": { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1728219605131, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + }, + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 + "progress_ms": 5410, + "item": { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3o0RYoo5iOMKSmEbunsbvW", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + }, + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "total_episodes": 120, + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + }, + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + }, + "currently_playing_type": "episode", + "actions": { + "disallows": { + "resuming": true } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "total_episodes": 120, - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" - }, - "currently_playing_type": "episode", - "actions": { - "disallows": { - "resuming": true - } - }, - "is_playing": true + "is_playing": true } diff --git a/tests/fixtures/playlist_1.json b/tests/fixtures/playlist_1.json index 0e15a9b..c6d4d77 100644 --- a/tests/fixtures/playlist_1.json +++ b/tests/fixtures/playlist_1.json @@ -1,1636 +1,1959 @@ { - "collaborative": false, - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3cEYpjA9oz9GiPac4AsH4n" - }, - "followers": { - "href": null, - "total": 562 - }, - "href": "https://api.spotify.com/v1/playlists/3cEYpjA9oz9GiPac4AsH4n?locale=en-US%2Cen%3Bq%3D0.5", - "id": "3cEYpjA9oz9GiPac4AsH4n", - "images": [ - { - "url": "https://i.scdn.co/image/ab67706c0000da848d0ce13d55f634e290f744ba", - "height": null, - "width": null - } - ], - "primary_color": null, - "name": "Spotify Web API Testing playlist", - "description": "A playlist for testing pourposes", - "type": "playlist", - "uri": "spotify:playlist:3cEYpjA9oz9GiPac4AsH4n", - "owner": { - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "display_name": "JMPerez²", + "collaborative": false, + "description": "", "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - } - }, - "public": true, - "snapshot_id": "MTgsZWFmNmZiNTIzYTg4ODM0OGQzZWQzOGI4NTdkNTJlMjU0OWFkYTUxMA==", - "tracks": { - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "href": "https://api.spotify.com/v1/playlists/3cEYpjA9oz9GiPac4AsH4n/tracks?offset=0&limit=100&locale=en-US%2Cen%3Bq%3D0.5", - "total": 5, - "items": [ - { - "added_at": "2015-01-15T12:39:22Z", - "primary_color": null, - "video_thumbnail": { - "url": null - }, - "is_local": false, - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "href": "https://api.spotify.com/v1/users/jmperezperez" - }, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/04599a1fe12ffac01d2bcb08340f84c0dd2cc335?cid=c7c59b798aab4892ac040a25f7dd1575", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "compilation", - "href": "https://api.spotify.com/v1/albums/2pANdqPvxInB0YvcDiw4ko", - "id": "2pANdqPvxInB0YvcDiw4ko", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc", - "width": 64, - "height": 64 - } - ], - "name": "Progressive Psy Trance Picks Vol.8", - "release_date": "2012-04-02", - "release_date_precision": "day", - "uri": "spotify:album:2pANdqPvxInB0YvcDiw4ko", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0LyfQWJT6nXafLPZqxe9Of" - }, - "href": "https://api.spotify.com/v1/artists/0LyfQWJT6nXafLPZqxe9Of", - "id": "0LyfQWJT6nXafLPZqxe9Of", - "name": "Various Artists", - "type": "artist", - "uri": "spotify:artist:0LyfQWJT6nXafLPZqxe9Of" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2pANdqPvxInB0YvcDiw4ko" - }, - "total_tracks": 20 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6eSdhw46riw2OUHgMwR8B5" - }, - "href": "https://api.spotify.com/v1/artists/6eSdhw46riw2OUHgMwR8B5", - "id": "6eSdhw46riw2OUHgMwR8B5", - "name": "Odiseo", - "type": "artist", - "uri": "spotify:artist:6eSdhw46riw2OUHgMwR8B5" - } - ], - "disc_number": 1, - "track_number": 10, - "duration_ms": 376000, - "external_ids": { - "isrc": "DEKC41200989" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ" - }, - "href": "https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ", - "id": "4rzfv0JLZfVhOhbSQ8o5jZ", - "name": "Api", - "popularity": 2, - "uri": "spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ", - "is_local": false + "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" + }, + "followers": { "href": null, "total": 0 }, + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track", + "id": "1Cp6VQCKf2VL4sP09jN9oX", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": null } - }, - { - "added_at": "2015-01-15T12:40:03Z", - "primary_color": null, - "video_thumbnail": { - "url": null - }, - "is_local": false, - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "href": "https://api.spotify.com/v1/users/jmperezperez" + ], + "name": "To find", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" }, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/d61fbb7016904624373008ea056d45e6df891071?cid=c7c59b798aab4892ac040a25f7dd1575", - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "compilation", - "href": "https://api.spotify.com/v1/albums/6nlfkk5GoXRL1nktlATNsy", - "id": "6nlfkk5GoXRL1nktlATNsy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2", - "width": 64, - "height": 64 - } - ], - "name": "Wellness & Dreaming Source", - "release_date": "2015-01-09", - "release_date_precision": "day", - "uri": "spotify:album:6nlfkk5GoXRL1nktlATNsy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0LyfQWJT6nXafLPZqxe9Of" - }, - "href": "https://api.spotify.com/v1/artists/0LyfQWJT6nXafLPZqxe9Of", - "id": "0LyfQWJT6nXafLPZqxe9Of", - "name": "Various Artists", - "type": "artist", - "uri": "spotify:artist:0LyfQWJT6nXafLPZqxe9Of" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6nlfkk5GoXRL1nktlATNsy" - }, - "total_tracks": 25 - }, - "artists": [ + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks?offset=0&limit=100&additional_types=track", + "items": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5VQE4WOzPu9h3HnGLuBoA6" - }, - "href": "https://api.spotify.com/v1/artists/5VQE4WOzPu9h3HnGLuBoA6", - "id": "5VQE4WOzPu9h3HnGLuBoA6", - "name": "Vlasta Marek", - "type": "artist", - "uri": "spotify:artist:5VQE4WOzPu9h3HnGLuBoA6" - } - ], - "disc_number": 1, - "track_number": 21, - "duration_ms": 730066, - "external_ids": { - "isrc": "FR2X41475057" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV" - }, - "href": "https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV", - "id": "5o3jMYOSbaVz3tkgwhELSV", - "name": "Is", - "popularity": 0, - "uri": "spotify:track:5o3jMYOSbaVz3tkgwhELSV", - "is_local": false - } - }, - { - "added_at": "2015-01-15T12:22:30Z", - "primary_color": null, - "video_thumbnail": { - "url": null - }, - "is_local": false, - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "href": "https://api.spotify.com/v1/users/jmperezperez" - }, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/cc680ec0f5fd5ff21f0cd11ac47e10d3cbb92190?cid=c7c59b798aab4892ac040a25f7dd1575", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/4hnqM0JK4CM1phwfq1Ldyz", - "id": "4hnqM0JK4CM1phwfq1Ldyz", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b", - "width": 64, - "height": 64 - } - ], - "name": "This Is Happening", - "release_date": "2010-05-17", - "release_date_precision": "day", - "uri": "spotify:album:4hnqM0JK4CM1phwfq1Ldyz", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/066X20Nz7iquqkkCW6Jxy6" + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" }, - "href": "https://api.spotify.com/v1/artists/066X20Nz7iquqkkCW6Jxy6", - "id": "066X20Nz7iquqkkCW6Jxy6", - "name": "LCD Soundsystem", - "type": "artist", - "uri": "spotify:artist:066X20Nz7iquqkkCW6Jxy6" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4hnqM0JK4CM1phwfq1Ldyz" - }, - "total_tracks": 9 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/066X20Nz7iquqkkCW6Jxy6" - }, - "href": "https://api.spotify.com/v1/artists/066X20Nz7iquqkkCW6Jxy6", - "id": "066X20Nz7iquqkkCW6Jxy6", - "name": "LCD Soundsystem", - "type": "artist", - "uri": "spotify:artist:066X20Nz7iquqkkCW6Jxy6" - } - ], - "disc_number": 1, - "track_number": 4, - "duration_ms": 401440, - "external_ids": { - "isrc": "US4GE1000022" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm" - }, - "href": "https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm", - "id": "4Cy0NHJ8Gh0xMdwyM9RkQm", - "name": "All I Want", - "popularity": 45, - "uri": "spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm", - "is_local": false - } - }, - { - "added_at": "2015-01-15T12:40:35Z", - "primary_color": null, - "video_thumbnail": { - "url": null - }, - "is_local": false, - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "href": "https://api.spotify.com/v1/users/jmperezperez" - }, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/d6ecf1f98d0b1fdc8c535de8e2010d0d8b8d040b?cid=c7c59b798aab4892ac040a25f7dd1575", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/2usKFntxa98WHMcyW6xJBz", - "id": "2usKFntxa98WHMcyW6xJBz", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b", - "width": 64, - "height": 64 - } - ], - "name": "Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)", - "release_date": "2011-04-01", - "release_date_precision": "day", - "uri": "spotify:album:2usKFntxa98WHMcyW6xJBz", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/272ArH9SUAlslQqsSgPJA2" + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/272ArH9SUAlslQqsSgPJA2", - "id": "272ArH9SUAlslQqsSgPJA2", - "name": "Glenn Horiuchi Trio", - "type": "artist", - "uri": "spotify:artist:272ArH9SUAlslQqsSgPJA2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2usKFntxa98WHMcyW6xJBz" - }, - "total_tracks": 8 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/272ArH9SUAlslQqsSgPJA2" - }, - "href": "https://api.spotify.com/v1/artists/272ArH9SUAlslQqsSgPJA2", - "id": "272ArH9SUAlslQqsSgPJA2", - "name": "Glenn Horiuchi Trio", - "type": "artist", - "uri": "spotify:artist:272ArH9SUAlslQqsSgPJA2" - } - ], - "disc_number": 1, - "track_number": 2, - "duration_ms": 358760, - "external_ids": { - "isrc": "USB8U1025969" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI" - }, - "href": "https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI", - "id": "6hvFrZNocdt2FcKGCSY5NI", - "name": "Endpoints", - "popularity": 0, - "uri": "spotify:track:6hvFrZNocdt2FcKGCSY5NI", - "is_local": false - } - }, - { - "added_at": "2015-01-15T12:41:10Z", - "primary_color": null, - "video_thumbnail": { - "url": null - }, - "is_local": false, - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez", - "href": "https://api.spotify.com/v1/users/jmperezperez" - }, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/47b974e463b1e862c7b3c18fa2ceedc513f2106b?cid=c7c59b798aab4892ac040a25f7dd1575", - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/0ivM6kSawaug0j3tZVusG2", - "id": "0ivM6kSawaug0j3tZVusG2", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71", - "width": 64, - "height": 64 - } - ], - "name": "All The Best (Spanish Version)", - "release_date": "2007-01-01", - "release_date_precision": "day", - "uri": "spotify:album:0ivM6kSawaug0j3tZVusG2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KftmGt9sk1yLjsAoloC3M" + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/2KftmGt9sk1yLjsAoloC3M", - "id": "2KftmGt9sk1yLjsAoloC3M", - "name": "Zucchero", - "type": "artist", - "uri": "spotify:artist:2KftmGt9sk1yLjsAoloC3M" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0ivM6kSawaug0j3tZVusG2" - }, - "total_tracks": 18 - }, - "artists": [ + "video_thumbnail": { "url": null } + } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=100&additional_types=track", + "items": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KftmGt9sk1yLjsAoloC3M" - }, - "href": "https://api.spotify.com/v1/artists/2KftmGt9sk1yLjsAoloC3M", - "id": "2KftmGt9sk1yLjsAoloC3M", - "name": "Zucchero", - "type": "artist", - "uri": "spotify:artist:2KftmGt9sk1yLjsAoloC3M" + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "video_thumbnail": { "url": null } } - ], - "disc_number": 1, - "track_number": 18, - "duration_ms": 176093, - "external_ids": { - "isrc": "ITUM70701043" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ" - }, - "href": "https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ", - "id": "2E2znCPaS8anQe21GLxcvJ", - "name": "You Are So Beautiful", - "popularity": 0, - "uri": "spotify:track:2E2znCPaS8anQe21GLxcvJ", - "is_local": false - } - } - ] - } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" } diff --git a/tests/fixtures/playlist_2.json b/tests/fixtures/playlist_2.json index 4cea3fb..aa5126f 100644 --- a/tests/fixtures/playlist_2.json +++ b/tests/fixtures/playlist_2.json @@ -1,200 +1,200 @@ { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph" - }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph?locale=en-US%2Cen%3Bq%3D0.5", - "id": "3toMXYM91T55pKzuysH5Ph", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af", - "width": null - } - ], - "name": "Starred", - "owner": { - "display_name": "chadandcaren", + "collaborative": false, + "description": "", "external_urls": { - "spotify": "https://open.spotify.com/user/chadandcaren" + "spotify": "https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph" }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAoRTkoeSGwZYJQxBuBVJ4+cWjJZf", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph/tracks?offset=0&limit=100&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2013-01-19T21:31:09Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/chadandcaren" - }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" - }, - "is_local": true, - "primary_color": null, - "track": { - "album": { - "album_type": null, - "available_markets": [], - "external_urls": {}, - "href": null, - "id": null, - "images": [], - "name": "The Score", - "release_date": null, - "release_date_precision": null, - "type": "album", - "uri": null, - "artists": [] - }, - "artists": [ - { - "external_urls": {}, - "href": null, - "id": null, - "name": "Fugees (Refugee Camp)", - "type": "artist", - "uri": null - } - ], - "available_markets": [], - "explicit": false, - "preview_url": null, - "type": "track", - "disc_number": 0, - "external_ids": {}, - "external_urls": {}, - "href": null, - "id": null, - "duration_ms": 273000, - "name": "No Woman, No Cry", - "uri": "spotify:local:Fugees+%28Refugee+Camp%29:The+Score:No+Woman%2C+No+Cry:273", - "popularity": 0, - "track_number": 0, - "is_local": true - }, - "video_thumbnail": { - "url": null + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph?locale=en-US%2Cen%3Bq%3D0.5", + "id": "3toMXYM91T55pKzuysH5Ph", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af", + "width": null } - }, - { - "added_at": "2013-01-19T22:16:08Z", - "added_by": { - "external_urls": { + ], + "name": "Starred", + "owner": { + "display_name": "chadandcaren", + "external_urls": { "spotify": "https://open.spotify.com/user/chadandcaren" - }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/5327d47d3f8c601cc8e783aaed138669c6331e31?cid=cfe923b2d660439caf2b557b21f31221", - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/3KVfMVtOmoVCgihLE4HoBr", - "id": "3KVfMVtOmoVCgihLE4HoBr", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919", - "width": 64, - "height": 64 - } - ], - "name": "Be OK", - "release_date": "2008-01-01", - "release_date_precision": "day", - "uri": "spotify:album:3KVfMVtOmoVCgihLE4HoBr", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAoRTkoeSGwZYJQxBuBVJ4+cWjJZf", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph/tracks?offset=0&limit=100&locale=en-US,en;q%3D0.5", + "items": [ + { + "added_at": "2013-01-19T21:31:09Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/chadandcaren" + }, + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" + }, + "is_local": true, + "primary_color": null, + "track": { + "album": { + "album_type": null, + "available_markets": [], + "external_urls": {}, + "href": null, + "id": null, + "images": [], + "name": "The Score", + "release_date": null, + "release_date_precision": null, + "type": "album", + "uri": null, + "artists": [] + }, + "artists": [ + { + "external_urls": {}, + "href": null, + "id": null, + "name": "Fugees (Refugee Camp)", + "type": "artist", + "uri": null + } + ], + "available_markets": [], + "explicit": false, + "preview_url": null, + "type": "track", + "disc_number": 0, + "external_ids": {}, + "external_urls": {}, + "href": null, + "id": null, + "duration_ms": 273000, + "name": "No Woman, No Cry", + "uri": "spotify:local:Fugees+%28Refugee+Camp%29:The+Score:No+Woman%2C+No+Cry:273", + "popularity": 0, + "track_number": 0, + "is_local": true }, - "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", - "id": "2vm8GdHyrJh2O2MfbQFYG0", - "name": "Ingrid Michaelson", - "type": "artist", - "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3KVfMVtOmoVCgihLE4HoBr" + "video_thumbnail": { + "url": null + } }, - "total_tracks": 11 - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" - }, - "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", - "id": "2vm8GdHyrJh2O2MfbQFYG0", - "name": "Ingrid Michaelson", - "type": "artist", - "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" + "added_at": "2013-01-19T22:16:08Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/chadandcaren" + }, + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": "https://p.scdn.co/mp3-preview/5327d47d3f8c601cc8e783aaed138669c6331e31?cid=cfe923b2d660439caf2b557b21f31221", + "available_markets": [], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [], + "type": "album", + "album_type": "album", + "href": "https://api.spotify.com/v1/albums/3KVfMVtOmoVCgihLE4HoBr", + "id": "3KVfMVtOmoVCgihLE4HoBr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919", + "width": 64, + "height": 64 + } + ], + "name": "Be OK", + "release_date": "2008-01-01", + "release_date_precision": "day", + "uri": "spotify:album:3KVfMVtOmoVCgihLE4HoBr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" + }, + "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", + "id": "2vm8GdHyrJh2O2MfbQFYG0", + "name": "Ingrid Michaelson", + "type": "artist", + "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3KVfMVtOmoVCgihLE4HoBr" + }, + "total_tracks": 11 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" + }, + "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", + "id": "2vm8GdHyrJh2O2MfbQFYG0", + "name": "Ingrid Michaelson", + "type": "artist", + "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" + } + ], + "disc_number": 1, + "track_number": 10, + "duration_ms": 148706, + "external_ids": { + "isrc": "ushm80865849" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP" + }, + "href": "https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP", + "id": "4oeRfmp9XpKWym6YD1WvBP", + "name": "You and I", + "popularity": 0, + "uri": "spotify:track:4oeRfmp9XpKWym6YD1WvBP", + "is_local": false + }, + "video_thumbnail": { + "url": null + } } - ], - "disc_number": 1, - "track_number": 10, - "duration_ms": 148706, - "external_ids": { - "isrc": "ushm80865849" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP" - }, - "href": "https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP", - "id": "4oeRfmp9XpKWym6YD1WvBP", - "name": "You and I", - "popularity": 0, - "uri": "spotify:track:4oeRfmp9XpKWym6YD1WvBP", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:3toMXYM91T55pKzuysH5Ph" + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 2 + }, + "type": "playlist", + "uri": "spotify:playlist:3toMXYM91T55pKzuysH5Ph" } diff --git a/tests/fixtures/playlist_3.json b/tests/fixtures/playlist_3.json index a31a28b..050ed9c 100644 --- a/tests/fixtures/playlist_3.json +++ b/tests/fixtures/playlist_3.json @@ -1,1080 +1,1076 @@ { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" - }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1?additional_types=track&locale=en-US%2Cen%3Bq%3D0.5", - "id": "0pM0KTMXM7K5qr3sL2DPw1", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": null - } - ], - "name": "Pain", - "owner": { - "display_name": "Joost Lekkerkerker", + "collaborative": false, + "description": "", "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABAH0cNr4wijSj1w6aGGVK+7f85Ex", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks?offset=0&limit=100&additional_types=track&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2024-05-16T20:46:24Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/5iuJo58XqIENkyviBJ4dil", - "id": "5iuJo58XqIENkyviBJ4dil", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8", - "width": 64, - "height": 64 - } - ], - "name": "Nothing To Lose", - "release_date": "2020-05-01", - "release_date_precision": "day", - "uri": "spotify:album:5iuJo58XqIENkyviBJ4dil", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" - }, - "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", - "id": "6DDZJCwSnNF361mUwPEm4G", - "name": "Saint Nomad", - "type": "artist", - "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5iuJo58XqIENkyviBJ4dil" - }, - "total_tracks": 1 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" - }, - "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", - "id": "6DDZJCwSnNF361mUwPEm4G", - "name": "Saint Nomad", - "type": "artist", - "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 164453, - "external_ids": { - "isrc": "USM1C2000002" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw" - }, - "href": "https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw", - "id": "4bEdcyI0l4zX2Ut5m5Xrhw", - "name": "Nothing To Lose", - "popularity": 19, - "uri": "spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - }, - { - "added_at": "2024-05-16T20:53:44Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/4stVgm9xx3cSNYddv8oTcL", - "id": "4stVgm9xx3cSNYddv8oTcL", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de", - "width": 64, - "height": 64 - } - ], - "name": "Borrowed Time", - "release_date": "2019-06-28", - "release_date_precision": "day", - "uri": "spotify:album:4stVgm9xx3cSNYddv8oTcL", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" - }, - "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", - "id": "6GFq3n0UYhpfzYPprpmD4K", - "name": "Doko", - "type": "artist", - "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4stVgm9xx3cSNYddv8oTcL" - }, - "total_tracks": 1 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" - }, - "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", - "id": "6GFq3n0UYhpfzYPprpmD4K", - "name": "Doko", - "type": "artist", - "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 198022, - "external_ids": { - "isrc": "AUYAK1800008" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8" - }, - "href": "https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8", - "id": "2kmZop34md5KWP4gn7Zuj8", - "name": "Borrowed Time", - "popularity": 0, - "uri": "spotify:track:2kmZop34md5KWP4gn7Zuj8", - "is_local": false - }, - "video_thumbnail": { - "url": null + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1?additional_types=track&locale=en-US%2Cen%3Bq%3D0.5", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null } - }, - { - "added_at": "2024-11-28T10:18:44Z", - "added_by": { - "external_urls": { + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" }, - "is_local": false, - "primary_color": null, - "track": { - "explicit": true, - "audio_preview_url": null, - "description": "HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group! Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.", - "duration_ms": 2071013, - "episode": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe" - }, - "href": "https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe", - "html_description": "

HAPPYYYYY SEMEN DAY!!!!!! Love you xoxox

Check out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group

Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast


Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5ytYkag3JZJ3GP2uuFAEBe", - "images": [ + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABAH0cNr4wijSj1w6aGGVK+7f85Ex", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks?offset=0&limit=100&additional_types=track&locale=en-US,en;q%3D0.5", + "items": [ { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 + "added_at": "2024-05-16T20:46:24Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/5iuJo58XqIENkyviBJ4dil", + "id": "5iuJo58XqIENkyviBJ4dil", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8", + "width": 64, + "height": 64 + } + ], + "name": "Nothing To Lose", + "release_date": "2020-05-01", + "release_date_precision": "day", + "uri": "spotify:album:5iuJo58XqIENkyviBJ4dil", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" + }, + "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", + "id": "6DDZJCwSnNF361mUwPEm4G", + "name": "Saint Nomad", + "type": "artist", + "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5iuJo58XqIENkyviBJ4dil" + }, + "total_tracks": 1 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" + }, + "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", + "id": "6DDZJCwSnNF361mUwPEm4G", + "name": "Saint Nomad", + "type": "artist", + "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 164453, + "external_ids": { + "isrc": "USM1C2000002" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw" + }, + "href": "https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw", + "id": "4bEdcyI0l4zX2Ut5m5Xrhw", + "name": "Nothing To Lose", + "popularity": 19, + "uri": "spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw", + "is_local": false + }, + "video_thumbnail": { + "url": null + } }, { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 + "added_at": "2024-05-16T20:53:44Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/4stVgm9xx3cSNYddv8oTcL", + "id": "4stVgm9xx3cSNYddv8oTcL", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de", + "width": 64, + "height": 64 + } + ], + "name": "Borrowed Time", + "release_date": "2019-06-28", + "release_date_precision": "day", + "uri": "spotify:album:4stVgm9xx3cSNYddv8oTcL", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" + }, + "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", + "id": "6GFq3n0UYhpfzYPprpmD4K", + "name": "Doko", + "type": "artist", + "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4stVgm9xx3cSNYddv8oTcL" + }, + "total_tracks": 1 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" + }, + "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", + "id": "6GFq3n0UYhpfzYPprpmD4K", + "name": "Doko", + "type": "artist", + "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 198022, + "external_ids": { + "isrc": "AUYAK1800008" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8" + }, + "href": "https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8", + "id": "2kmZop34md5KWP4gn7Zuj8", + "name": "Borrowed Time", + "popularity": 0, + "uri": "spotify:track:2kmZop34md5KWP4gn7Zuj8", + "is_local": false + }, + "video_thumbnail": { + "url": null + } }, { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 + "added_at": "2024-11-28T10:18:44Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "explicit": true, + "audio_preview_url": null, + "description": "HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group! Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.", + "duration_ms": 2071013, + "episode": true, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe" + }, + "href": "https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe", + "html_description": "

HAPPYYYYY SEMEN DAY!!!!!! Love you xoxox

Check out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group

Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast


Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5ytYkag3JZJ3GP2uuFAEBe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + } + ], + "is_externally_hosted": false, + "language": "en", + "languages": ["en"], + "name": "Toni Delivers Semen", + "release_date": "2024-11-27", + "release_date_precision": "day", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" + }, + "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", + "html_description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5OzkclFjD6iAjtAuo7aIYt", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Toni and Ryan", + "publisher": "Toni Lodge and Ryan Jon", + "total_episodes": 780, + "type": "show", + "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" + }, + "track": false, + "type": "episode", + "uri": "spotify:episode:5ytYkag3JZJ3GP2uuFAEBe" + }, + "video_thumbnail": { + "url": null + } } - ], - "is_externally_hosted": false, - "language": "en", - "languages": [ - "en" - ], - "name": "Toni Delivers Semen", - "release_date": "2024-11-27", - "release_date_precision": "day", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" - }, - "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", - "html_description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5OzkclFjD6iAjtAuo7aIYt", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Toni and Ryan", - "publisher": "Toni Lodge and Ryan Jon", - "total_episodes": 780, - "type": "show", - "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" - }, - "track": false, - "type": "episode", - "uri": "spotify:episode:5ytYkag3JZJ3GP2uuFAEBe" - }, - "video_thumbnail": { - "url": null - } - } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" } diff --git a/tests/fixtures/playlist_cover_image.json b/tests/fixtures/playlist_cover_image.json index cce39cc..bc631db 100644 --- a/tests/fixtures/playlist_cover_image.json +++ b/tests/fixtures/playlist_cover_image.json @@ -1,7 +1,7 @@ [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba", - "width": null - } + { + "height": null, + "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba", + "width": null + } ] diff --git a/tests/fixtures/playlist_items.json b/tests/fixtures/playlist_items.json index 3d351e1..391b39f 100644 --- a/tests/fixtures/playlist_items.json +++ b/tests/fixtures/playlist_items.json @@ -1,1606 +1,963 @@ { - "href": "https://api.spotify.com/v1/playlists/3cEYpjA9oz9GiPac4AsH4n/tracks?offset=0&limit=100&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2015-01-15T12:39:22Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "compilation", - "href": "https://api.spotify.com/v1/albums/2pANdqPvxInB0YvcDiw4ko", - "id": "2pANdqPvxInB0YvcDiw4ko", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ce6d0eef0c1ce77e5f95bbbc", - "width": 640 + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=48", + "items": [ + { + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ce6d0eef0c1ce77e5f95bbbc", - "width": 300 + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ce6d0eef0c1ce77e5f95bbbc", - "width": 64 - } - ], - "name": "Progressive Psy Trance Picks Vol.8", - "release_date": "2012-04-02", - "release_date_precision": "day", - "uri": "spotify:album:2pANdqPvxInB0YvcDiw4ko", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0LyfQWJT6nXafLPZqxe9Of" - }, - "href": "https://api.spotify.com/v1/artists/0LyfQWJT6nXafLPZqxe9Of", - "id": "0LyfQWJT6nXafLPZqxe9Of", - "name": "Various Artists", - "type": "artist", - "uri": "spotify:artist:0LyfQWJT6nXafLPZqxe9Of" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2pANdqPvxInB0YvcDiw4ko" - }, - "total_tracks": 20 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6eSdhw46riw2OUHgMwR8B5" + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false }, - "href": "https://api.spotify.com/v1/artists/6eSdhw46riw2OUHgMwR8B5", - "id": "6eSdhw46riw2OUHgMwR8B5", - "name": "Odiseo", - "type": "artist", - "uri": "spotify:artist:6eSdhw46riw2OUHgMwR8B5" - } - ], - "disc_number": 1, - "track_number": 10, - "duration_ms": 376000, - "external_ids": { - "isrc": "DEKC41200989" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4rzfv0JLZfVhOhbSQ8o5jZ" - }, - "href": "https://api.spotify.com/v1/tracks/4rzfv0JLZfVhOhbSQ8o5jZ", - "id": "4rzfv0JLZfVhOhbSQ8o5jZ", - "name": "Api", - "popularity": 1, - "uri": "spotify:track:4rzfv0JLZfVhOhbSQ8o5jZ", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - }, - { - "added_at": "2015-01-15T12:40:03Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "compilation", - "href": "https://api.spotify.com/v1/albums/6nlfkk5GoXRL1nktlATNsy", - "id": "6nlfkk5GoXRL1nktlATNsy", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273aa2ff29970d9a63a49dfaeb2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02aa2ff29970d9a63a49dfaeb2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851aa2ff29970d9a63a49dfaeb2", - "width": 64 - } - ], - "name": "Wellness & Dreaming Source", - "release_date": "2015-01-09", - "release_date_precision": "day", - "uri": "spotify:album:6nlfkk5GoXRL1nktlATNsy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0LyfQWJT6nXafLPZqxe9Of" - }, - "href": "https://api.spotify.com/v1/artists/0LyfQWJT6nXafLPZqxe9Of", - "id": "0LyfQWJT6nXafLPZqxe9Of", - "name": "Various Artists", - "type": "artist", - "uri": "spotify:artist:0LyfQWJT6nXafLPZqxe9Of" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6nlfkk5GoXRL1nktlATNsy" - }, - "total_tracks": 25 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5VQE4WOzPu9h3HnGLuBoA6" - }, - "href": "https://api.spotify.com/v1/artists/5VQE4WOzPu9h3HnGLuBoA6", - "id": "5VQE4WOzPu9h3HnGLuBoA6", - "name": "Vlasta Marek", - "type": "artist", - "uri": "spotify:artist:5VQE4WOzPu9h3HnGLuBoA6" - } - ], - "disc_number": 1, - "track_number": 21, - "duration_ms": 730066, - "external_ids": { - "isrc": "FR2X41475057" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5o3jMYOSbaVz3tkgwhELSV" - }, - "href": "https://api.spotify.com/v1/tracks/5o3jMYOSbaVz3tkgwhELSV", - "id": "5o3jMYOSbaVz3tkgwhELSV", - "name": "Is", - "popularity": 0, - "uri": "spotify:track:5o3jMYOSbaVz3tkgwhELSV", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - }, - { - "added_at": "2015-01-15T12:22:30Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/4hnqM0JK4CM1phwfq1Ldyz", - "id": "4hnqM0JK4CM1phwfq1Ldyz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ee0d0dce888c6c8a70db6e8b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ee0d0dce888c6c8a70db6e8b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ee0d0dce888c6c8a70db6e8b", - "width": 64 - } - ], - "name": "This Is Happening", - "release_date": "2010-05-17", - "release_date_precision": "day", - "uri": "spotify:album:4hnqM0JK4CM1phwfq1Ldyz", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/066X20Nz7iquqkkCW6Jxy6" - }, - "href": "https://api.spotify.com/v1/artists/066X20Nz7iquqkkCW6Jxy6", - "id": "066X20Nz7iquqkkCW6Jxy6", - "name": "LCD Soundsystem", - "type": "artist", - "uri": "spotify:artist:066X20Nz7iquqkkCW6Jxy6" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4hnqM0JK4CM1phwfq1Ldyz" - }, - "total_tracks": 9 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/066X20Nz7iquqkkCW6Jxy6" - }, - "href": "https://api.spotify.com/v1/artists/066X20Nz7iquqkkCW6Jxy6", - "id": "066X20Nz7iquqkkCW6Jxy6", - "name": "LCD Soundsystem", - "type": "artist", - "uri": "spotify:artist:066X20Nz7iquqkkCW6Jxy6" - } - ], - "disc_number": 1, - "track_number": 4, - "duration_ms": 401440, - "external_ids": { - "isrc": "US4GE1000022" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Cy0NHJ8Gh0xMdwyM9RkQm" - }, - "href": "https://api.spotify.com/v1/tracks/4Cy0NHJ8Gh0xMdwyM9RkQm", - "id": "4Cy0NHJ8Gh0xMdwyM9RkQm", - "name": "All I Want", - "popularity": 41, - "uri": "spotify:track:4Cy0NHJ8Gh0xMdwyM9RkQm", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - }, - { - "added_at": "2015-01-15T12:40:35Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/2usKFntxa98WHMcyW6xJBz", - "id": "2usKFntxa98WHMcyW6xJBz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738b7447ac3daa1da18811cf7b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028b7447ac3daa1da18811cf7b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518b7447ac3daa1da18811cf7b", - "width": 64 - } - ], - "name": "Glenn Horiuchi Trio / Gelenn Horiuchi Quartet: Mercy / Jump Start / Endpoints / Curl Out / Earthworks / Mind Probe / Null Set / Another Space (A)", - "release_date": "2011-04-01", - "release_date_precision": "day", - "uri": "spotify:album:2usKFntxa98WHMcyW6xJBz", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/272ArH9SUAlslQqsSgPJA2" - }, - "href": "https://api.spotify.com/v1/artists/272ArH9SUAlslQqsSgPJA2", - "id": "272ArH9SUAlslQqsSgPJA2", - "name": "Glenn Horiuchi Trio", - "type": "artist", - "uri": "spotify:artist:272ArH9SUAlslQqsSgPJA2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2usKFntxa98WHMcyW6xJBz" - }, - "total_tracks": 8 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/272ArH9SUAlslQqsSgPJA2" - }, - "href": "https://api.spotify.com/v1/artists/272ArH9SUAlslQqsSgPJA2", - "id": "272ArH9SUAlslQqsSgPJA2", - "name": "Glenn Horiuchi Trio", - "type": "artist", - "uri": "spotify:artist:272ArH9SUAlslQqsSgPJA2" - } - ], - "disc_number": 1, - "track_number": 2, - "duration_ms": 358760, - "external_ids": { - "isrc": "USB8U1025969" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6hvFrZNocdt2FcKGCSY5NI" - }, - "href": "https://api.spotify.com/v1/tracks/6hvFrZNocdt2FcKGCSY5NI", - "id": "6hvFrZNocdt2FcKGCSY5NI", - "name": "Endpoints", - "popularity": 0, - "uri": "spotify:track:6hvFrZNocdt2FcKGCSY5NI", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - }, - { - "added_at": "2015-01-15T12:41:10Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/jmperezperez" - }, - "href": "https://api.spotify.com/v1/users/jmperezperez", - "id": "jmperezperez", - "type": "user", - "uri": "spotify:user:jmperezperez" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/0ivM6kSawaug0j3tZVusG2", - "id": "0ivM6kSawaug0j3tZVusG2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27304e57d181ff062f8339d6c71", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0204e57d181ff062f8339d6c71", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485104e57d181ff062f8339d6c71", - "width": 64 - } - ], - "name": "All The Best (Spanish Version)", - "release_date": "2007-01-01", - "release_date_precision": "day", - "uri": "spotify:album:0ivM6kSawaug0j3tZVusG2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KftmGt9sk1yLjsAoloC3M" - }, - "href": "https://api.spotify.com/v1/artists/2KftmGt9sk1yLjsAoloC3M", - "id": "2KftmGt9sk1yLjsAoloC3M", - "name": "Zucchero", - "type": "artist", - "uri": "spotify:artist:2KftmGt9sk1yLjsAoloC3M" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0ivM6kSawaug0j3tZVusG2" - }, - "total_tracks": 18 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KftmGt9sk1yLjsAoloC3M" - }, - "href": "https://api.spotify.com/v1/artists/2KftmGt9sk1yLjsAoloC3M", - "id": "2KftmGt9sk1yLjsAoloC3M", - "name": "Zucchero", - "type": "artist", - "uri": "spotify:artist:2KftmGt9sk1yLjsAoloC3M" - } - ], - "disc_number": 1, - "track_number": 18, - "duration_ms": 176093, - "external_ids": { - "isrc": "ITUM70701043" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2E2znCPaS8anQe21GLxcvJ" - }, - "href": "https://api.spotify.com/v1/tracks/2E2znCPaS8anQe21GLxcvJ", - "id": "2E2znCPaS8anQe21GLxcvJ", - "name": "You Are So Beautiful", - "popularity": 0, - "uri": "spotify:track:2E2znCPaS8anQe21GLxcvJ", - "is_local": false - }, - "video_thumbnail": { - "url": null - } - } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 5 + "video_thumbnail": { "url": null } + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 1 } diff --git a/tests/fixtures/playlist_update_items.json b/tests/fixtures/playlist_update_items.json index e6d05d2..9619d95 100644 --- a/tests/fixtures/playlist_update_items.json +++ b/tests/fixtures/playlist_update_items.json @@ -1,3 +1,3 @@ { - "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" + "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" } diff --git a/tests/fixtures/recently_played_tracks.json b/tests/fixtures/recently_played_tracks.json index 3e4784b..088d15d 100644 --- a/tests/fixtures/recently_played_tracks.json +++ b/tests/fixtures/recently_played_tracks.json @@ -1,9386 +1,21980 @@ { - "items": [ - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" + "items": [ + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" + }, + "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", + "id": "5NzDpcAuGAxvsyqqaUEFw1", + "name": "Enchanted Steel", + "type": "artist", + "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Jb37p32ZFIhRO3bKUnUZ9" + }, + "href": "https://api.spotify.com/v1/albums/4Jb37p32ZFIhRO3bKUnUZ9", + "id": "4Jb37p32ZFIhRO3bKUnUZ9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e784490e65cc1f1465653e52", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e784490e65cc1f1465653e52", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e784490e65cc1f1465653e52", + "width": 64 + } + ], + "name": "Might and Magic", + "release_date": "2025-01-02", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:4Jb37p32ZFIhRO3bKUnUZ9" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" + }, + "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", + "id": "5NzDpcAuGAxvsyqqaUEFw1", + "name": "Enchanted Steel", + "type": "artist", + "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211333, + "explicit": false, + "external_ids": { "isrc": "GXF972482646" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3HRuSJ7VheXVBmjlAXaREd" + }, + "href": "https://api.spotify.com/v1/tracks/3HRuSJ7VheXVBmjlAXaREd", + "id": "3HRuSJ7VheXVBmjlAXaREd", + "is_local": false, + "name": "We'll Fight! - Re-recorded", + "popularity": 12, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3HRuSJ7VheXVBmjlAXaREd" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" + "played_at": "2026-02-25T20:15:20.497Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6Ab1VSoMD5fvlagOW2QDOJ" - }, - "href": "https://api.spotify.com/v1/albums/6Ab1VSoMD5fvlagOW2QDOJ", - "id": "6Ab1VSoMD5fvlagOW2QDOJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde", - "width": 64 + "played_at": "2026-02-25T20:10:38.537Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Super Breath", - "release_date": "2024-07-24", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6Ab1VSoMD5fvlagOW2QDOJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 + } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211800, - "explicit": false, - "external_ids": { - "isrc": "QMB622409101" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh" + "played_at": "2026-02-25T20:06:04.321Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "href": "https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh", - "id": "71dMjqJ8UJV700zYs5YZCh", - "is_local": false, - "name": "Super Breath", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/f1ee3ade75c6eb5cb227ed8c96de8674d8ce581f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:71dMjqJ8UJV700zYs5YZCh" - }, - "played_at": "2024-10-06T18:09:18.556Z", - "context": null - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 + } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" + "played_at": "2026-02-25T20:02:58.094Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6Ab1VSoMD5fvlagOW2QDOJ" - }, - "href": "https://api.spotify.com/v1/albums/6Ab1VSoMD5fvlagOW2QDOJ", - "id": "6Ab1VSoMD5fvlagOW2QDOJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 + } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde", - "width": 64 + "played_at": "2026-02-25T19:59:11.278Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Super Breath", - "release_date": "2024-07-24", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6Ab1VSoMD5fvlagOW2QDOJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211800, - "explicit": false, - "external_ids": { - "isrc": "QMB622409101" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh" - }, - "href": "https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh", - "id": "71dMjqJ8UJV700zYs5YZCh", - "is_local": false, - "name": "Super Breath", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/f1ee3ade75c6eb5cb227ed8c96de8674d8ce581f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:71dMjqJ8UJV700zYs5YZCh" - }, - "played_at": "2024-10-06T18:05:33.902Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T19:54:42.223Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/41XrkRQLSBThNGddZTKxiN" + }, + "href": "https://api.spotify.com/v1/albums/41XrkRQLSBThNGddZTKxiN", + "id": "41XrkRQLSBThNGddZTKxiN", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273130fddfb4e4da4e5e83dd829", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02130fddfb4e4da4e5e83dd829", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851130fddfb4e4da4e5e83dd829", + "width": 64 + } + ], + "name": "Wake Up The Wicked (Deluxe Version)", + "release_date": "2024-07-26", + "release_date_precision": "day", + "total_tracks": 33, + "type": "album", + "uri": "spotify:album:41XrkRQLSBThNGddZTKxiN" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200931, + "explicit": false, + "external_ids": { "isrc": "ATN262417608" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7D2UpWgfgxzGNzmcIoWd9l" + }, + "href": "https://api.spotify.com/v1/tracks/7D2UpWgfgxzGNzmcIoWd9l", + "id": "7D2UpWgfgxzGNzmcIoWd9l", + "is_local": false, + "name": "Joan of Arc", + "popularity": 44, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7D2UpWgfgxzGNzmcIoWd9l" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" + "played_at": "2026-02-25T17:53:53.471Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6Ab1VSoMD5fvlagOW2QDOJ" - }, - "href": "https://api.spotify.com/v1/albums/6Ab1VSoMD5fvlagOW2QDOJ", - "id": "6Ab1VSoMD5fvlagOW2QDOJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" + }, + "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", + "id": "6MfUFhthUp7MKoqNEfdwN5", + "name": "Krilloan", + "type": "artist", + "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7mOeU7C1am6Ww10bYuOxe7" + }, + "href": "https://api.spotify.com/v1/albums/7mOeU7C1am6Ww10bYuOxe7", + "id": "7mOeU7C1am6Ww10bYuOxe7", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735e06e09e22062957ae4d010f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025e06e09e22062957ae4d010f", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515e06e09e22062957ae4d010f", + "width": 64 + } + ], + "name": "Return Of The Heralds", + "release_date": "2024-09-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:7mOeU7C1am6Ww10bYuOxe7" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" + }, + "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", + "id": "6MfUFhthUp7MKoqNEfdwN5", + "name": "Krilloan", + "type": "artist", + "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219666, + "explicit": false, + "external_ids": { "isrc": "ITD292402796" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/097iQWiJYG0DTSgslNuVGZ" + }, + "href": "https://api.spotify.com/v1/tracks/097iQWiJYG0DTSgslNuVGZ", + "id": "097iQWiJYG0DTSgslNuVGZ", + "is_local": false, + "name": "Atlantean Sword", + "popularity": 16, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:097iQWiJYG0DTSgslNuVGZ" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde", - "width": 64 + "played_at": "2026-02-25T17:50:32.269Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Super Breath", - "release_date": "2024-07-24", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6Ab1VSoMD5fvlagOW2QDOJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" + }, + "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", + "id": "6COmyouHXwCeIGS1IFd1PA", + "name": "Iron Savior", + "type": "artist", + "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2b5sxuklqsGdTBgFSidkVR" + }, + "href": "https://api.spotify.com/v1/albums/2b5sxuklqsGdTBgFSidkVR", + "id": "2b5sxuklqsGdTBgFSidkVR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273de10a7f0de53283089dd3021", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02de10a7f0de53283089dd3021", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851de10a7f0de53283089dd3021", + "width": 64 + } + ], + "name": "Take On Me", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:2b5sxuklqsGdTBgFSidkVR" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" + }, + "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", + "id": "6COmyouHXwCeIGS1IFd1PA", + "name": "Iron Savior", + "type": "artist", + "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 232493, + "explicit": false, + "external_ids": { "isrc": "DE1KY2506962" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4McyElZJ5DHu8VOMQ8psiR" + }, + "href": "https://api.spotify.com/v1/tracks/4McyElZJ5DHu8VOMQ8psiR", + "id": "4McyElZJ5DHu8VOMQ8psiR", + "is_local": false, + "name": "Take On Me", + "popularity": 34, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4McyElZJ5DHu8VOMQ8psiR" }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211800, - "explicit": false, - "external_ids": { - "isrc": "QMB622409101" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh" - }, - "href": "https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh", - "id": "71dMjqJ8UJV700zYs5YZCh", - "is_local": false, - "name": "Super Breath", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/f1ee3ade75c6eb5cb227ed8c96de8674d8ce581f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:71dMjqJ8UJV700zYs5YZCh" - }, - "played_at": "2024-10-06T18:02:00.146Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T17:47:15.919Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" + "played_at": "2026-02-25T17:42:58.582Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6Ab1VSoMD5fvlagOW2QDOJ" - }, - "href": "https://api.spotify.com/v1/albums/6Ab1VSoMD5fvlagOW2QDOJ", - "id": "6Ab1VSoMD5fvlagOW2QDOJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 + } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde", - "width": 64 + "played_at": "2026-02-25T17:38:25.792Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Super Breath", - "release_date": "2024-07-24", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6Ab1VSoMD5fvlagOW2QDOJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 + } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211800, - "explicit": false, - "external_ids": { - "isrc": "QMB622409101" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh" - }, - "href": "https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh", - "id": "71dMjqJ8UJV700zYs5YZCh", - "is_local": false, - "name": "Super Breath", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/f1ee3ade75c6eb5cb227ed8c96de8674d8ce581f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:71dMjqJ8UJV700zYs5YZCh" - }, - "played_at": "2024-10-06T17:58:21.425Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T17:35:18.461Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" - }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 + } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" + "played_at": "2026-02-25T17:31:31.660Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6Ab1VSoMD5fvlagOW2QDOJ" - }, - "href": "https://api.spotify.com/v1/albums/6Ab1VSoMD5fvlagOW2QDOJ", - "id": "6Ab1VSoMD5fvlagOW2QDOJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cdac047e7894fb56a0dfdcde", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cdac047e7894fb56a0dfdcde", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cdac047e7894fb56a0dfdcde", - "width": 64 + "played_at": "2026-02-25T17:27:04.528Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Super Breath", - "release_date": "2024-07-24", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6Ab1VSoMD5fvlagOW2QDOJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6emHCSoB4tJxTVXakbrpPz" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" }, - "href": "https://api.spotify.com/v1/artists/6emHCSoB4tJxTVXakbrpPz", - "id": "6emHCSoB4tJxTVXakbrpPz", - "name": "Karen O", - "type": "artist", - "uri": "spotify:artist:6emHCSoB4tJxTVXakbrpPz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2dBj3prW7gP9bCCOIQeDUf" - }, - "href": "https://api.spotify.com/v1/artists/2dBj3prW7gP9bCCOIQeDUf", - "id": "2dBj3prW7gP9bCCOIQeDUf", - "name": "Danger Mouse", - "type": "artist", - "uri": "spotify:artist:2dBj3prW7gP9bCCOIQeDUf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211800, - "explicit": false, - "external_ids": { - "isrc": "QMB622409101" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71dMjqJ8UJV700zYs5YZCh" - }, - "href": "https://api.spotify.com/v1/tracks/71dMjqJ8UJV700zYs5YZCh", - "id": "71dMjqJ8UJV700zYs5YZCh", - "is_local": false, - "name": "Super Breath", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/f1ee3ade75c6eb5cb227ed8c96de8674d8ce581f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:71dMjqJ8UJV700zYs5YZCh" - }, - "played_at": "2024-10-06T17:54:39.034Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0vTVU0KH0CVzijsoKGsTPl" - }, - "href": "https://api.spotify.com/v1/artists/0vTVU0KH0CVzijsoKGsTPl", - "id": "0vTVU0KH0CVzijsoKGsTPl", - "name": "Barry Can't Swim", - "type": "artist", - "uri": "spotify:artist:0vTVU0KH0CVzijsoKGsTPl" + "played_at": "2026-02-25T17:21:21.695Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5LASDBDtLLEt3QqVtgOoaM" - }, - "href": "https://api.spotify.com/v1/albums/5LASDBDtLLEt3QqVtgOoaM", - "id": "5LASDBDtLLEt3QqVtgOoaM", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27316bc57c40991e6d3267765ab", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0216bc57c40991e6d3267765ab", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 + } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485116bc57c40991e6d3267765ab", - "width": 64 + "played_at": "2026-02-25T17:17:03.863Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "When Will We Land?", - "release_date": "2023-10-20", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:5LASDBDtLLEt3QqVtgOoaM" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0vTVU0KH0CVzijsoKGsTPl" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 + } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" }, - "href": "https://api.spotify.com/v1/artists/0vTVU0KH0CVzijsoKGsTPl", - "id": "0vTVU0KH0CVzijsoKGsTPl", - "name": "Barry Can't Swim", - "type": "artist", - "uri": "spotify:artist:0vTVU0KH0CVzijsoKGsTPl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 138951, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2300335" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3NZz7DWeVQesSOn6mO39F7" - }, - "href": "https://api.spotify.com/v1/tracks/3NZz7DWeVQesSOn6mO39F7", - "id": "3NZz7DWeVQesSOn6mO39F7", - "is_local": false, - "name": "How It Feels", - "popularity": 70, - "preview_url": "https://p.scdn.co/mp3-preview/b7f344f2733875460a533d0b5e307e29d40e9ec1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:3NZz7DWeVQesSOn6mO39F7" - }, - "played_at": "2024-10-06T17:51:07.248Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2D7akgJBXcsp8Y2FKdPJCh" - }, - "href": "https://api.spotify.com/v1/artists/2D7akgJBXcsp8Y2FKdPJCh", - "id": "2D7akgJBXcsp8Y2FKdPJCh", - "name": "Jasper Tygner", - "type": "artist", - "uri": "spotify:artist:2D7akgJBXcsp8Y2FKdPJCh" + "played_at": "2026-02-25T17:13:47.215Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/27vIEhBrsAL30xLMS41ZyA" - }, - "href": "https://api.spotify.com/v1/albums/27vIEhBrsAL30xLMS41ZyA", - "id": "27vIEhBrsAL30xLMS41ZyA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27344f6ff8137cffe1d614054ec", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0244f6ff8137cffe1d614054ec", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 + } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485144f6ff8137cffe1d614054ec", - "width": 64 + "played_at": "2026-02-25T17:09:55.804Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Things to Come", - "release_date": "2024-07-05", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:27vIEhBrsAL30xLMS41ZyA" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2D7akgJBXcsp8Y2FKdPJCh" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - "href": "https://api.spotify.com/v1/artists/2D7akgJBXcsp8Y2FKdPJCh", - "id": "2D7akgJBXcsp8Y2FKdPJCh", - "name": "Jasper Tygner", - "type": "artist", - "uri": "spotify:artist:2D7akgJBXcsp8Y2FKdPJCh" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 163944, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2400380" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/23DvufvHJAr0OUPfrB7g2J" - }, - "href": "https://api.spotify.com/v1/tracks/23DvufvHJAr0OUPfrB7g2J", - "id": "23DvufvHJAr0OUPfrB7g2J", - "is_local": false, - "name": "All I Need", - "popularity": 46, - "preview_url": "https://p.scdn.co/mp3-preview/f1a0af015ad64a5b214a866d01943755ec4ac400?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:23DvufvHJAr0OUPfrB7g2J" - }, - "played_at": "2024-10-06T17:48:48.298Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T17:05:25.871Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6zsJjoCtL1WByG0VsuFWzR" - }, - "href": "https://api.spotify.com/v1/artists/6zsJjoCtL1WByG0VsuFWzR", - "id": "6zsJjoCtL1WByG0VsuFWzR", - "name": "BLOND:ISH", - "type": "artist", - "uri": "spotify:artist:6zsJjoCtL1WByG0VsuFWzR" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5qMHOzLlXeOEjOncWYtRfZ" - }, - "href": "https://api.spotify.com/v1/artists/5qMHOzLlXeOEjOncWYtRfZ", - "id": "5qMHOzLlXeOEjOncWYtRfZ", - "name": "Stevie Appleton", - "type": "artist", - "uri": "spotify:artist:5qMHOzLlXeOEjOncWYtRfZ" + "played_at": "2026-02-25T17:02:06.802Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1BuWrjAiFiHMHtCYHuUIKM" - }, - "href": "https://api.spotify.com/v1/albums/1BuWrjAiFiHMHtCYHuUIKM", - "id": "1BuWrjAiFiHMHtCYHuUIKM", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736d31b666cc828a16d3d54612", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026d31b666cc828a16d3d54612", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516d31b666cc828a16d3d54612", - "width": 64 + "played_at": "2026-02-25T16:58:45.239Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Never Walk Alone", - "release_date": "2024-08-02", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1BuWrjAiFiHMHtCYHuUIKM" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6zsJjoCtL1WByG0VsuFWzR" - }, - "href": "https://api.spotify.com/v1/artists/6zsJjoCtL1WByG0VsuFWzR", - "id": "6zsJjoCtL1WByG0VsuFWzR", - "name": "BLOND:ISH", - "type": "artist", - "uri": "spotify:artist:6zsJjoCtL1WByG0VsuFWzR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5qMHOzLlXeOEjOncWYtRfZ" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - "href": "https://api.spotify.com/v1/artists/5qMHOzLlXeOEjOncWYtRfZ", - "id": "5qMHOzLlXeOEjOncWYtRfZ", - "name": "Stevie Appleton", - "type": "artist", - "uri": "spotify:artist:5qMHOzLlXeOEjOncWYtRfZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 188360, - "explicit": false, - "external_ids": { - "isrc": "NL8RL2429546" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4HB7ECLzrbgapiZyLlFbxz" - }, - "href": "https://api.spotify.com/v1/tracks/4HB7ECLzrbgapiZyLlFbxz", - "id": "4HB7ECLzrbgapiZyLlFbxz", - "is_local": false, - "name": "Never Walk Alone", - "popularity": 70, - "preview_url": "https://p.scdn.co/mp3-preview/a824e6811182d93df62dce83e9bbc89fd6b67fbc?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4HB7ECLzrbgapiZyLlFbxz" - }, - "played_at": "2024-10-06T17:46:04.386Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2kLa7JZu4Ijdz1Gle2khZh" - }, - "href": "https://api.spotify.com/v1/artists/2kLa7JZu4Ijdz1Gle2khZh", - "id": "2kLa7JZu4Ijdz1Gle2khZh", - "name": "TSHA", - "type": "artist", - "uri": "spotify:artist:2kLa7JZu4Ijdz1Gle2khZh" + "played_at": "2026-02-25T16:52:08.748Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5sGYMMmqW6bcKWdmC7Jd2S" - }, - "href": "https://api.spotify.com/v1/albums/5sGYMMmqW6bcKWdmC7Jd2S", - "id": "5sGYMMmqW6bcKWdmC7Jd2S", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27307906cf33511dbe1b58f4872", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0207906cf33511dbe1b58f4872", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485107906cf33511dbe1b58f4872", - "width": 64 + "played_at": "2026-02-25T16:46:27.097Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Sad Girl", - "release_date": "2024-09-27", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:5sGYMMmqW6bcKWdmC7Jd2S" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2kLa7JZu4Ijdz1Gle2khZh" + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1LivdNtkmpzAK3BH4gMVd8" + }, + "href": "https://api.spotify.com/v1/albums/1LivdNtkmpzAK3BH4gMVd8", + "id": "1LivdNtkmpzAK3BH4gMVd8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273944e58629e9afa57f03375c0", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02944e58629e9afa57f03375c0", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851944e58629e9afa57f03375c0", + "width": 64 + } + ], + "name": "March Of The Venus 5", + "release_date": "2026-02-16", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1LivdNtkmpzAK3BH4gMVd8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236363, + "explicit": false, + "external_ids": { "isrc": "ITG272600035" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0rcdT26GpaUiuvlubml3UC" + }, + "href": "https://api.spotify.com/v1/tracks/0rcdT26GpaUiuvlubml3UC", + "id": "0rcdT26GpaUiuvlubml3UC", + "is_local": false, + "name": "March Of The Venus 5", + "popularity": 25, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0rcdT26GpaUiuvlubml3UC" }, - "href": "https://api.spotify.com/v1/artists/2kLa7JZu4Ijdz1Gle2khZh", - "id": "2kLa7JZu4Ijdz1Gle2khZh", - "name": "TSHA", - "type": "artist", - "uri": "spotify:artist:2kLa7JZu4Ijdz1Gle2khZh" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 224606, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2400756" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3Xz2ZcQlQRA7rqbj7tYsL3" - }, - "href": "https://api.spotify.com/v1/tracks/3Xz2ZcQlQRA7rqbj7tYsL3", - "id": "3Xz2ZcQlQRA7rqbj7tYsL3", - "is_local": false, - "name": "In The Night", - "popularity": 51, - "preview_url": "https://p.scdn.co/mp3-preview/46f5d2d481a9dc0c88424091842a59a176ea8cba?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:3Xz2ZcQlQRA7rqbj7tYsL3" - }, - "played_at": "2024-10-06T17:42:56.029Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T16:42:59.879Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5PlfkPxwCpRRWQJBxCa0By" - }, - "href": "https://api.spotify.com/v1/artists/5PlfkPxwCpRRWQJBxCa0By", - "id": "5PlfkPxwCpRRWQJBxCa0By", - "name": "HUGEL", - "type": "artist", - "uri": "spotify:artist:5PlfkPxwCpRRWQJBxCa0By" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5fMUXHkw8R8eOP2RNVYEZX" - }, - "href": "https://api.spotify.com/v1/artists/5fMUXHkw8R8eOP2RNVYEZX", - "id": "5fMUXHkw8R8eOP2RNVYEZX", - "name": "Diplo", - "type": "artist", - "uri": "spotify:artist:5fMUXHkw8R8eOP2RNVYEZX" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225164, + "explicit": false, + "external_ids": { "isrc": "ITD292603084" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PiYMb2KSVj6l0aj2t3ldI" + }, + "href": "https://api.spotify.com/v1/tracks/4PiYMb2KSVj6l0aj2t3ldI", + "id": "4PiYMb2KSVj6l0aj2t3ldI", + "is_local": false, + "name": "Feather Or Heart", + "popularity": 18, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4PiYMb2KSVj6l0aj2t3ldI" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5mU7ohKXRejACFS8eZIixp" - }, - "href": "https://api.spotify.com/v1/artists/5mU7ohKXRejACFS8eZIixp", - "id": "5mU7ohKXRejACFS8eZIixp", - "name": "Malou", - "type": "artist", - "uri": "spotify:artist:5mU7ohKXRejACFS8eZIixp" + "played_at": "2026-02-25T16:39:03.152Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4nXpTQXjFGtB5n3vC76IBR" - }, - "href": "https://api.spotify.com/v1/albums/4nXpTQXjFGtB5n3vC76IBR", - "id": "4nXpTQXjFGtB5n3vC76IBR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27388e0a2ae3b138aad267aae2b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0288e0a2ae3b138aad267aae2b", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 + } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 247333, + "explicit": false, + "external_ids": { "isrc": "DED832400445" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/17P6zEF92HDfAjRa4MHJgT" + }, + "href": "https://api.spotify.com/v1/tracks/17P6zEF92HDfAjRa4MHJgT", + "id": "17P6zEF92HDfAjRa4MHJgT", + "is_local": false, + "name": "Victorious", + "popularity": 37, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:17P6zEF92HDfAjRa4MHJgT" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485188e0a2ae3b138aad267aae2b", - "width": 64 + "played_at": "2026-02-25T16:35:17.225Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Forever (feat. Malou & Yuna)", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4nXpTQXjFGtB5n3vC76IBR" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5PlfkPxwCpRRWQJBxCa0By" - }, - "href": "https://api.spotify.com/v1/artists/5PlfkPxwCpRRWQJBxCa0By", - "id": "5PlfkPxwCpRRWQJBxCa0By", - "name": "HUGEL", - "type": "artist", - "uri": "spotify:artist:5PlfkPxwCpRRWQJBxCa0By" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5fMUXHkw8R8eOP2RNVYEZX" - }, - "href": "https://api.spotify.com/v1/artists/5fMUXHkw8R8eOP2RNVYEZX", - "id": "5fMUXHkw8R8eOP2RNVYEZX", - "name": "Diplo", - "type": "artist", - "uri": "spotify:artist:5fMUXHkw8R8eOP2RNVYEZX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5mU7ohKXRejACFS8eZIixp" - }, - "href": "https://api.spotify.com/v1/artists/5mU7ohKXRejACFS8eZIixp", - "id": "5mU7ohKXRejACFS8eZIixp", - "name": "Malou", - "type": "artist", - "uri": "spotify:artist:5mU7ohKXRejACFS8eZIixp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3kHVioJpVxlazAAKQ64pC1" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 341982, + "explicit": false, + "external_ids": { "isrc": "ATN262636539" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" + }, + "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", + "id": "5xrdC0inGkRHrNCBuqBshC", + "is_local": false, + "name": "Werewolves Of Armenia - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC" }, - "href": "https://api.spotify.com/v1/artists/3kHVioJpVxlazAAKQ64pC1", - "id": "3kHVioJpVxlazAAKQ64pC1", - "name": "Yuna", - "type": "artist", - "uri": "spotify:artist:3kHVioJpVxlazAAKQ64pC1" - } - ], - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 140500, - "explicit": false, - "external_ids": { - "isrc": "DEA622403098" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0WS1qLcXKsCGt5e3dqq30S" - }, - "href": "https://api.spotify.com/v1/tracks/0WS1qLcXKsCGt5e3dqq30S", - "id": "0WS1qLcXKsCGt5e3dqq30S", - "is_local": false, - "name": "Forever (feat. Malou & Yuna)", - "popularity": 68, - "preview_url": "https://p.scdn.co/mp3-preview/b765b00655af2a07b072b5c6245c7b731570d2cb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0WS1qLcXKsCGt5e3dqq30S" - }, - "played_at": "2024-10-06T17:39:11.454Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0nnF48t4C8uqGS5HPnCN3F" - }, - "href": "https://api.spotify.com/v1/artists/0nnF48t4C8uqGS5HPnCN3F", - "id": "0nnF48t4C8uqGS5HPnCN3F", - "name": "49th & Main", - "type": "artist", - "uri": "spotify:artist:0nnF48t4C8uqGS5HPnCN3F" + "played_at": "2026-02-25T16:28:34.631Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1xL7LvJtJlAjWPrtA7Aj0v" - }, - "href": "https://api.spotify.com/v1/albums/1xL7LvJtJlAjWPrtA7Aj0v", - "id": "1xL7LvJtJlAjWPrtA7Aj0v", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737be6c8bdc25b79bf8d95f0f0", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027be6c8bdc25b79bf8d95f0f0", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 254541, + "explicit": false, + "external_ids": { "isrc": "ATN262636538" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" + }, + "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", + "id": "05TkrrnzKlPYjNLDHXNDEa", + "is_local": false, + "name": "We Drink Your Blood - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048517be6c8bdc25b79bf8d95f0f0", - "width": 64 + "played_at": "2026-02-25T16:23:10.705Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Self Sabotage", - "release_date": "2024-03-28", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1xL7LvJtJlAjWPrtA7Aj0v" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0nnF48t4C8uqGS5HPnCN3F" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 320861, + "explicit": false, + "external_ids": { "isrc": "ATN262636537" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" + }, + "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", + "id": "3LjlgiECjVO4nHr8PB4jcN", + "is_local": false, + "name": "Sanctified With Dynamite - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN" }, - "href": "https://api.spotify.com/v1/artists/0nnF48t4C8uqGS5HPnCN3F", - "id": "0nnF48t4C8uqGS5HPnCN3F", - "name": "49th & Main", - "type": "artist", - "uri": "spotify:artist:0nnF48t4C8uqGS5HPnCN3F" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 145074, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2400390" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7yYur6YhUetXZj6b2CnWrE" - }, - "href": "https://api.spotify.com/v1/tracks/7yYur6YhUetXZj6b2CnWrE", - "id": "7yYur6YhUetXZj6b2CnWrE", - "is_local": false, - "name": "Self Sabotage", - "popularity": 67, - "preview_url": "https://p.scdn.co/mp3-preview/b3bb9a869a4ca05ac7e7da5022d4053924bd1727?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:7yYur6YhUetXZj6b2CnWrE" - }, - "played_at": "2024-10-06T17:36:50.942Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0vTVU0KH0CVzijsoKGsTPl" - }, - "href": "https://api.spotify.com/v1/artists/0vTVU0KH0CVzijsoKGsTPl", - "id": "0vTVU0KH0CVzijsoKGsTPl", - "name": "Barry Can't Swim", - "type": "artist", - "uri": "spotify:artist:0vTVU0KH0CVzijsoKGsTPl" + "played_at": "2026-02-25T16:18:38.297Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3UT1EXRpoX808v8dtCz172" - }, - "href": "https://api.spotify.com/v1/albums/3UT1EXRpoX808v8dtCz172", - "id": "3UT1EXRpoX808v8dtCz172", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730d8d33cfa46fce3e1bbf66e4", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020d8d33cfa46fce3e1bbf66e4", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 321678, + "explicit": false, + "external_ids": { "isrc": "ATN262636536" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" + }, + "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", + "id": "3S4JWuySEykWr90GmYlJCm", + "is_local": false, + "name": "Let There Be Night - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048510d8d33cfa46fce3e1bbf66e4", - "width": 64 + "played_at": "2026-02-25T16:13:17.513Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "Still Riding", - "release_date": "2024-09-24", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:3UT1EXRpoX808v8dtCz172" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0vTVU0KH0CVzijsoKGsTPl" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 210306, + "explicit": false, + "external_ids": { "isrc": "ATN262636535" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" + }, + "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", + "id": "6CaQoHtJ8wEWakucGeXvPb", + "is_local": false, + "name": "Blood For Blood - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb" }, - "href": "https://api.spotify.com/v1/artists/0vTVU0KH0CVzijsoKGsTPl", - "id": "0vTVU0KH0CVzijsoKGsTPl", - "name": "Barry Can't Swim", - "type": "artist", - "uri": "spotify:artist:0vTVU0KH0CVzijsoKGsTPl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219152, - "explicit": true, - "external_ids": { - "isrc": "GBCFB2400964" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1DQYCwZG5DOXXSTXluYQam" - }, - "href": "https://api.spotify.com/v1/tracks/1DQYCwZG5DOXXSTXluYQam", - "id": "1DQYCwZG5DOXXSTXluYQam", - "is_local": false, - "name": "Still Riding", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/08e9292ee8625a5ed96f39b98a7befb22feb5724?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1DQYCwZG5DOXXSTXluYQam" - }, - "played_at": "2024-10-06T17:34:25.873Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T16:07:56.148Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 207505, + "explicit": false, + "external_ids": { "isrc": "ATN262636534" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" + }, + "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", + "id": "5PbsjG7nIPqZyB5BXzAfp8", + "is_local": false, + "name": "Army Of The Night - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T16:04:25.328Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 225089, + "explicit": false, + "external_ids": { "isrc": "ATN262636533" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" + }, + "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", + "id": "2zEJBb3w3M9iwOUbZBnqi6", + "is_local": false, + "name": "Sainted By The Storm - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" - }, - "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", - "id": "2Q4FR4Ss0mh6EvbiQBHEOU", - "name": "Oona Doherty", - "type": "artist", - "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 337414, - "explicit": true, - "external_ids": { - "isrc": "UK7MC2400059" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" - }, - "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", - "id": "08Jhu8OZ6gCIGWQn6vP3uI", - "is_local": false, - "name": "Falling Together", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/2fa5fc5e733495719170f672a07b172bf678a89f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI" - }, - "played_at": "2024-10-06T17:30:46.715Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T16:00:57.660Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 262502, + "explicit": false, + "external_ids": { "isrc": "ATN262636532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" + }, + "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", + "id": "680LAwbwucfKwdFD0ckH6Z", + "is_local": false, + "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T15:57:12.848Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 278426, + "explicit": false, + "external_ids": { "isrc": "ATN262636531" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" + }, + "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", + "id": "2fpG2Ljj8uOfUkWeMq6bCM", + "is_local": false, + "name": "Fire & Forgive - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 71680, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400058" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN" - }, - "href": "https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN", - "id": "1wpcJ6TCrKpH6KdBmrp9yN", - "is_local": false, - "name": "Every Single Weekend - Interlude", - "popularity": 58, - "preview_url": "https://p.scdn.co/mp3-preview/2c46e4cea66da846807b70c7974d19b7837eba52?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:1wpcJ6TCrKpH6KdBmrp9yN" - }, - "played_at": "2024-10-06T17:25:10.544Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T15:01:41.061Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 238926, + "explicit": false, + "external_ids": { "isrc": "ATN262636530" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" + }, + "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", + "id": "6XIslQQvDKW05iHpvKNeN5", + "is_local": false, + "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", + "popularity": 25, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:57:04.121Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 257618, + "explicit": false, + "external_ids": { "isrc": "ATN262636529" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" + }, + "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", + "id": "1T0Q02fjBgWF5unjyLdvCl", + "is_local": false, + "name": "Stossgebet - Live in Oberhausen", + "popularity": 25, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl" }, - "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", - "id": "3C8RpaI3Go0yFF9whvKoED", - "name": "The Avalanches", - "type": "artist", - "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 254142, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400057" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu" - }, - "href": "https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu", - "id": "3cfgisz6DhZmooQk08P4Eu", - "is_local": false, - "name": "All You Children", - "popularity": 61, - "preview_url": "https://p.scdn.co/mp3-preview/ff3fc064f340e47347d4677332daf6da8155ae38?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:3cfgisz6DhZmooQk08P4Eu" - }, - "played_at": "2024-10-06T17:23:57.950Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T14:53:04.085Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 215831, + "explicit": false, + "external_ids": { "isrc": "ATN262636528" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" + }, + "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", + "id": "1UeAy4qXjU2F1Te3LLi093", + "is_local": false, + "name": "Beast Of Gevaudan - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:48:45.497Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 341037, + "explicit": false, + "external_ids": { "isrc": "ATN262636527" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" + }, + "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", + "id": "4nXgDCakmY9iyrhc9HBSMk", + "is_local": false, + "name": "Armata Strigoi - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 376918, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400056" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6" - }, - "href": "https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6", - "id": "6pOzbdJKEr4hvXkX7VkfY6", - "is_local": false, - "name": "Breather", - "popularity": 60, - "preview_url": "https://p.scdn.co/mp3-preview/dc7cd612c205968f5d6cb32696305656ae7ad888?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:6pOzbdJKEr4hvXkX7VkfY6" - }, - "played_at": "2024-10-06T17:19:43.477Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T14:45:10.692Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 258749, + "explicit": false, + "external_ids": { "isrc": "ATN262636526" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" + }, + "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", + "id": "4KoPXvj6k4AK4vXh5Q5g7v", + "is_local": false, + "name": "Dancing With The Dead - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:39:28.572Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 253902, + "explicit": false, + "external_ids": { "isrc": "ATN262636525" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" + }, + "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", + "id": "0ec5OZMe4ScfAD72s8mVM1", + "is_local": false, + "name": "Amen & Attack - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222365, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400055" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5" - }, - "href": "https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5", - "id": "7gb0pekqHQYTGo6NWLBvT5", - "is_local": false, - "name": "The Feeling I Get From You", - "popularity": 61, - "preview_url": "https://p.scdn.co/mp3-preview/da24fadc4bca20394435e53f5d61e8f6c36f9614?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:7gb0pekqHQYTGo6NWLBvT5" - }, - "played_at": "2024-10-06T17:13:26.609Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T14:35:10.021Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 248570, + "explicit": false, + "external_ids": { "isrc": "ATN262636524" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" + }, + "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", + "id": "51Y1Kt48noq3XNkeI5dFxf", + "is_local": false, + "name": "Cardinal Sin - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:30:55.846Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 243397, + "explicit": false, + "external_ids": { "isrc": "ATN262636523" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" + }, + "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", + "id": "5psVbswivNzLwqGgUeWP4Q", + "is_local": false, + "name": "Incense & Iron - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UE7nl9mha6s8z0wFQFIZ2" - }, - "href": "https://api.spotify.com/v1/artists/6UE7nl9mha6s8z0wFQFIZ2", - "id": "6UE7nl9mha6s8z0wFQFIZ2", - "name": "Robyn", - "type": "artist", - "uri": "spotify:artist:6UE7nl9mha6s8z0wFQFIZ2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202648, - "explicit": true, - "external_ids": { - "isrc": "UK7MC2400157" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ" - }, - "href": "https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ", - "id": "0pMj03SiaZ9bkFlXQWNhtZ", - "is_local": false, - "name": "Life", - "popularity": 62, - "preview_url": "https://p.scdn.co/mp3-preview/261bc3bd3192ef4158b1ca42e95262113241a326?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:0pMj03SiaZ9bkFlXQWNhtZ" - }, - "played_at": "2024-10-06T17:09:44.240Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T14:26:47.473Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 220808, + "explicit": false, + "external_ids": { "isrc": "ATN262636522" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" + }, + "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", + "id": "71AgXarsHEpHOARRho6A6N", + "is_local": false, + "name": "Faster Than the Flame - Live in Oberhausen", + "popularity": 28, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71AgXarsHEpHOARRho6A6N" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:22:43.956Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 102166, + "explicit": false, + "external_ids": { "isrc": "ATN262636521" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" + }, + "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", + "id": "4L1GfsUwq1xswmKAEZgVLJ", + "is_local": false, + "name": "Intro - Monumental Mass Theme - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205638, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400054" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto" - }, - "href": "https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto", - "id": "27D9YN3uHPD3PTXvzNtbto", - "is_local": false, - "name": "Still Summer", - "popularity": 62, - "preview_url": "https://p.scdn.co/mp3-preview/e959ae6394e9d19e00cd474ed2b76bb43b6063d9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:27D9YN3uHPD3PTXvzNtbto" - }, - "played_at": "2024-10-06T17:06:21.659Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "played_at": "2026-02-25T14:19:02.936Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 413253, + "explicit": false, + "external_ids": { "isrc": "ATN262636520" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" + }, + "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", + "id": "07tRsrNFa3LpSUVcHDTBmS", + "is_local": false, + "name": "Werewolves of Armenia - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS" }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 + "played_at": "2026-02-25T14:17:20.608Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fEfMW5bypHZ0A8eLnhwj5" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 256980, + "explicit": false, + "external_ids": { "isrc": "ATN262636519" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" + }, + "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", + "id": "2x4iJOct9B6ylf6urCbgyx", + "is_local": false, + "name": "We Drink Your Blood - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx" }, - "href": "https://api.spotify.com/v1/artists/0fEfMW5bypHZ0A8eLnhwj5", - "id": "0fEfMW5bypHZ0A8eLnhwj5", - "name": "Kelsey Lu", - "type": "artist", - "uri": "spotify:artist:0fEfMW5bypHZ0A8eLnhwj5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0FNfiTQCR5o3ounOlWzm1d" - }, - "href": "https://api.spotify.com/v1/artists/0FNfiTQCR5o3ounOlWzm1d", - "id": "0FNfiTQCR5o3ounOlWzm1d", - "name": "John Glacier", - "type": "artist", - "uri": "spotify:artist:0FNfiTQCR5o3ounOlWzm1d" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1R84VlXnFFULOsWWV8IrCQ" - }, - "href": "https://api.spotify.com/v1/artists/1R84VlXnFFULOsWWV8IrCQ", - "id": "1R84VlXnFFULOsWWV8IrCQ", - "name": "Panda Bear", - "type": "artist", - "uri": "spotify:artist:1R84VlXnFFULOsWWV8IrCQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212339, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400053" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2" - }, - "href": "https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2", - "id": "1gRMKwvMvp6LcQVMpMXQg2", - "is_local": false, - "name": "Dafodil", - "popularity": 63, - "preview_url": "https://p.scdn.co/mp3-preview/173fad98e5e51a6cfb02b3cb394ab46c70d44303?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:1gRMKwvMvp6LcQVMpMXQg2" - }, - "played_at": "2024-10-06T17:02:56.022Z", - "context": { - "type": "album", - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "played_at": "2026-02-25T14:10:29.349Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } }, - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - } - } - ], - "next": "https://api.spotify.com/v1/me/player/recently-played?before=1728234176022", - "cursors": { - "after": "1728238158556", - "before": "1728234176022" - }, - "limit": 20, - "href": "https://api.spotify.com/v1/me/player/recently-played" + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 407493, + "explicit": false, + "external_ids": { "isrc": "ATN262636518" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" + }, + "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", + "id": "18ps73idU6ezwEzvAHNRea", + "is_local": false, + "name": "Sanctified With Dynamite - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:18ps73idU6ezwEzvAHNRea" + }, + "played_at": "2026-02-25T14:06:10.058Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + } + ], + "next": "https://api.spotify.com/v1/me/player/recently-played?before=1772028370058&limit=48", + "cursors": { "after": "1772050520497", "before": "1772028370058" }, + "limit": 48, + "href": "https://api.spotify.com/v1/me/player/recently-played?limit=48" } diff --git a/tests/fixtures/saved_albums.json b/tests/fixtures/saved_albums.json index b8e006e..5ecff82 100644 --- a/tests/fixtures/saved_albums.json +++ b/tests/fixtures/saved_albums.json @@ -1,36026 +1,77237 @@ { - "href": "https://api.spotify.com/v1/me/albums?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2024-09-19T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" - }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP?locale=en-US%2Cen%3Bq%3D0.5", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "height": 64, - "width": 64 - } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 135835, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p" - }, - "href": "https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p", - "id": "7uLBdV19ad7kAjU2oB1l6p", - "name": "Wanna", - "preview_url": "https://p.scdn.co/mp3-preview/fc112f83fe770b09e4c1bd586e5b9c144e384bd7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:7uLBdV19ad7kAjU2oB1l6p", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 240580, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC" - }, - "href": "https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC", - "id": "3pjX4hC8adabkXGu3X9GTC", - "name": "Treat Each Other Right", - "preview_url": "https://p.scdn.co/mp3-preview/a518fdb34284daa9a2298fd5491d6cede24a3e01?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:3pjX4hC8adabkXGu3X9GTC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4KDu9uqzqseVCpQXMa8Pvm" - }, - "href": "https://api.spotify.com/v1/artists/4KDu9uqzqseVCpQXMa8Pvm", - "id": "4KDu9uqzqseVCpQXMa8Pvm", - "name": "Oliver Sim", - "type": "artist", - "uri": "spotify:artist:4KDu9uqzqseVCpQXMa8Pvm" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iOvXCl6edW5Um0fXEBRXy" - }, - "href": "https://api.spotify.com/v1/artists/3iOvXCl6edW5Um0fXEBRXy", - "id": "3iOvXCl6edW5Um0fXEBRXy", - "name": "The xx", - "type": "artist", - "uri": "spotify:artist:3iOvXCl6edW5Um0fXEBRXy" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208334, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD" - }, - "href": "https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD", - "id": "4gBniy3TwR9o2JDBx48TlD", - "name": "Waited All Night", - "preview_url": "https://p.scdn.co/mp3-preview/b7820ac10349ca374242240f69887c073a4980f2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:4gBniy3TwR9o2JDBx48TlD", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0XfQBWgzisaS9ltDV9bXAS" - }, - "href": "https://api.spotify.com/v1/artists/0XfQBWgzisaS9ltDV9bXAS", - "id": "0XfQBWgzisaS9ltDV9bXAS", - "name": "Honey Dijon", - "type": "artist", - "uri": "spotify:artist:0XfQBWgzisaS9ltDV9bXAS" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222315, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz" - }, - "href": "https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz", - "id": "79gWc6dZ1dXH7rC67DTunz", - "name": "Baddy On The Floor", - "preview_url": "https://p.scdn.co/mp3-preview/c260664dd5adc2290fce52cb51aa8667e39c2118?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:79gWc6dZ1dXH7rC67DTunz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fEfMW5bypHZ0A8eLnhwj5" - }, - "href": "https://api.spotify.com/v1/artists/0fEfMW5bypHZ0A8eLnhwj5", - "id": "0fEfMW5bypHZ0A8eLnhwj5", - "name": "Kelsey Lu", - "type": "artist", - "uri": "spotify:artist:0fEfMW5bypHZ0A8eLnhwj5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0FNfiTQCR5o3ounOlWzm1d" - }, - "href": "https://api.spotify.com/v1/artists/0FNfiTQCR5o3ounOlWzm1d", - "id": "0FNfiTQCR5o3ounOlWzm1d", - "name": "John Glacier", - "type": "artist", - "uri": "spotify:artist:0FNfiTQCR5o3ounOlWzm1d" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1R84VlXnFFULOsWWV8IrCQ" - }, - "href": "https://api.spotify.com/v1/artists/1R84VlXnFFULOsWWV8IrCQ", - "id": "1R84VlXnFFULOsWWV8IrCQ", - "name": "Panda Bear", - "type": "artist", - "uri": "spotify:artist:1R84VlXnFFULOsWWV8IrCQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212339, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2" - }, - "href": "https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2", - "id": "1gRMKwvMvp6LcQVMpMXQg2", - "name": "Dafodil", - "preview_url": "https://p.scdn.co/mp3-preview/173fad98e5e51a6cfb02b3cb394ab46c70d44303?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:1gRMKwvMvp6LcQVMpMXQg2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205638, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto" - }, - "href": "https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto", - "id": "27D9YN3uHPD3PTXvzNtbto", - "name": "Still Summer", - "preview_url": "https://p.scdn.co/mp3-preview/e959ae6394e9d19e00cd474ed2b76bb43b6063d9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:27D9YN3uHPD3PTXvzNtbto", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UE7nl9mha6s8z0wFQFIZ2" - }, - "href": "https://api.spotify.com/v1/artists/6UE7nl9mha6s8z0wFQFIZ2", - "id": "6UE7nl9mha6s8z0wFQFIZ2", - "name": "Robyn", - "type": "artist", - "uri": "spotify:artist:6UE7nl9mha6s8z0wFQFIZ2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202648, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ" - }, - "href": "https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ", - "id": "0pMj03SiaZ9bkFlXQWNhtZ", - "name": "Life", - "preview_url": "https://p.scdn.co/mp3-preview/261bc3bd3192ef4158b1ca42e95262113241a326?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:0pMj03SiaZ9bkFlXQWNhtZ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222365, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5" - }, - "href": "https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5", - "id": "7gb0pekqHQYTGo6NWLBvT5", - "name": "The Feeling I Get From You", - "preview_url": "https://p.scdn.co/mp3-preview/da24fadc4bca20394435e53f5d61e8f6c36f9614?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:7gb0pekqHQYTGo6NWLBvT5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 376918, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6" - }, - "href": "https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6", - "id": "6pOzbdJKEr4hvXkX7VkfY6", - "name": "Breather", - "preview_url": "https://p.scdn.co/mp3-preview/dc7cd612c205968f5d6cb32696305656ae7ad888?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:6pOzbdJKEr4hvXkX7VkfY6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "href": "https://api.spotify.com/v1/me/albums?offset=0&limit=48", + "items": [ + { + "added_at": "2026-02-12T23:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 39, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" - }, - "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", - "id": "3C8RpaI3Go0yFF9whvKoED", - "name": "The Avalanches", - "type": "artist", - "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 254142, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu" - }, - "href": "https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu", - "id": "3cfgisz6DhZmooQk08P4Eu", - "name": "All You Children", - "preview_url": "https://p.scdn.co/mp3-preview/ff3fc064f340e47347d4677332daf6da8155ae38?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:3cfgisz6DhZmooQk08P4Eu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 71680, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN" - }, - "href": "https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN", - "id": "1wpcJ6TCrKpH6KdBmrp9yN", - "name": "Every Single Weekend - Interlude", - "preview_url": "https://p.scdn.co/mp3-preview/2c46e4cea66da846807b70c7974d19b7837eba52?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:1wpcJ6TCrKpH6KdBmrp9yN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "height": 64, + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 39, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 83427, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3VzB3NVfTrFrXUvB2Gc4KO" + }, + "href": "https://api.spotify.com/v1/tracks/3VzB3NVfTrFrXUvB2Gc4KO", + "id": "3VzB3NVfTrFrXUvB2Gc4KO", + "name": "Intro - Monumental Mass Theme - Live At Olympiahalle", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3VzB3NVfTrFrXUvB2Gc4KO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208422, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2imCw1cnnx5SJhHnfxl0IR" + }, + "href": "https://api.spotify.com/v1/tracks/2imCw1cnnx5SJhHnfxl0IR", + "id": "2imCw1cnnx5SJhHnfxl0IR", + "name": "Bless\u00b4em With the Blade - Live At Olympiahalle", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2imCw1cnnx5SJhHnfxl0IR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 246097, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ybxvxOs3bc6w97Hb1su25" + }, + "href": "https://api.spotify.com/v1/tracks/2ybxvxOs3bc6w97Hb1su25", + "id": "2ybxvxOs3bc6w97Hb1su25", + "name": "Incense & Iron - Live At Olympiahalle", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2ybxvxOs3bc6w97Hb1su25", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219129, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5SUrST3ZvTiOqbqsmbLxWz" + }, + "href": "https://api.spotify.com/v1/tracks/5SUrST3ZvTiOqbqsmbLxWz", + "id": "5SUrST3ZvTiOqbqsmbLxWz", + "name": "Army of the Night - Live At Olympiahalle", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5SUrST3ZvTiOqbqsmbLxWz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200888, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6OFTaJVq3DwCOrbJ9vltPa" + }, + "href": "https://api.spotify.com/v1/tracks/6OFTaJVq3DwCOrbJ9vltPa", + "id": "6OFTaJVq3DwCOrbJ9vltPa", + "name": "Sinners of the Seven Seas - Live At Olympiahalle", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6OFTaJVq3DwCOrbJ9vltPa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250496, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1X2s7jaBKer3rh5skUDVqi" + }, + "href": "https://api.spotify.com/v1/tracks/1X2s7jaBKer3rh5skUDVqi", + "id": "1X2s7jaBKer3rh5skUDVqi", + "name": "Amen & Attack - Live At Olympiahalle", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1X2s7jaBKer3rh5skUDVqi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250959, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/211d8QaBJ3ptMIQ9NDjs43" + }, + "href": "https://api.spotify.com/v1/tracks/211d8QaBJ3ptMIQ9NDjs43", + "id": "211d8QaBJ3ptMIQ9NDjs43", + "name": "Dancing With the Dead - Live At Olympiahalle", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:211d8QaBJ3ptMIQ9NDjs43", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 395090, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6gW1rK5HmWtTf1wU3dqmAs" + }, + "href": "https://api.spotify.com/v1/tracks/6gW1rK5HmWtTf1wU3dqmAs", + "id": "6gW1rK5HmWtTf1wU3dqmAs", + "name": "Armata Strigoi - Live At Olympiahalle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6gW1rK5HmWtTf1wU3dqmAs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 386157, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2OdhUgpqkuj5vAo7gbs07r" + }, + "href": "https://api.spotify.com/v1/tracks/2OdhUgpqkuj5vAo7gbs07r", + "id": "2OdhUgpqkuj5vAo7gbs07r", + "name": "1589 - Live At Olympiahalle", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2OdhUgpqkuj5vAo7gbs07r", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 328431, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5RpfDfyTZK8qt3Z6nKw5Sn" + }, + "href": "https://api.spotify.com/v1/tracks/5RpfDfyTZK8qt3Z6nKw5Sn", + "id": "5RpfDfyTZK8qt3Z6nKw5Sn", + "name": "Demons Are A Girl's Best Friend - Live At Olympiahalle", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:5RpfDfyTZK8qt3Z6nKw5Sn", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 245176, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/06xAvw7RiY2QIMdha4MXZs" + }, + "href": "https://api.spotify.com/v1/tracks/06xAvw7RiY2QIMdha4MXZs", + "id": "06xAvw7RiY2QIMdha4MXZs", + "name": "Stossgebet - Live At Olympiahalle", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:06xAvw7RiY2QIMdha4MXZs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 320081, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/78684m1lvJmX0fGtKVBz5t" + }, + "href": "https://api.spotify.com/v1/tracks/78684m1lvJmX0fGtKVBz5t", + "id": "78684m1lvJmX0fGtKVBz5t", + "name": "Fire & Forgive - Live At Olympiahalle", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:78684m1lvJmX0fGtKVBz5t", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 202024, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jC6F9Q2cZptUxiw7OKqlU" + }, + "href": "https://api.spotify.com/v1/tracks/3jC6F9Q2cZptUxiw7OKqlU", + "id": "3jC6F9Q2cZptUxiw7OKqlU", + "name": "We Don't Wanna Be No Saints - Live At Olympiahalle", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3jC6F9Q2cZptUxiw7OKqlU", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 278407, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2CGBOwADdYdmrCf5RyMDm7" + }, + "href": "https://api.spotify.com/v1/tracks/2CGBOwADdYdmrCf5RyMDm7", + "id": "2CGBOwADdYdmrCf5RyMDm7", + "name": "Alive or Undead - Live At Olympiahalle", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2CGBOwADdYdmrCf5RyMDm7", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 217362, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/00iwTfqhPIwB1UD0BsYTTr" + }, + "href": "https://api.spotify.com/v1/tracks/00iwTfqhPIwB1UD0BsYTTr", + "id": "00iwTfqhPIwB1UD0BsYTTr", + "name": "Heretic Hunters - Live At Olympiahalle", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:00iwTfqhPIwB1UD0BsYTTr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 234453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uQDoCpxcQ2j8ZoQDfhySL" + }, + "href": "https://api.spotify.com/v1/tracks/7uQDoCpxcQ2j8ZoQDfhySL", + "id": "7uQDoCpxcQ2j8ZoQDfhySL", + "name": "Sainted by the Storm - Live At Olympiahalle", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7uQDoCpxcQ2j8ZoQDfhySL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 240948, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5tW5uVk6WrGkfbojR4CthL" + }, + "href": "https://api.spotify.com/v1/tracks/5tW5uVk6WrGkfbojR4CthL", + "id": "5tW5uVk6WrGkfbojR4CthL", + "name": "Blood for Blood (Faoladh) - Live At Olympiahalle", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5tW5uVk6WrGkfbojR4CthL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 407493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" + }, + "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", + "id": "18ps73idU6ezwEzvAHNRea", + "name": "Sanctified With Dynamite - Live At Olympiahalle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:18ps73idU6ezwEzvAHNRea", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 256980, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" + }, + "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", + "id": "2x4iJOct9B6ylf6urCbgyx", + "name": "We Drink Your Blood - Live At Olympiahalle", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 413253, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" + }, + "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", + "id": "07tRsrNFa3LpSUVcHDTBmS", + "name": "Werewolves of Armenia - Live At Olympiahalle", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 102166, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" + }, + "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", + "id": "4L1GfsUwq1xswmKAEZgVLJ", + "name": "Intro - Monumental Mass Theme - Live in Oberhausen", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 220808, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" + }, + "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", + "id": "71AgXarsHEpHOARRho6A6N", + "name": "Faster Than the Flame - Live in Oberhausen", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71AgXarsHEpHOARRho6A6N", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 243397, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" + }, + "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", + "id": "5psVbswivNzLwqGgUeWP4Q", + "name": "Incense & Iron - Live in Oberhausen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 248570, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" + }, + "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", + "id": "51Y1Kt48noq3XNkeI5dFxf", + "name": "Cardinal Sin - Live in Oberhausen", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 253902, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" + }, + "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", + "id": "0ec5OZMe4ScfAD72s8mVM1", + "name": "Amen & Attack - Live in Oberhausen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 258749, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" + }, + "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", + "id": "4KoPXvj6k4AK4vXh5Q5g7v", + "name": "Dancing With The Dead - Live in Oberhausen", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 341037, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" + }, + "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", + "id": "4nXgDCakmY9iyrhc9HBSMk", + "name": "Armata Strigoi - Live in Oberhausen", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 215831, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" + }, + "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", + "id": "1UeAy4qXjU2F1Te3LLi093", + "name": "Beast Of Gevaudan - Live in Oberhausen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 257618, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" + }, + "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", + "id": "1T0Q02fjBgWF5unjyLdvCl", + "name": "Stossgebet - Live in Oberhausen", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 238926, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" + }, + "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", + "id": "6XIslQQvDKW05iHpvKNeN5", + "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 278426, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" + }, + "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", + "id": "2fpG2Ljj8uOfUkWeMq6bCM", + "name": "Fire & Forgive - Live in Oberhausen", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 262502, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" + }, + "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", + "id": "680LAwbwucfKwdFD0ckH6Z", + "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 225089, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" + }, + "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", + "id": "2zEJBb3w3M9iwOUbZBnqi6", + "name": "Sainted By The Storm - Live in Oberhausen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 207505, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" + }, + "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", + "id": "5PbsjG7nIPqZyB5BXzAfp8", + "name": "Army Of The Night - Live in Oberhausen", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 210306, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" + }, + "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", + "id": "6CaQoHtJ8wEWakucGeXvPb", + "name": "Blood For Blood - Live in Oberhausen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 321678, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" + }, + "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", + "id": "3S4JWuySEykWr90GmYlJCm", + "name": "Let There Be Night - Live in Oberhausen", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 320861, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" + }, + "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", + "id": "3LjlgiECjVO4nHr8PB4jcN", + "name": "Sanctified With Dynamite - Live in Oberhausen", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 254541, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" + }, + "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", + "id": "05TkrrnzKlPYjNLDHXNDEa", + "name": "We Drink Your Blood - Live in Oberhausen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 341982, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" + }, + "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", + "id": "5xrdC0inGkRHrNCBuqBshC", + "name": "Werewolves Of Armenia - Live in Oberhausen", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" - }, - "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", - "id": "2Q4FR4Ss0mh6EvbiQBHEOU", - "name": "Oona Doherty", - "type": "artist", - "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 337414, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" - }, - "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", - "id": "08Jhu8OZ6gCIGWQn6vP3uI", - "name": "Falling Together", - "preview_url": "https://p.scdn.co/mp3-preview/2fa5fc5e733495719170f672a07b172bf678a89f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI", - "is_local": false + "copyrights": [ + { + "text": "(C) 2026 Napalm Records Handels GmbH", + "type": "C" + }, + { + "text": "(P) 2026 Napalm Records Handels GmbH", + "type": "P" + } + ], + "external_ids": { "upc": "810185197408" }, + "genres": [], + "label": "Napalm Records Handels GmbH", + "popularity": 44 } - ] - }, - "copyrights": [ - { - "text": "2024 Young", - "type": "C" - }, - { - "text": "2024 Young", - "type": "P" - } - ], - "external_ids": { - "upc": "889030035653" }, - "genres": [], - "label": "Young", - "popularity": 73 - } - }, - null, - { - "added_at": "2024-09-05T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 20, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3DQueEd1Ft9PHWgovDzPKh" - }, - "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh?locale=en-US%2Cen%3Bq%3D0.5", - "id": "3DQueEd1Ft9PHWgovDzPKh", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736b8a4828e057b7dc1c4a4d39", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026b8a4828e057b7dc1c4a4d39", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516b8a4828e057b7dc1c4a4d39", - "height": 64, - "width": 64 - } - ], - "name": "ten days", - "release_date": "2024-09-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3DQueEd1Ft9PHWgovDzPKh", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 20, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 30857, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc" - }, - "href": "https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc", - "id": "00nDbqJkHBGUFdim9M0xGc", - "name": ".one", - "preview_url": "https://p.scdn.co/mp3-preview/52224422e178fa35baa9ffbf097372b7031fbecf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:00nDbqJkHBGUFdim9M0xGc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6l7R1jntPahGxwJt7Tky8h" - }, - "href": "https://api.spotify.com/v1/artists/6l7R1jntPahGxwJt7Tky8h", - "id": "6l7R1jntPahGxwJt7Tky8h", - "name": "Obongjayar", - "type": "artist", - "uri": "spotify:artist:6l7R1jntPahGxwJt7Tky8h" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220653, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi" - }, - "href": "https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi", - "id": "1rf4SX7dduNbrNnOmupLzi", - "name": "adore u", - "preview_url": "https://p.scdn.co/mp3-preview/49ddf22bfe3925899cbb9ecf5d5157525becdcb4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:1rf4SX7dduNbrNnOmupLzi", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 10670, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH" - }, - "href": "https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH", - "id": "0lt9clHEwYyheuC9rik9UH", - "name": ".two", - "preview_url": "https://p.scdn.co/mp3-preview/59a26651d9742fa1856469cf1c0f8c7c55819525?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:0lt9clHEwYyheuC9rik9UH", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6Ja6zFB5d7XRihhfMo6KzY" - }, - "href": "https://api.spotify.com/v1/artists/6Ja6zFB5d7XRihhfMo6KzY", - "id": "6Ja6zFB5d7XRihhfMo6KzY", - "name": "Jozzy", - "type": "artist", - "uri": "spotify:artist:6Ja6zFB5d7XRihhfMo6KzY" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7IrBqZo6diq3hV3GpUhrs2" - }, - "href": "https://api.spotify.com/v1/artists/7IrBqZo6diq3hV3GpUhrs2", - "id": "7IrBqZo6diq3hV3GpUhrs2", - "name": "Jim Legxacy", - "type": "artist", - "uri": "spotify:artist:7IrBqZo6diq3hV3GpUhrs2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i" - }, - "href": "https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i", - "id": "6twB0uYXJYW9t5GHfYaQ3i", - "name": "ten", - "preview_url": "https://p.scdn.co/mp3-preview/99fc4c0f25e64d30af9e619ea820bed60aa2b1c6?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:6twB0uYXJYW9t5GHfYaQ3i", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15034, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW" - }, - "href": "https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW", - "id": "6G7TRmzTt9tnrM0QqSVpJW", - "name": ".three", - "preview_url": "https://p.scdn.co/mp3-preview/7aeb75b213d74995df23a41d86494834bc801d78?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:6G7TRmzTt9tnrM0QqSVpJW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WoVwexZuODvclzULjPQtm" - }, - "href": "https://api.spotify.com/v1/artists/2WoVwexZuODvclzULjPQtm", - "id": "2WoVwexZuODvclzULjPQtm", - "name": "Sampha", - "type": "artist", - "uri": "spotify:artist:2WoVwexZuODvclzULjPQtm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 214469, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X" - }, - "href": "https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X", - "id": "4IHblO52meh2jwqES1BA7X", - "name": "fear less", - "preview_url": "https://p.scdn.co/mp3-preview/c0952ae5c7423cc08ca7a53f0f182a6f20586cde?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:4IHblO52meh2jwqES1BA7X", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 9856, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq" - }, - "href": "https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq", - "id": "1wU9pfdw6ht8HKfxz6wMNq", - "name": ".four", - "preview_url": "https://p.scdn.co/mp3-preview/a4a6f591cb0cf93a7d57df33ad70ac1d8b7db349?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:1wU9pfdw6ht8HKfxz6wMNq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PLsMEk2DCRVlVL2a9aZAv" - }, - "href": "https://api.spotify.com/v1/artists/4PLsMEk2DCRVlVL2a9aZAv", - "id": "4PLsMEk2DCRVlVL2a9aZAv", - "name": "SOAK", - "type": "artist", - "uri": "spotify:artist:4PLsMEk2DCRVlVL2a9aZAv" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 260997, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a" - }, - "href": "https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a", - "id": "2D9a9CXeo3HFtVeaNlzp4a", - "name": "just stand there", - "preview_url": "https://p.scdn.co/mp3-preview/06a95f2285831e3f4848718f5c8c2f7deeafaf80?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:2D9a9CXeo3HFtVeaNlzp4a", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15254, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM" - }, - "href": "https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM", - "id": "3vTHKAYJy0hY1OkVv1qLNM", - "name": ".five", - "preview_url": "https://p.scdn.co/mp3-preview/29846c63d0cf33c05ee69ea92d412a2f473e1604?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:3vTHKAYJy0hY1OkVv1qLNM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 224073, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6" - }, - "href": "https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6", - "id": "1qfJ6OvxrspQTmcvdIEoX6", - "name": "places to be", - "preview_url": "https://p.scdn.co/mp3-preview/5c1c520365bbd3c9e2e84be42d9d70b0ec71ed01?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:1qfJ6OvxrspQTmcvdIEoX6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 28836, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG" - }, - "href": "https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG", - "id": "13H2XgH3k8SEptaoD5qeLG", - "name": ".six", - "preview_url": "https://p.scdn.co/mp3-preview/e630a09889f8e86bca24bcb54a6448e8c969936f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:13H2XgH3k8SEptaoD5qeLG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/59MDSNIYoOY0WRYuodzJPD" - }, - "href": "https://api.spotify.com/v1/artists/59MDSNIYoOY0WRYuodzJPD", - "id": "59MDSNIYoOY0WRYuodzJPD", - "name": "Duskus", - "type": "artist", - "uri": "spotify:artist:59MDSNIYoOY0WRYuodzJPD" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" - }, - "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", - "id": "7Eu1txygG6nJttLHbZdQOh", - "name": "Four Tet", - "type": "artist", - "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" - }, - "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", - "id": "3pK4EcflBpG1Kpmjk5LK2R", - "name": "Joy Anonymous", - "type": "artist", - "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 453068, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc" - }, - "href": "https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc", - "id": "3i9QKRl5Ql3pgUfNdYBVTc", - "name": "glow", - "preview_url": "https://p.scdn.co/mp3-preview/4ddd31cf8fe9f76b8aa72e2a1b5d51ccc9e00e5a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:3i9QKRl5Ql3pgUfNdYBVTc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 31749, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW" - }, - "href": "https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW", - "id": "2OLH9ukOFDVBMuVUuy2sFW", - "name": ".seven", - "preview_url": "https://p.scdn.co/mp3-preview/cc0e8af8b91eff643b65fefdbc6b32fe2a7ad7db?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:2OLH9ukOFDVBMuVUuy2sFW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220656, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW" - }, - "href": "https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW", - "id": "3DzWFxyzsAVblVNndiU9CW", - "name": "i saw you", - "preview_url": "https://p.scdn.co/mp3-preview/e2b23e98a35b1ccbce037d34c2c38c49b2371142?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:3DzWFxyzsAVblVNndiU9CW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15037, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA" - }, - "href": "https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA", - "id": "1aTcAf7K1ym8lBcuu8nmJA", - "name": ".eight", - "preview_url": "https://p.scdn.co/mp3-preview/d2910a98ace82ead87c06aad442b0f8104263feb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:1aTcAf7K1ym8lBcuu8nmJA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5s6TJEuHTr9GR894wc6VfP" - }, - "href": "https://api.spotify.com/v1/artists/5s6TJEuHTr9GR894wc6VfP", - "id": "5s6TJEuHTr9GR894wc6VfP", - "name": "Emmylou Harris", - "type": "artist", - "uri": "spotify:artist:5s6TJEuHTr9GR894wc6VfP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200737, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X" - }, - "href": "https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X", - "id": "4S05mkyTtAiWy5l4umch0X", - "name": "where will i be", - "preview_url": "https://p.scdn.co/mp3-preview/c8b398eaced8e21a97b1460480ab58a2c44364dd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 16, - "type": "track", - "uri": "spotify:track:4S05mkyTtAiWy5l4umch0X", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 19060, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN" - }, - "href": "https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN", - "id": "5aNwAqN5Gk5oZIwW5KfhXN", - "name": ".nine", - "preview_url": "https://p.scdn.co/mp3-preview/d444f5f0921bee7a12beff1649a3cf295a822c76?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 17, - "type": "track", - "uri": "spotify:track:5aNwAqN5Gk5oZIwW5KfhXN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" - }, - "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", - "id": "3pK4EcflBpG1Kpmjk5LK2R", - "name": "Joy Anonymous", - "type": "artist", - "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 344068, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv" - }, - "href": "https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv", - "id": "4A8tKYA7gwZzQ4jVwIv1sv", - "name": "peace u need", - "preview_url": "https://p.scdn.co/mp3-preview/d333ce79ff70629051c9db4c5850b2b22288df71?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 18, - "type": "track", - "uri": "spotify:track:4A8tKYA7gwZzQ4jVwIv1sv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 29540, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor" - }, - "href": "https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor", - "id": "2feEZkLf7dZUueeVBNsdor", - "name": ".ten", - "preview_url": "https://p.scdn.co/mp3-preview/72d66fa681d50abf590a9cca9553b112fa03c1ee?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 19, - "type": "track", - "uri": "spotify:track:2feEZkLf7dZUueeVBNsdor", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + { + "added_at": "2024-09-19T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3IunaFjvNKj98JW89JYv9u" - }, - "href": "https://api.spotify.com/v1/artists/3IunaFjvNKj98JW89JYv9u", - "id": "3IunaFjvNKj98JW89JYv9u", - "name": "The Japanese House", - "type": "artist", - "uri": "spotify:artist:3IunaFjvNKj98JW89JYv9u" + "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", + "id": "57MSBg5pBQZH5bfLVDmeuP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27314b5583615b195556a3882ac", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0214b5583615b195556a3882ac", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485114b5583615b195556a3882ac", + "height": 64, + "width": 64 + } + ], + "name": "In Waves", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 135835, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p" + }, + "href": "https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p", + "id": "7uLBdV19ad7kAjU2oB1l6p", + "name": "Wanna", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7uLBdV19ad7kAjU2oB1l6p", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 240580, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC" + }, + "href": "https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC", + "id": "3pjX4hC8adabkXGu3X9GTC", + "name": "Treat Each Other Right", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3pjX4hC8adabkXGu3X9GTC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4KDu9uqzqseVCpQXMa8Pvm" + }, + "href": "https://api.spotify.com/v1/artists/4KDu9uqzqseVCpQXMa8Pvm", + "id": "4KDu9uqzqseVCpQXMa8Pvm", + "name": "Oliver Sim", + "type": "artist", + "uri": "spotify:artist:4KDu9uqzqseVCpQXMa8Pvm" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iOvXCl6edW5Um0fXEBRXy" + }, + "href": "https://api.spotify.com/v1/artists/3iOvXCl6edW5Um0fXEBRXy", + "id": "3iOvXCl6edW5Um0fXEBRXy", + "name": "The xx", + "type": "artist", + "uri": "spotify:artist:3iOvXCl6edW5Um0fXEBRXy" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208334, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD" + }, + "href": "https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD", + "id": "4gBniy3TwR9o2JDBx48TlD", + "name": "Waited All Night", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4gBniy3TwR9o2JDBx48TlD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0XfQBWgzisaS9ltDV9bXAS" + }, + "href": "https://api.spotify.com/v1/artists/0XfQBWgzisaS9ltDV9bXAS", + "id": "0XfQBWgzisaS9ltDV9bXAS", + "name": "Honey Dijon", + "type": "artist", + "uri": "spotify:artist:0XfQBWgzisaS9ltDV9bXAS" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222315, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz" + }, + "href": "https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz", + "id": "79gWc6dZ1dXH7rC67DTunz", + "name": "Baddy On The Floor", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:79gWc6dZ1dXH7rC67DTunz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fEfMW5bypHZ0A8eLnhwj5" + }, + "href": "https://api.spotify.com/v1/artists/0fEfMW5bypHZ0A8eLnhwj5", + "id": "0fEfMW5bypHZ0A8eLnhwj5", + "name": "Kelsey Lu", + "type": "artist", + "uri": "spotify:artist:0fEfMW5bypHZ0A8eLnhwj5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FNfiTQCR5o3ounOlWzm1d" + }, + "href": "https://api.spotify.com/v1/artists/0FNfiTQCR5o3ounOlWzm1d", + "id": "0FNfiTQCR5o3ounOlWzm1d", + "name": "John Glacier", + "type": "artist", + "uri": "spotify:artist:0FNfiTQCR5o3ounOlWzm1d" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1R84VlXnFFULOsWWV8IrCQ" + }, + "href": "https://api.spotify.com/v1/artists/1R84VlXnFFULOsWWV8IrCQ", + "id": "1R84VlXnFFULOsWWV8IrCQ", + "name": "Panda Bear", + "type": "artist", + "uri": "spotify:artist:1R84VlXnFFULOsWWV8IrCQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212339, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2" + }, + "href": "https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2", + "id": "1gRMKwvMvp6LcQVMpMXQg2", + "name": "Dafodil", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1gRMKwvMvp6LcQVMpMXQg2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205638, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto" + }, + "href": "https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto", + "id": "27D9YN3uHPD3PTXvzNtbto", + "name": "Still Summer", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:27D9YN3uHPD3PTXvzNtbto", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UE7nl9mha6s8z0wFQFIZ2" + }, + "href": "https://api.spotify.com/v1/artists/6UE7nl9mha6s8z0wFQFIZ2", + "id": "6UE7nl9mha6s8z0wFQFIZ2", + "name": "Robyn", + "type": "artist", + "uri": "spotify:artist:6UE7nl9mha6s8z0wFQFIZ2" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202648, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ" + }, + "href": "https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ", + "id": "0pMj03SiaZ9bkFlXQWNhtZ", + "name": "Life", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0pMj03SiaZ9bkFlXQWNhtZ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222365, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5" + }, + "href": "https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5", + "id": "7gb0pekqHQYTGo6NWLBvT5", + "name": "The Feeling I Get From You", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7gb0pekqHQYTGo6NWLBvT5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 376918, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6" + }, + "href": "https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6", + "id": "6pOzbdJKEr4hvXkX7VkfY6", + "name": "Breather", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6pOzbdJKEr4hvXkX7VkfY6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" + }, + "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", + "id": "3C8RpaI3Go0yFF9whvKoED", + "name": "The Avalanches", + "type": "artist", + "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 254142, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu" + }, + "href": "https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu", + "id": "3cfgisz6DhZmooQk08P4Eu", + "name": "All You Children", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3cfgisz6DhZmooQk08P4Eu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 71680, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN" + }, + "href": "https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN", + "id": "1wpcJ6TCrKpH6KdBmrp9yN", + "name": "Every Single Weekend - Interlude", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1wpcJ6TCrKpH6KdBmrp9yN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" + }, + "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", + "id": "2Q4FR4Ss0mh6EvbiQBHEOU", + "name": "Oona Doherty", + "type": "artist", + "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 337414, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" + }, + "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", + "id": "08Jhu8OZ6gCIGWQn6vP3uI", + "name": "Falling Together", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M98IZJK2tx6x2YVyHua9K" - }, - "href": "https://api.spotify.com/v1/artists/6M98IZJK2tx6x2YVyHua9K", - "id": "6M98IZJK2tx6x2YVyHua9K", - "name": "Scott Hardkiss", - "type": "artist", - "uri": "spotify:artist:6M98IZJK2tx6x2YVyHua9K" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 314007, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO" - }, - "href": "https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO", - "id": "61pyjiweMDS1h930OgS0XO", - "name": "backseat", - "preview_url": "https://p.scdn.co/mp3-preview/f14667711679c1f2c09e356ed12f1a1fad7464ac?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 20, - "type": "track", - "uri": "spotify:track:61pyjiweMDS1h930OgS0XO", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., © 2024 Fred Gibson", - "type": "C" - }, - { - "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., ℗ 2024 Fred Gibson", - "type": "P" - } - ], - "external_ids": { - "upc": "5021732457110" - }, - "genres": [], - "label": "Atlantic Records UK", - "popularity": 80 - } - }, - { - "added_at": "2024-08-15T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/27ynHS80OjICdw3qLNMgQP" - }, - "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP?locale=en-US%2Cen%3Bq%3D0.5", - "id": "27ynHS80OjICdw3qLNMgQP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f29bc92a6314f290b96ae829", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f29bc92a6314f290b96ae829", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f29bc92a6314f290b96ae829", - "height": 64, - "width": 64 - } - ], - "name": "Paradise State of Mind", - "release_date": "2024-08-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:27ynHS80OjICdw3qLNMgQP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189099, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL" - }, - "href": "https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL", - "id": "6qtGeawfnmQMUWyQ95LdIL", - "name": "See You In The Afterlife", - "preview_url": "https://p.scdn.co/mp3-preview/6007c78f27ac5b546e5f262a81da684a7fbe1374?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:6qtGeawfnmQMUWyQ95LdIL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 259252, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ" - }, - "href": "https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ", - "id": "6r9GzPEdq4bGp507oxt2iZ", - "name": "Lost In Space", - "preview_url": "https://p.scdn.co/mp3-preview/6212cb0f53bedf2a6f62edafd379deb5a7d828b4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:6r9GzPEdq4bGp507oxt2iZ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 153005, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm" - }, - "href": "https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm", - "id": "0CUojUDoPZvjKqPPLHaOTm", - "name": "Take Me Back", - "preview_url": "https://p.scdn.co/mp3-preview/461357125340aedae71f816ddb35d674c299df8d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:0CUojUDoPZvjKqPPLHaOTm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 274446, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj" - }, - "href": "https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj", - "id": "090Vhdep7tK2kXLy2M1vLj", - "name": "Let Go", - "preview_url": "https://p.scdn.co/mp3-preview/8d52831c5c537b952bb44074ba98a060f27e256f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:090Vhdep7tK2kXLy2M1vLj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219300, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ" - }, - "href": "https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ", - "id": "6QHE0tQs8NFE3DGDldP1DJ", - "name": "Feed Me", - "preview_url": "https://p.scdn.co/mp3-preview/374768572c235a7ea2d961546d61dbe769bae5df?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:6QHE0tQs8NFE3DGDldP1DJ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 288544, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n" - }, - "href": "https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n", - "id": "2cIP5wh1Ala2rWVwTOgg4n", - "name": "Paradise State Of Mind", - "preview_url": "https://p.scdn.co/mp3-preview/23ef3829f20e47c331ac3de6d631bbbf339aa9b0?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:2cIP5wh1Ala2rWVwTOgg4n", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 328024, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP" - }, - "href": "https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP", - "id": "5gygubFSFXfLDhoMnpAhzP", - "name": "Glitchzig", - "preview_url": "https://p.scdn.co/mp3-preview/5e39789e35fcae8953b7b20cfc0bcf7de2369df5?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:5gygubFSFXfLDhoMnpAhzP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 253257, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd" - }, - "href": "https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd", - "id": "08vuNWfV1WOndL3yMetfXd", - "name": "The Holy Shangri-La", - "preview_url": "https://p.scdn.co/mp3-preview/4d00628c46c480bea02bf72d80a70ce270e53d29?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:08vuNWfV1WOndL3yMetfXd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183139, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK" - }, - "href": "https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK", - "id": "0wyQNzcMUYFec1B19hu6pK", - "name": "Sometimes I Wanna Be Bad", - "preview_url": "https://p.scdn.co/mp3-preview/f91b47a11d15d4f7f7d72ab8aa10bfb2ff4e97cf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:0wyQNzcMUYFec1B19hu6pK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204111, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS" - }, - "href": "https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS", - "id": "1G2bNCn8x1WrbeIBBvfQZS", - "name": "Chasing Low Vibrations", - "preview_url": "https://p.scdn.co/mp3-preview/4e7645cb77e121f7eb57d2149775eea3b26bbf38?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:1G2bNCn8x1WrbeIBBvfQZS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 264919, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b" - }, - "href": "https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b", - "id": "60BqMpaQjhET1YZhou4t2b", - "name": "A Diamond To Be Born", - "preview_url": "https://p.scdn.co/mp3-preview/b39fc96e0fca4f675be1208a847e70887dab2d62?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:60BqMpaQjhET1YZhou4t2b", - "is_local": false + "copyrights": [ + { "text": "2024 Young", "type": "C" }, + { "text": "2024 Young", "type": "P" } + ], + "external_ids": { "upc": "889030035653" }, + "genres": [], + "label": "Young", + "popularity": 53 } - ] - }, - "copyrights": [ - { - "text": "© 2024 Atlantic Recording Corporation", - "type": "C" - }, - { - "text": "℗ 2024 Atlantic Recording Corporation", - "type": "P" - } - ], - "external_ids": { - "upc": "075679645760" - }, - "genres": [], - "label": "Atlantic Records", - "popularity": 62 - } - }, - { - "added_at": "2024-08-15T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 9, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/33tDS6r9DQBx9LaYUY7wh1" - }, - "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1?locale=en-US%2Cen%3Bq%3D0.5", - "id": "33tDS6r9DQBx9LaYUY7wh1", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273b7132ada01c73861b17c978a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02b7132ada01c73861b17c978a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851b7132ada01c73861b17c978a", - "height": 64, - "width": 64 - } - ], - "name": "Melodramatic", - "release_date": "2024-08-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:33tDS6r9DQBx9LaYUY7wh1", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 9, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 233505, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq" - }, - "href": "https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq", - "id": "0w13ZqgFrKq7BYgsc2EKvq", - "name": "The Phoenix", - "preview_url": "https://p.scdn.co/mp3-preview/187acfb2e4710b821be654900e3017f2272297ee?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0w13ZqgFrKq7BYgsc2EKvq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190296, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85" - }, - "href": "https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85", - "id": "71u2sgaT6I05JY2n6aom85", - "name": "Baby Don't Give Up!", - "preview_url": "https://p.scdn.co/mp3-preview/6350cf5c105f01f2f3dc33b8487c1f9c0a99c148?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:71u2sgaT6I05JY2n6aom85", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157712, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim" - }, - "href": "https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim", - "id": "3QuBIm40rJbw5asM9tGjim", - "name": "As Soon As I Discover", - "preview_url": "https://p.scdn.co/mp3-preview/8ce4d0b93b31a5a70c041ee20fa4512312025582?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:3QuBIm40rJbw5asM9tGjim", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191740, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv" - }, - "href": "https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv", - "id": "1AieqRevDfu4uQlhTIWJbv", - "name": "My Little One", - "preview_url": "https://p.scdn.co/mp3-preview/a3e95095bea84c3f7bf2a7a16566636a3b29d77e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:1AieqRevDfu4uQlhTIWJbv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 218015, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO" - }, - "href": "https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO", - "id": "3MTbJM0UmqrgSr9thX1JwO", - "name": "Love Away", - "preview_url": "https://p.scdn.co/mp3-preview/b4e134bfbe3ea3aec758009fe618db78713637f0?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:3MTbJM0UmqrgSr9thX1JwO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203419, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4" - }, - "href": "https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4", - "id": "5B5l5KuDqLT73R3lgDI7H4", - "name": "Alone In The Darkness", - "preview_url": "https://p.scdn.co/mp3-preview/99078c69d682056ac2607ff5a22216ee632bb7f6?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:5B5l5KuDqLT73R3lgDI7H4", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 180967, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y" - }, - "href": "https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y", - "id": "4tkOZG1F6og5NZW1uD3z7Y", - "name": "My Way", - "preview_url": "https://p.scdn.co/mp3-preview/8c8bf0dace0871ff64bc0112f404d4c4e62a1da8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:4tkOZG1F6og5NZW1uD3z7Y", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178997, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s" - }, - "href": "https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s", - "id": "0CtfbRy4cB2FOEsP5WIZ2s", - "name": "I Promise Myself", - "preview_url": "https://p.scdn.co/mp3-preview/f2bd45f5162f7d1f0709c8cfb4a01270efe7f0ab?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:0CtfbRy4cB2FOEsP5WIZ2s", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201119, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg" - }, - "href": "https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg", - "id": "3FZwYiZufmIgKyfqgMnpPg", - "name": "Post Tour Depression", - "preview_url": "https://p.scdn.co/mp3-preview/4829012352cf2068c67ff52756fb76a7d2132a74?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:3FZwYiZufmIgKyfqgMnpPg", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "(C) 2024 @ SIAMES Records", - "type": "C" - }, - { - "text": "(P) 2024 @ SIAMES Records", - "type": "P" - } - ], - "external_ids": { - "upc": "198588562345" }, - "genres": [], - "label": "SIAMÉS", - "popularity": 45 - } - }, - { - "added_at": "2024-07-12T11:46:14Z", - "album": { - "album_type": "album", - "total_tracks": 17, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0m14dyyJemQy44KVhsKnaj" - }, - "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj?locale=en-US%2Cen%3Bq%3D0.5", - "id": "0m14dyyJemQy44KVhsKnaj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032", - "height": 64, - "width": 64 - } - ], - "name": "PMO: An Atriarchy Experience", - "release_date": "2024-07-11", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0m14dyyJemQy44KVhsKnaj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 17, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" - }, - "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", - "id": "7xplDB5Ftf0oECpcFlKE99", - "name": "Owen CMYK", - "type": "artist", - "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 50572, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG" - }, - "href": "https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG", - "id": "2QVz5Ndv0faqrTNyMbK6HG", - "name": "Sea Shanty", - "preview_url": "https://p.scdn.co/mp3-preview/993199c254a91c04a1af6d5d4ce7cff4acbeb096?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2QVz5Ndv0faqrTNyMbK6HG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0GONM3s2unLmwUiqNneycA" - }, - "href": "https://api.spotify.com/v1/artists/0GONM3s2unLmwUiqNneycA", - "id": "0GONM3s2unLmwUiqNneycA", - "name": "M17", - "type": "artist", - "uri": "spotify:artist:0GONM3s2unLmwUiqNneycA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" - }, - "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", - "id": "6HiHuFsJrutJGZT2GAwG4L", - "name": "itsAZ", - "type": "artist", - "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 164383, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA" - }, - "href": "https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA", - "id": "3yoGnoFkQLZa1rPbhycLgA", - "name": "Castle in the Sky", - "preview_url": "https://p.scdn.co/mp3-preview/d47fc2002c18f159a3b33d4b74af039f5310674f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:3yoGnoFkQLZa1rPbhycLgA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 115000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV" - }, - "href": "https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV", - "id": "11CVrcm1dz0jKNHvFlbkOV", - "name": "Boomer Wonderland", - "preview_url": "https://p.scdn.co/mp3-preview/3eb0809469b06c8009aa943869ac705b0a719705?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:11CVrcm1dz0jKNHvFlbkOV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" - }, - "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", - "id": "2RaLCgWRwHSBJySoMVZi1U", - "name": "JPecs", - "type": "artist", - "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" - }, - "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", - "id": "49X16juWaNmVsSkftsPI9u", - "name": "javid74", - "type": "artist", - "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" - }, - "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", - "id": "6HiHuFsJrutJGZT2GAwG4L", - "name": "itsAZ", - "type": "artist", - "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 114622, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS" - }, - "href": "https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS", - "id": "6nYAajfD6iXhHLTjXFV3NS", - "name": "3rd Place", - "preview_url": "https://p.scdn.co/mp3-preview/c69ccad00ecd56127405f6c8dbb68924de55de00?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:6nYAajfD6iXhHLTjXFV3NS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6CPBjEKtaoONitOOYJEPu9" - }, - "href": "https://api.spotify.com/v1/artists/6CPBjEKtaoONitOOYJEPu9", - "id": "6CPBjEKtaoONitOOYJEPu9", - "name": "the_bardificer", - "type": "artist", - "uri": "spotify:artist:6CPBjEKtaoONitOOYJEPu9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1dxMexw9HIXRJX53LQZUOz" - }, - "href": "https://api.spotify.com/v1/artists/1dxMexw9HIXRJX53LQZUOz", - "id": "1dxMexw9HIXRJX53LQZUOz", - "name": "Ash Artz", - "type": "artist", - "uri": "spotify:artist:1dxMexw9HIXRJX53LQZUOz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/64zUEoPQHdOq7bYmLwZRSi" - }, - "href": "https://api.spotify.com/v1/artists/64zUEoPQHdOq7bYmLwZRSi", - "id": "64zUEoPQHdOq7bYmLwZRSi", - "name": "Luna", - "type": "artist", - "uri": "spotify:artist:64zUEoPQHdOq7bYmLwZRSi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" - }, - "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", - "id": "4PJ8Omgo9ObI7mb9COCfm8", - "name": "Hatmiss", - "type": "artist", - "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 234500, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV" - }, - "href": "https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV", - "id": "5ZnK0HCoBv6fgdc2PMeAsV", - "name": "No Time Left To Lose", - "preview_url": "https://p.scdn.co/mp3-preview/01181f618799edaac16d463a731b9f9c6b8318dd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:5ZnK0HCoBv6fgdc2PMeAsV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" - }, - "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", - "id": "4PJ8Omgo9ObI7mb9COCfm8", - "name": "Hatmiss", - "type": "artist", - "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 36750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9" - }, - "href": "https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9", - "id": "2hyVHjnnm3KUO2a2Qg1eM9", - "name": "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", - "preview_url": "https://p.scdn.co/mp3-preview/3937912d220c4a4345da4b24a745b0efdaf62a01?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:2hyVHjnnm3KUO2a2Qg1eM9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5rqsRqoG9bfilmZqxOOkek" - }, - "href": "https://api.spotify.com/v1/artists/5rqsRqoG9bfilmZqxOOkek", - "id": "5rqsRqoG9bfilmZqxOOkek", - "name": "gRRiever", - "type": "artist", - "uri": "spotify:artist:5rqsRqoG9bfilmZqxOOkek" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" - }, - "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", - "id": "2STTnw4FJjSXRH6bItWl0F", - "name": "StoneEars", - "type": "artist", - "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QqFHkMOC59TL7W5hfOsiU" - }, - "href": "https://api.spotify.com/v1/artists/6QqFHkMOC59TL7W5hfOsiU", - "id": "6QqFHkMOC59TL7W5hfOsiU", - "name": "SofiUH", - "type": "artist", - "uri": "spotify:artist:6QqFHkMOC59TL7W5hfOsiU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 170854, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9" - }, - "href": "https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9", - "id": "593aq2LX6veq1Ft0kHvrS9", - "name": "God Gamer", - "preview_url": "https://p.scdn.co/mp3-preview/258b8fe87d28e16b48dcb480e79d30013401e7a9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:593aq2LX6veq1Ft0kHvrS9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6RmWDtsKktRw2v9FP1SFni" - }, - "href": "https://api.spotify.com/v1/artists/6RmWDtsKktRw2v9FP1SFni", - "id": "6RmWDtsKktRw2v9FP1SFni", - "name": "yubyub", - "type": "artist", - "uri": "spotify:artist:6RmWDtsKktRw2v9FP1SFni" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/190GSW42zDnQc16U5XgULT" - }, - "href": "https://api.spotify.com/v1/artists/190GSW42zDnQc16U5XgULT", - "id": "190GSW42zDnQc16U5XgULT", - "name": "Jo the Forggie", - "type": "artist", - "uri": "spotify:artist:190GSW42zDnQc16U5XgULT" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1uLBqEv467ZgclJBIdWlCc" - }, - "href": "https://api.spotify.com/v1/artists/1uLBqEv467ZgclJBIdWlCc", - "id": "1uLBqEv467ZgclJBIdWlCc", - "name": "fluentsynth", - "type": "artist", - "uri": "spotify:artist:1uLBqEv467ZgclJBIdWlCc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 80000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5" - }, - "href": "https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5", - "id": "5WWShf7Lo5EBnIBGdbmKN5", - "name": "Purple Streamer Battle", - "preview_url": "https://p.scdn.co/mp3-preview/33230bbf4e47c60880c83cb2fa65c56544453577?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:5WWShf7Lo5EBnIBGdbmKN5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2roVEpafIk02cSCDrbhHAe" - }, - "href": "https://api.spotify.com/v1/artists/2roVEpafIk02cSCDrbhHAe", - "id": "2roVEpafIk02cSCDrbhHAe", - "name": "RhysO", - "type": "artist", - "uri": "spotify:artist:2roVEpafIk02cSCDrbhHAe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 99158, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR" - }, - "href": "https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR", - "id": "09WyoZ2RaNeAEcfZHtsXPR", - "name": "Lost at Sea", - "preview_url": "https://p.scdn.co/mp3-preview/9e62ec4e0b157722bc5e9c2de67a45d5713240b0?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:09WyoZ2RaNeAEcfZHtsXPR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" - }, - "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", - "id": "79Mo8yyzVDo0uyeAKimv7W", - "name": "RDCwest", - "type": "artist", - "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 83750, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs" - }, - "href": "https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs", - "id": "4cWh7YO5U0JBCcAU9JUhSs", - "name": "364 Interlude", - "preview_url": "https://p.scdn.co/mp3-preview/a61a5ed5aebf3a8506fe44ef6b73e7a24219b9d2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:4cWh7YO5U0JBCcAU9JUhSs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" - }, - "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", - "id": "78F4dqW3GJqRzy3EDzHfba", - "name": "Alphons", - "type": "artist", - "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2qV9yNZiOt6UlbIYJgM7k2" - }, - "href": "https://api.spotify.com/v1/artists/2qV9yNZiOt6UlbIYJgM7k2", - "id": "2qV9yNZiOt6UlbIYJgM7k2", - "name": "MyDog", - "type": "artist", - "uri": "spotify:artist:2qV9yNZiOt6UlbIYJgM7k2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" - }, - "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", - "id": "2jTOWoCU8yUCNkHN1hzSNm", - "name": "badger", - "type": "artist", - "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 141500, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg" - }, - "href": "https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg", - "id": "5Hypfslm17ws3wZhJCpMYg", - "name": "MyDog Has Depression", - "preview_url": "https://p.scdn.co/mp3-preview/2719d4b2ae564928217d3ccbdb8e57a9c34dbf93?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:5Hypfslm17ws3wZhJCpMYg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3SCpPBu1VKguPSQRuVYrcA" - }, - "href": "https://api.spotify.com/v1/artists/3SCpPBu1VKguPSQRuVYrcA", - "id": "3SCpPBu1VKguPSQRuVYrcA", - "name": "17artisan", - "type": "artist", - "uri": "spotify:artist:3SCpPBu1VKguPSQRuVYrcA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2FljQuuxRfxfoltcyKZcoC" - }, - "href": "https://api.spotify.com/v1/artists/2FljQuuxRfxfoltcyKZcoC", - "id": "2FljQuuxRfxfoltcyKZcoC", - "name": "REESE", - "type": "artist", - "uri": "spotify:artist:2FljQuuxRfxfoltcyKZcoC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 152000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y" - }, - "href": "https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y", - "id": "5xG9nNCZ3Wc2I8dpmrha8y", - "name": "All I Want is Paper Mario", - "preview_url": "https://p.scdn.co/mp3-preview/aabb89924465b732c3951ec20ba526c761ef9c79?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:5xG9nNCZ3Wc2I8dpmrha8y", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" - }, - "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", - "id": "2STTnw4FJjSXRH6bItWl0F", - "name": "StoneEars", - "type": "artist", - "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5rqsRqoG9bfilmZqxOOkek" - }, - "href": "https://api.spotify.com/v1/artists/5rqsRqoG9bfilmZqxOOkek", - "id": "5rqsRqoG9bfilmZqxOOkek", - "name": "gRRiever", - "type": "artist", - "uri": "spotify:artist:5rqsRqoG9bfilmZqxOOkek" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QqFHkMOC59TL7W5hfOsiU" - }, - "href": "https://api.spotify.com/v1/artists/6QqFHkMOC59TL7W5hfOsiU", - "id": "6QqFHkMOC59TL7W5hfOsiU", - "name": "SofiUH", - "type": "artist", - "uri": "spotify:artist:6QqFHkMOC59TL7W5hfOsiU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 146000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv" - }, - "href": "https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv", - "id": "16VDwDiT4YNIVSyJ7RMXsv", - "name": "Confetti Line", - "preview_url": "https://p.scdn.co/mp3-preview/ad9a29b4e0f4e63a0044d4e5f3437bb4984bded5?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:16VDwDiT4YNIVSyJ7RMXsv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6qLmutNfMLFolEujWZGO6p" - }, - "href": "https://api.spotify.com/v1/artists/6qLmutNfMLFolEujWZGO6p", - "id": "6qLmutNfMLFolEujWZGO6p", - "name": "UneasyFlame", - "type": "artist", - "uri": "spotify:artist:6qLmutNfMLFolEujWZGO6p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 141000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v" - }, - "href": "https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v", - "id": "6RG0t1o3B6nuzc5GegyY2v", - "name": "The Wedding Invite", - "preview_url": "https://p.scdn.co/mp3-preview/5093bdb6397ca8740b74e6ec072a62fc6996e4d8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:6RG0t1o3B6nuzc5GegyY2v", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" - }, - "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", - "id": "78F4dqW3GJqRzy3EDzHfba", - "name": "Alphons", - "type": "artist", - "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178285, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6" - }, - "href": "https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6", - "id": "15g1itLc4kYRXjHMY8aao6", - "name": "Only a Legend", - "preview_url": "https://p.scdn.co/mp3-preview/e52e9beeb5501be4f362c9366dbe6ef5e3a1c17a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:15g1itLc4kYRXjHMY8aao6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" - }, - "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", - "id": "7xplDB5Ftf0oECpcFlKE99", - "name": "Owen CMYK", - "type": "artist", - "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" - }, - "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", - "id": "2jTOWoCU8yUCNkHN1hzSNm", - "name": "badger", - "type": "artist", - "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60Y38Hh6PlzEjjpJno5P6p" - }, - "href": "https://api.spotify.com/v1/artists/60Y38Hh6PlzEjjpJno5P6p", - "id": "60Y38Hh6PlzEjjpJno5P6p", - "name": "dropspindle", - "type": "artist", - "uri": "spotify:artist:60Y38Hh6PlzEjjpJno5P6p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6TgYktqPP6KLGoU6KxYq0s" - }, - "href": "https://api.spotify.com/v1/artists/6TgYktqPP6KLGoU6KxYq0s", - "id": "6TgYktqPP6KLGoU6KxYq0s", - "name": "FiN", - "type": "artist", - "uri": "spotify:artist:6TgYktqPP6KLGoU6KxYq0s" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 93666, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe" - }, - "href": "https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe", - "id": "080DOCEfEIqct0qvHwKZRe", - "name": "Paradise Found", - "preview_url": "https://p.scdn.co/mp3-preview/4ccf211fbae5dd2da9ae947e82fbf2262db1c2fd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 16, - "type": "track", - "uri": "spotify:track:080DOCEfEIqct0qvHwKZRe", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0g4gQ5TcCB3HJH6ktWjKYC" - }, - "href": "https://api.spotify.com/v1/artists/0g4gQ5TcCB3HJH6ktWjKYC", - "id": "0g4gQ5TcCB3HJH6ktWjKYC", - "name": "ask the storyteller", - "type": "artist", - "uri": "spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" - }, - "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", - "id": "49X16juWaNmVsSkftsPI9u", - "name": "javid74", - "type": "artist", - "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3ehLuD3NDXoO0lmL8cZxSw" - }, - "href": "https://api.spotify.com/v1/artists/3ehLuD3NDXoO0lmL8cZxSw", - "id": "3ehLuD3NDXoO0lmL8cZxSw", - "name": "MikesHardest", - "type": "artist", - "uri": "spotify:artist:3ehLuD3NDXoO0lmL8cZxSw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" - }, - "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", - "id": "79Mo8yyzVDo0uyeAKimv7W", - "name": "RDCwest", - "type": "artist", - "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4QsvqI4nb9TpdwqOrbZcHQ" - }, - "href": "https://api.spotify.com/v1/artists/4QsvqI4nb9TpdwqOrbZcHQ", - "id": "4QsvqI4nb9TpdwqOrbZcHQ", - "name": "Sio", - "type": "artist", - "uri": "spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + { + "added_at": "2025-10-16T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" - }, - "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", - "id": "6HiHuFsJrutJGZT2GAwG4L", - "name": "itsAZ", - "type": "artist", - "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", + "id": "1jjx7U3tayhJTytJVBj0WY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", + "height": 64, + "width": 64 + } + ], + "name": "Legends", + "release_date": "2025-10-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 294000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0MxqiUhIbMwIEOYTgdNbxb" + }, + "href": "https://api.spotify.com/v1/tracks/0MxqiUhIbMwIEOYTgdNbxb", + "id": "0MxqiUhIbMwIEOYTgdNbxb", + "name": "Templars", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0MxqiUhIbMwIEOYTgdNbxb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 223000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/275EXSVi2oyj4S5SPMo9qx" + }, + "href": "https://api.spotify.com/v1/tracks/275EXSVi2oyj4S5SPMo9qx", + "id": "275EXSVi2oyj4S5SPMo9qx", + "name": "Hordes of Khan", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:275EXSVi2oyj4S5SPMo9qx", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 246000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/34EZIGTN4CqPd2CqAfEIzz" + }, + "href": "https://api.spotify.com/v1/tracks/34EZIGTN4CqPd2CqAfEIzz", + "id": "34EZIGTN4CqPd2CqAfEIzz", + "name": "A Tiger Among Dragons", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:34EZIGTN4CqPd2CqAfEIzz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6WyfybAgLz1EceoumvVSun" + }, + "href": "https://api.spotify.com/v1/tracks/6WyfybAgLz1EceoumvVSun", + "id": "6WyfybAgLz1EceoumvVSun", + "name": "Crossing the Rubicon", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6WyfybAgLz1EceoumvVSun", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255973, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" + }, + "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", + "id": "3CZDkpmq245kzvCe44P2hM", + "name": "I, Emperor", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1t1g8mx2GQLX2UUk5azWAu" + }, + "href": "https://api.spotify.com/v1/tracks/1t1g8mx2GQLX2UUk5azWAu", + "id": "1t1g8mx2GQLX2UUk5azWAu", + "name": "Maid of Steel", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1t1g8mx2GQLX2UUk5azWAu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 284413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/170Q9dEUIPy8imNb9p5DYu" + }, + "href": "https://api.spotify.com/v1/tracks/170Q9dEUIPy8imNb9p5DYu", + "id": "170Q9dEUIPy8imNb9p5DYu", + "name": "Impaler", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:170Q9dEUIPy8imNb9p5DYu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 252000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4upSkMUkdiXaSz3sQKy34W" + }, + "href": "https://api.spotify.com/v1/tracks/4upSkMUkdiXaSz3sQKy34W", + "id": "4upSkMUkdiXaSz3sQKy34W", + "name": "Lightning at the Gates", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4upSkMUkdiXaSz3sQKy34W", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 235000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2mz3lcK6rYGTlNUtkgZm4f" + }, + "href": "https://api.spotify.com/v1/tracks/2mz3lcK6rYGTlNUtkgZm4f", + "id": "2mz3lcK6rYGTlNUtkgZm4f", + "name": "The Duelist", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2mz3lcK6rYGTlNUtkgZm4f", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 339213, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2BCSABdmxlLx0hJwuvcRBj" + }, + "href": "https://api.spotify.com/v1/tracks/2BCSABdmxlLx0hJwuvcRBj", + "id": "2BCSABdmxlLx0hJwuvcRBj", + "name": "The Cycle of Songs", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2BCSABdmxlLx0hJwuvcRBj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7xrNu3NxSQ0zAnB8ZSqUgq" + }, + "href": "https://api.spotify.com/v1/tracks/7xrNu3NxSQ0zAnB8ZSqUgq", + "id": "7xrNu3NxSQ0zAnB8ZSqUgq", + "name": "Till Seger", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7xrNu3NxSQ0zAnB8ZSqUgq", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" - }, - "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", - "id": "2RaLCgWRwHSBJySoMVZi1U", - "name": "JPecs", - "type": "artist", - "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 703910, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55" - }, - "href": "https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55", - "id": "3gTWK8IiRrXjbPGgz6KD55", - "name": "Revelations 5:22", - "preview_url": "https://p.scdn.co/mp3-preview/e175feb04ffa36563dc232f25565dd5f99d202c0?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 17, - "type": "track", - "uri": "spotify:track:3gTWK8IiRrXjbPGgz6KD55", - "is_local": false + "copyrights": [ + { + "text": "2025 Sabaton, under exclusive license to Better Noise Music", + "type": "C" + }, + { + "text": "2025 Sabaton, under exclusive license to Better Noise Music", + "type": "P" + } + ], + "external_ids": { "upc": "846070098604" }, + "genres": [], + "label": "Better Noise Music", + "popularity": 62 } - ] - }, - "copyrights": [ - { - "text": "2024 Atriarchy LLC", - "type": "C" - }, - { - "text": "2024 Atriarchy LLC", - "type": "P" - } - ], - "external_ids": { - "upc": "198669450738" - }, - "genres": [], - "label": "Atriarchy LLC", - "popularity": 28 - } - }, - { - "added_at": "2024-06-06T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0GpklLqjWNrhropGa4XRRD" }, - "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD?locale=en-US%2Cen%3Bq%3D0.5", - "id": "0GpklLqjWNrhropGa4XRRD", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce", - "height": 64, - "width": 64 - } - ], - "name": "Radiosoul", - "release_date": "2024-06-07", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0GpklLqjWNrhropGa4XRRD", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 315327, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5YualyOibWHyram0jfyBsV" - }, - "href": "https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV", - "id": "5YualyOibWHyram0jfyBsV", - "name": "Radiosoul", - "preview_url": "https://p.scdn.co/mp3-preview/86007513cd4fb05bd13ade46b657062db81fbf66?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:5YualyOibWHyram0jfyBsV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202033, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm" - }, - "href": "https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm", - "id": "1eVzbEkjDGzxqeFNNNrgBm", - "name": "Eyes Wide Shut", - "preview_url": "https://p.scdn.co/mp3-preview/f8950a27c58fb1e195ba21f58f664bfd0dd9afdf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:1eVzbEkjDGzxqeFNNNrgBm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206484, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO" - }, - "href": "https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO", - "id": "6Ttp9JrzcpNYG0upW6NKRO", - "name": "This Is Just The Beginning", - "preview_url": "https://p.scdn.co/mp3-preview/662618663dfe82883d896f727dde949833cdddf6?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:6Ttp9JrzcpNYG0upW6NKRO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212302, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL" - }, - "href": "https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL", - "id": "2M7SyIuOuPozGJY1c6xDXL", - "name": "Vultures", - "preview_url": "https://p.scdn.co/mp3-preview/50cfea6b677f33f934e1e7ff6db83d1dd22c2d86?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:2M7SyIuOuPozGJY1c6xDXL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186991, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA" - }, - "href": "https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA", - "id": "6n1VD2aPzgGbZWMvRdgSPA", - "name": "Drag", - "preview_url": "https://p.scdn.co/mp3-preview/3440e8dcbdae2e44ab1c8d41daf6240189a403f6?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:6n1VD2aPzgGbZWMvRdgSPA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211120, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L" - }, - "href": "https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L", - "id": "0eFTxYwpRTxyefxYlBJq6L", - "name": "Hello Lonely", - "preview_url": "https://p.scdn.co/mp3-preview/3c51e7a024c265315af97555d93363e976faf4b5?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:0eFTxYwpRTxyefxYlBJq6L", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + { + "added_at": "2016-12-19T07:45:50Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6TaTItT907XHlVx7axCGeS" + }, + "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS", + "id": "6TaTItT907XHlVx7axCGeS", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c880c3fce14935c405c7503e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c880c3fce14935c405c7503e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c880c3fce14935c405c7503e", + "height": 64, + "width": 64 + } + ], + "name": "Into the Night World", + "release_date": "2016-12-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6TaTItT907XHlVx7axCGeS", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 226855, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" + }, + "href": "https://api.spotify.com/v1/tracks/6z0imbQJzYJyJFbvrHszJk", + "id": "6z0imbQJzYJyJFbvrHszJk", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" + }, + "href": "https://api.spotify.com/v1/tracks/3R18Ec39yVNJxD410sxlq3", + "id": "3R18Ec39yVNJxD410sxlq3", + "type": "track", + "uri": "spotify:track:3R18Ec39yVNJxD410sxlq3" + }, + "name": "My Dragons Will Decimate", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6z0imbQJzYJyJFbvrHszJk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 201248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" + }, + "href": "https://api.spotify.com/v1/tracks/3x1kSnCnLbF2fWZHsZivO5", + "id": "3x1kSnCnLbF2fWZHsZivO5", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" + }, + "href": "https://api.spotify.com/v1/tracks/2HlsjQRZmg8RLagqhWunnJ", + "id": "2HlsjQRZmg8RLagqhWunnJ", + "type": "track", + "uri": "spotify:track:2HlsjQRZmg8RLagqhWunnJ" + }, + "name": "Into the Night World", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3x1kSnCnLbF2fWZHsZivO5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 256806, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" + }, + "href": "https://api.spotify.com/v1/tracks/5GLkchRnw7kp0yqL7kTti2", + "id": "5GLkchRnw7kp0yqL7kTti2", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" + }, + "href": "https://api.spotify.com/v1/tracks/2ZIR7ECno9Cv3BQq7fk7D8", + "id": "2ZIR7ECno9Cv3BQq7fk7D8", + "type": "track", + "uri": "spotify:track:2ZIR7ECno9Cv3BQq7fk7D8" + }, + "name": "Twe27ySeven", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5GLkchRnw7kp0yqL7kTti2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 340771, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" + }, + "href": "https://api.spotify.com/v1/tracks/7LHDs3o9bHYjTJa7srPNUC", + "id": "7LHDs3o9bHYjTJa7srPNUC", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" + }, + "href": "https://api.spotify.com/v1/tracks/29fh1gXRvsGuwvsaIk8xRZ", + "id": "29fh1gXRvsGuwvsaIk8xRZ", + "type": "track", + "uri": "spotify:track:29fh1gXRvsGuwvsaIk8xRZ" + }, + "name": "Remember Me", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7LHDs3o9bHYjTJa7srPNUC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212191, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "href": "https://api.spotify.com/v1/tracks/7LTkzzkE3ddGgyOQI8ukkq", + "id": "7LTkzzkE3ddGgyOQI8ukkq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "href": "https://api.spotify.com/v1/tracks/4HwdUJ6EDyDK8Z0bj9bLfe", + "id": "4HwdUJ6EDyDK8Z0bj9bLfe", + "type": "track", + "uri": "spotify:track:4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "name": "Space Boat", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7LTkzzkE3ddGgyOQI8ukkq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212892, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" + }, + "href": "https://api.spotify.com/v1/tracks/2ZTbF8kWYHilM7GnZ4sgKt", + "id": "2ZTbF8kWYHilM7GnZ4sgKt", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" + }, + "href": "https://api.spotify.com/v1/tracks/1daFtGcKhHSi9Utzl0qgtQ", + "id": "1daFtGcKhHSi9Utzl0qgtQ", + "type": "track", + "uri": "spotify:track:1daFtGcKhHSi9Utzl0qgtQ" + }, + "name": "Stars Had to Die so That You Could Live", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2ZTbF8kWYHilM7GnZ4sgKt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 290405, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" + }, + "href": "https://api.spotify.com/v1/tracks/33Ms7ZnkfyTXzP38gK9FO3", + "id": "33Ms7ZnkfyTXzP38gK9FO3", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" + }, + "href": "https://api.spotify.com/v1/tracks/2oi0tis1xxFafCkJoIEVoO", + "id": "2oi0tis1xxFafCkJoIEVoO", + "type": "track", + "uri": "spotify:track:2oi0tis1xxFafCkJoIEVoO" + }, + "name": "Beast Engine", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:33Ms7ZnkfyTXzP38gK9FO3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 206633, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" + }, + "href": "https://api.spotify.com/v1/tracks/7xmfFvYqN4QyoFmtLZN6Nc", + "id": "7xmfFvYqN4QyoFmtLZN6Nc", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" + }, + "href": "https://api.spotify.com/v1/tracks/1bTyfuHjsBfhMjqVfFcRE2", + "id": "1bTyfuHjsBfhMjqVfFcRE2", + "type": "track", + "uri": "spotify:track:1bTyfuHjsBfhMjqVfFcRE2" + }, + "name": "Dream Sequence", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7xmfFvYqN4QyoFmtLZN6Nc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 158200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" + }, + "href": "https://api.spotify.com/v1/tracks/1zlbUrfRzrdEt6eSO2DKug", + "id": "1zlbUrfRzrdEt6eSO2DKug", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" + }, + "href": "https://api.spotify.com/v1/tracks/2QfXd8NrGbO0XeFoqZEwHu", + "id": "2QfXd8NrGbO0XeFoqZEwHu", + "type": "track", + "uri": "spotify:track:2QfXd8NrGbO0XeFoqZEwHu" + }, + "name": "Sid Metal Legacy", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1zlbUrfRzrdEt6eSO2DKug", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288591, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" + }, + "href": "https://api.spotify.com/v1/tracks/1i8m8MJa894P53JRTlgtom", + "id": "1i8m8MJa894P53JRTlgtom", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" + }, + "href": "https://api.spotify.com/v1/tracks/2MDtkZJVRWiVXwK4t2ASyJ", + "id": "2MDtkZJVRWiVXwK4t2ASyJ", + "type": "track", + "uri": "spotify:track:2MDtkZJVRWiVXwK4t2ASyJ" + }, + "name": "The Last March of the Undead", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1i8m8MJa894P53JRTlgtom", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3yDIp0kaq9EFKe07X1X2rz" - }, - "href": "https://api.spotify.com/v1/artists/3yDIp0kaq9EFKe07X1X2rz", - "id": "3yDIp0kaq9EFKe07X1X2rz", - "name": "Nile Rodgers", - "type": "artist", - "uri": "spotify:artist:3yDIp0kaq9EFKe07X1X2rz" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 160932, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT" - }, - "href": "https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT", - "id": "5I0qy4t38jwAPKsHS2WPnT", - "name": "Just A Dance", - "preview_url": "https://p.scdn.co/mp3-preview/d35576703588a51e0e62730ad13a9e9f104e1793?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:5I0qy4t38jwAPKsHS2WPnT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204074, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S" - }, - "href": "https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S", - "id": "6zJPeOzroQHmIAbhQETa3S", - "name": "Submarine", - "preview_url": "https://p.scdn.co/mp3-preview/3ca1ba6f13fde78b7690d0b4ba9e319c13b4247e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:6zJPeOzroQHmIAbhQETa3S", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207430, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX" - }, - "href": "https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX", - "id": "19ZhBuPyYTzNChzoQslVTX", - "name": "Beckham", - "preview_url": "https://p.scdn.co/mp3-preview/98612107686f395033ebe648a67712a56783cdba?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:19ZhBuPyYTzNChzoQslVTX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157458, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u" - }, - "href": "https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u", - "id": "4wTOzQ92UzEBli1ubpcw3u", - "name": "Switch", - "preview_url": "https://p.scdn.co/mp3-preview/5abbe5c3b34529eced511181aa75497bc4bef6d1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:4wTOzQ92UzEBli1ubpcw3u", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 263354, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t" - }, - "href": "https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t", - "id": "22sc5jdkR8FTgbGWTdOy7t", - "name": "Run To Tomorrow", - "preview_url": "https://p.scdn.co/mp3-preview/24f1ea10f4327c6b524262833e67a331e8176edd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:22sc5jdkR8FTgbGWTdOy7t", - "is_local": false + "copyrights": [ + { "text": "2016 Machinae Supremacy", "type": "C" }, + { "text": "2016 Machinae Supremacy", "type": "P" } + ], + "external_ids": { "upc": "3614972534646" }, + "genres": [], + "label": "Hubnester Records", + "popularity": 23 } - ] - }, - "copyrights": [ - { - "text": "(C) 2024 Chess Club Records under exclusive license to AWAL Recordings", - "type": "C" - }, - { - "text": "(P) 2024 Chess Club Records under exclusive license to AWAL Recordings", - "type": "P" - } - ], - "external_ids": { - "upc": "198391074080" }, - "genres": [], - "label": "Chess Club Records", - "popularity": 42 - } - }, - { - "added_at": "2024-05-30T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 27, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1Sr34Sc0yqB4SlxanOrit0" - }, - "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1Sr34Sc0yqB4SlxanOrit0", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3", - "height": 64, - "width": 64 - } - ], - "name": "The Last Goodbye Tour Live", - "release_date": "2024-05-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1Sr34Sc0yqB4SlxanOrit0", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 27, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186400, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2" - }, - "href": "https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2", - "id": "24ainScgxd2UDayPsLzzm2", - "name": "This Version of You (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/6b7f4369300d1b92ed7ec914ef6a7d81956482ae?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:24ainScgxd2UDayPsLzzm2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189985, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym" - }, - "href": "https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym", - "id": "4gKFQ6sGKfZr44NXw6wjym", - "name": "Behind the Sun (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/952ec0ee479c7099cd891c364e439ad6335e647d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:4gKFQ6sGKfZr44NXw6wjym", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201954, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt" - }, - "href": "https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt", - "id": "2W0IElS3uccgQUXKAwVyAt", - "name": "All We Need (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/33f27029579c0cff4bd9c8e94c280721ae5eec13?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:2W0IElS3uccgQUXKAwVyAt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA" - }, - "href": "https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA", - "id": "4JK3JhyIl1icooy0uq37DA", - "name": "Love Letter (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/6f28c9663c579be1fc7b77f4b0741672cbe6f1dc?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:4JK3JhyIl1icooy0uq37DA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176459, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK" - }, - "href": "https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK", - "id": "1ZVmGzftncwotIcJzkiTQK", - "name": "Say My Name x Late Night (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/44e8012c921d6d9595633f5b958cdb7a20f518c4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:1ZVmGzftncwotIcJzkiTQK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 151384, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs" - }, - "href": "https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs", - "id": "2mOOT12V4TMB9O6p75Hehs", - "name": "In the Rain (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/ae93ad25701c9f20e02a50ef5b5a1c416a98fc20?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:2mOOT12V4TMB9O6p75Hehs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + { + "added_at": "2025-12-11T23:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 34, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1Lhv9Fe2KRk0NW3I14HsVY" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iVhFmG8YCCEHANGeUUS9q" - }, - "href": "https://api.spotify.com/v1/artists/4iVhFmG8YCCEHANGeUUS9q", - "id": "4iVhFmG8YCCEHANGeUUS9q", - "name": "Pretty Lights", - "type": "artist", - "uri": "spotify:artist:4iVhFmG8YCCEHANGeUUS9q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 96053, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv" - }, - "href": "https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv", - "id": "3mqmlOkyeU3hP1rERf6tjv", - "name": "One Day They'll Know (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/19666b5adb4aa9b698c1dfd5ce8442ab71b5762c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:3mqmlOkyeU3hP1rERf6tjv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY", + "id": "1Lhv9Fe2KRk0NW3I14HsVY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e4808df0cc63188f7a1dc2d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e4808df0cc63188f7a1dc2d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e4808df0cc63188f7a1dc2d2", + "height": 64, + "width": 64 + } + ], + "name": "USB", + "release_date": "2025-12-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Lhv9Fe2KRk0NW3I14HsVY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 34, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7whpXJXNCFQ1iJeL4f3Fam" + }, + "href": "https://api.spotify.com/v1/artists/7whpXJXNCFQ1iJeL4f3Fam", + "id": "7whpXJXNCFQ1iJeL4f3Fam", + "name": "Wallfacer", + "type": "artist", + "uri": "spotify:artist:7whpXJXNCFQ1iJeL4f3Fam" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197999, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" + }, + "href": "https://api.spotify.com/v1/tracks/3rTF0gzMSYSmeRkSzTpO7B", + "id": "3rTF0gzMSYSmeRkSzTpO7B", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" + }, + "href": "https://api.spotify.com/v1/tracks/4CwyZAJWFBxV5E7YS9A8Es", + "id": "4CwyZAJWFBxV5E7YS9A8Es", + "type": "track", + "uri": "spotify:track:4CwyZAJWFBxV5E7YS9A8Es" + }, + "name": "I Luv U", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rTF0gzMSYSmeRkSzTpO7B", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5FxsPS1K61fHEVB3FNZw6Y" + }, + "href": "https://api.spotify.com/v1/artists/5FxsPS1K61fHEVB3FNZw6Y", + "id": "5FxsPS1K61fHEVB3FNZw6Y", + "name": "Blanco", + "type": "artist", + "uri": "spotify:artist:5FxsPS1K61fHEVB3FNZw6Y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 292071, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" + }, + "href": "https://api.spotify.com/v1/tracks/1jZ08JOmqiwOuZ1Hr54oQm", + "id": "1jZ08JOmqiwOuZ1Hr54oQm", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" + }, + "href": "https://api.spotify.com/v1/tracks/39sGDx9LdItlrMKBNl1JkL", + "id": "39sGDx9LdItlrMKBNl1JkL", + "type": "track", + "uri": "spotify:track:39sGDx9LdItlrMKBNl1JkL" + }, + "name": "solo", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1jZ08JOmqiwOuZ1Hr54oQm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" + }, + "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", + "id": "6veh5zbFpm31XsPdjBgPER", + "name": "BIA", + "type": "artist", + "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 232727, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" + }, + "href": "https://api.spotify.com/v1/tracks/0dxcj2yS97TlvnNvEHL8cl", + "id": "0dxcj2yS97TlvnNvEHL8cl", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" + }, + "href": "https://api.spotify.com/v1/tracks/6CI1NtFfoijWJZBkVoUrwN", + "id": "6CI1NtFfoijWJZBkVoUrwN", + "type": "track", + "uri": "spotify:track:6CI1NtFfoijWJZBkVoUrwN" + }, + "name": "ICEY..", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0dxcj2yS97TlvnNvEHL8cl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" + }, + "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", + "id": "6veh5zbFpm31XsPdjBgPER", + "name": "BIA", + "type": "artist", + "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 171764, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" + }, + "href": "https://api.spotify.com/v1/tracks/7wfz2GOmuDxKztNfTfXQvu", + "id": "7wfz2GOmuDxKztNfTfXQvu", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" + }, + "href": "https://api.spotify.com/v1/tracks/0aXembK4QS3tJl5qv5sIrA", + "id": "0aXembK4QS3tJl5qv5sIrA", + "type": "track", + "uri": "spotify:track:0aXembK4QS3tJl5qv5sIrA" + }, + "name": "..FEISTY", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7wfz2GOmuDxKztNfTfXQvu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" + }, + "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", + "id": "1GuqTQbuixFHD6eBkFwVcb", + "name": "Sammy Virji", + "type": "artist", + "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QjsZEGqDMbzKvCdfFN5nz" + }, + "href": "https://api.spotify.com/v1/artists/6QjsZEGqDMbzKvCdfFN5nz", + "id": "6QjsZEGqDMbzKvCdfFN5nz", + "name": "Winny", + "type": "artist", + "uri": "spotify:artist:6QjsZEGqDMbzKvCdfFN5nz" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 264666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" + }, + "href": "https://api.spotify.com/v1/tracks/3Kr8iTBk81R5Y2p0tzHzp9", + "id": "3Kr8iTBk81R5Y2p0tzHzp9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" + }, + "href": "https://api.spotify.com/v1/tracks/1UO1PYJ5sltAPNroys7ArW", + "id": "1UO1PYJ5sltAPNroys7ArW", + "type": "track", + "uri": "spotify:track:1UO1PYJ5sltAPNroys7ArW" + }, + "name": "Winny", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3Kr8iTBk81R5Y2p0tzHzp9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6I8TDGeUmmLom8auKPzMdX" + }, + "href": "https://api.spotify.com/v1/artists/6I8TDGeUmmLom8auKPzMdX", + "id": "6I8TDGeUmmLom8auKPzMdX", + "name": "CA7RIEL & Paco Amoroso", + "type": "artist", + "uri": "spotify:artist:6I8TDGeUmmLom8auKPzMdX" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 226222, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" + }, + "href": "https://api.spotify.com/v1/tracks/08BPZBE9E82KpRBBsYFfTQ", + "id": "08BPZBE9E82KpRBBsYFfTQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" + }, + "href": "https://api.spotify.com/v1/tracks/2IwMlR0X3LlF8P4yRdDdiL", + "id": "2IwMlR0X3LlF8P4yRdDdiL", + "type": "track", + "uri": "spotify:track:2IwMlR0X3LlF8P4yRdDdiL" + }, + "name": "Beto\u2019s Horns - fred remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:08BPZBE9E82KpRBBsYFfTQ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" + }, + "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", + "id": "1GuqTQbuixFHD6eBkFwVcb", + "name": "Sammy Virji", + "type": "artist", + "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0kJOr4qkmePXKFVm9OBK0X" + }, + "href": "https://api.spotify.com/v1/artists/0kJOr4qkmePXKFVm9OBK0X", + "id": "0kJOr4qkmePXKFVm9OBK0X", + "name": "Reggie", + "type": "artist", + "uri": "spotify:artist:0kJOr4qkmePXKFVm9OBK0X" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 193846, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" + }, + "href": "https://api.spotify.com/v1/tracks/2lBhjQtKFfpCtTyln9RX3M", + "id": "2lBhjQtKFfpCtTyln9RX3M", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" + }, + "href": "https://api.spotify.com/v1/tracks/26vIeRYFA2Nh56W4jfkjp5", + "id": "26vIeRYFA2Nh56W4jfkjp5", + "type": "track", + "uri": "spotify:track:26vIeRYFA2Nh56W4jfkjp5" + }, + "name": "Talk of the Town", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2lBhjQtKFfpCtTyln9RX3M", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" + }, + "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", + "id": "3an9rnsXKPCAMlZgH4A0n4", + "name": "KETTAMA", + "type": "artist", + "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" + }, + "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", + "id": "5fEdUhbIAf9JlPhlc3swPx", + "name": "Shady Nasty", + "type": "artist", + "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286285, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" + }, + "href": "https://api.spotify.com/v1/tracks/3CdOgv5Bz3kSGb79jHahkJ", + "id": "3CdOgv5Bz3kSGb79jHahkJ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" + }, + "href": "https://api.spotify.com/v1/tracks/2EAPTWaNB2cu4brp2ImU0Y", + "id": "2EAPTWaNB2cu4brp2ImU0Y", + "type": "track", + "uri": "spotify:track:2EAPTWaNB2cu4brp2ImU0Y" + }, + "name": "HARDSTYLE 2", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3CdOgv5Bz3kSGb79jHahkJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2AR42Ur9PcchQDtEdwkv4L" + }, + "href": "https://api.spotify.com/v1/artists/2AR42Ur9PcchQDtEdwkv4L", + "id": "2AR42Ur9PcchQDtEdwkv4L", + "name": "Floating Points", + "type": "artist", + "uri": "spotify:artist:2AR42Ur9PcchQDtEdwkv4L" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 451666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" + }, + "href": "https://api.spotify.com/v1/tracks/1RM4ibzYZYXzCGonhMh5Gc", + "id": "1RM4ibzYZYXzCGonhMh5Gc", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" + }, + "href": "https://api.spotify.com/v1/tracks/5GV52Kgz64yWqm8keYq1E0", + "id": "5GV52Kgz64yWqm8keYq1E0", + "type": "track", + "uri": "spotify:track:5GV52Kgz64yWqm8keYq1E0" + }, + "name": "Ambery", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1RM4ibzYZYXzCGonhMh5Gc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4aEnNH9PuU1HF3TsZTru54" + }, + "href": "https://api.spotify.com/v1/artists/4aEnNH9PuU1HF3TsZTru54", + "id": "4aEnNH9PuU1HF3TsZTru54", + "name": "Caribou", + "type": "artist", + "uri": "spotify:artist:4aEnNH9PuU1HF3TsZTru54" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3uxTvUjeRTQDfrB59A1zWb" + }, + "href": "https://api.spotify.com/v1/artists/3uxTvUjeRTQDfrB59A1zWb", + "id": "3uxTvUjeRTQDfrB59A1zWb", + "name": "Menor Teteu", + "type": "artist", + "uri": "spotify:artist:3uxTvUjeRTQDfrB59A1zWb" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 257435, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" + }, + "href": "https://api.spotify.com/v1/tracks/3CiUl8blqDsFhWxHLsgiJ0", + "id": "3CiUl8blqDsFhWxHLsgiJ0", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" + }, + "href": "https://api.spotify.com/v1/tracks/62wnlWjbSeOsP9EI2rFpf9", + "id": "62wnlWjbSeOsP9EI2rFpf9", + "type": "track", + "uri": "spotify:track:62wnlWjbSeOsP9EI2rFpf9" + }, + "name": "Facilita", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3CiUl8blqDsFhWxHLsgiJ0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" + }, + "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", + "id": "5mnxMXIM6BNhVVTXnBatKa", + "name": "Skin On Skin", + "type": "artist", + "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 341250, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" + }, + "href": "https://api.spotify.com/v1/tracks/4zGwSKGXnfpBNHkavKnyIf", + "id": "4zGwSKGXnfpBNHkavKnyIf", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" + }, + "href": "https://api.spotify.com/v1/tracks/08panpchw721lgwPyM7V2k", + "id": "08panpchw721lgwPyM7V2k", + "type": "track", + "uri": "spotify:track:08panpchw721lgwPyM7V2k" + }, + "name": "the floor - fred remix", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:4zGwSKGXnfpBNHkavKnyIf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7aA592KWirLsnfb5ulGWvU" + }, + "href": "https://api.spotify.com/v1/artists/7aA592KWirLsnfb5ulGWvU", + "id": "7aA592KWirLsnfb5ulGWvU", + "name": "Danny Brown", + "type": "artist", + "uri": "spotify:artist:7aA592KWirLsnfb5ulGWvU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1UJfZU4rQx3bJ3tGypRuAT" + }, + "href": "https://api.spotify.com/v1/artists/1UJfZU4rQx3bJ3tGypRuAT", + "id": "1UJfZU4rQx3bJ3tGypRuAT", + "name": "PARISI", + "type": "artist", + "uri": "spotify:artist:1UJfZU4rQx3bJ3tGypRuAT" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6yJ6QQ3Y5l0s0tn7b0arrO" + }, + "href": "https://api.spotify.com/v1/artists/6yJ6QQ3Y5l0s0tn7b0arrO", + "id": "6yJ6QQ3Y5l0s0tn7b0arrO", + "name": "JPEGMAFIA", + "type": "artist", + "uri": "spotify:artist:6yJ6QQ3Y5l0s0tn7b0arrO" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 206197, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" + }, + "href": "https://api.spotify.com/v1/tracks/2mU0xUC1kamLn20YPKuH3S", + "id": "2mU0xUC1kamLn20YPKuH3S", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" + }, + "href": "https://api.spotify.com/v1/tracks/6T0rO9e3bHTPzvAPqmFspP", + "id": "6T0rO9e3bHTPzvAPqmFspP", + "type": "track", + "uri": "spotify:track:6T0rO9e3bHTPzvAPqmFspP" + }, + "name": "OK OK", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:2mU0xUC1kamLn20YPKuH3S", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" + }, + "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", + "id": "3NqV2DJoAWsjl787bWaHW7", + "name": "Amyl and The Sniffers", + "type": "artist", + "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" + }, + "href": "https://api.spotify.com/v1/tracks/47ESN2iezMvHBKmecjgG11", + "id": "47ESN2iezMvHBKmecjgG11", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" + }, + "href": "https://api.spotify.com/v1/tracks/2yGG7DTvI6mvDLnmUc7J0E", + "id": "2yGG7DTvI6mvDLnmUc7J0E", + "type": "track", + "uri": "spotify:track:2yGG7DTvI6mvDLnmUc7J0E" + }, + "name": "you're a star", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:47ESN2iezMvHBKmecjgG11", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 225897, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" + }, + "href": "https://api.spotify.com/v1/tracks/78igz8PCqqNYLVyhhSh0z5", + "id": "78igz8PCqqNYLVyhhSh0z5", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" + }, + "href": "https://api.spotify.com/v1/tracks/0sIXcKicNfPHDVhmD9riGJ", + "id": "0sIXcKicNfPHDVhmD9riGJ", + "type": "track", + "uri": "spotify:track:0sIXcKicNfPHDVhmD9riGJ" + }, + "name": "Last 1s Left", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:78igz8PCqqNYLVyhhSh0z5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 187411, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" + }, + "href": "https://api.spotify.com/v1/tracks/3JTzfCw32PeAQLjtadHvtM", + "id": "3JTzfCw32PeAQLjtadHvtM", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" + }, + "href": "https://api.spotify.com/v1/tracks/3BQ6oNyOFO4EZyvtx0Ao15", + "id": "3BQ6oNyOFO4EZyvtx0Ao15", + "type": "track", + "uri": "spotify:track:3BQ6oNyOFO4EZyvtx0Ao15" + }, + "name": "Back 2 Back", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:3JTzfCw32PeAQLjtadHvtM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 165857, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" + }, + "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", + "id": "1lbNgoJ5iMrMluCyhI4OQP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" + }, + "href": "https://api.spotify.com/v1/tracks/6GHlbRqY19d9rh8PEh7FzI", + "id": "6GHlbRqY19d9rh8PEh7FzI", + "type": "track", + "uri": "spotify:track:6GHlbRqY19d9rh8PEh7FzI" + }, + "name": "Victory Lap", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" + }, + "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", + "id": "0aIpJqqTLf683ojWREc5lg", + "name": "Joy Orbison", + "type": "artist", + "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" + }, + "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", + "id": "699OTQXzgjhIYAHMy9RyPD", + "name": "Playboi Carti", + "type": "artist", + "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246909, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" + }, + "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", + "id": "7qpZh0yIXeZzXZk3mE6Fj9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" + }, + "href": "https://api.spotify.com/v1/tracks/3ZsfRm1gpZqnd8AoV7wgYt", + "id": "3ZsfRm1gpZqnd8AoV7wgYt", + "type": "track", + "uri": "spotify:track:3ZsfRm1gpZqnd8AoV7wgYt" + }, + "name": "flex fm (freddit)", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" + }, + "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", + "id": "4VsVLz3Uw6d0fdM6gFtLfo", + "name": "MESSIE", + "type": "artist", + "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219310, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" + }, + "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", + "id": "73s1r3Jfn8pqXJv9ahKfNV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" + }, + "href": "https://api.spotify.com/v1/tracks/1ypO22GPllRtSpqOEWbpVV", + "id": "1ypO22GPllRtSpqOEWbpVV", + "type": "track", + "uri": "spotify:track:1ypO22GPllRtSpqOEWbpVV" + }, + "name": "places to be - MESSIE remix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" + }, + "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", + "id": "1fDV6gCETmlkCUugBxq59g", + "name": "Duoteque", + "type": "artist", + "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" + }, + "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", + "id": "2efrqekWSHlvhATD50AG3m", + "name": "Orion Sun", + "type": "artist", + "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 327508, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" + }, + "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", + "id": "2la8LWSxedRoulmz0UHE7o", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" + }, + "href": "https://api.spotify.com/v1/tracks/4hPdnrevUw5PUKMElR09tU", + "id": "4hPdnrevUw5PUKMElR09tU", + "type": "track", + "uri": "spotify:track:4hPdnrevUw5PUKMElR09tU" + }, + "name": "ItsNotREEAALLLLLLLL", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" + }, + "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", + "id": "5zatdvej2AxogC5pbu2msR", + "name": "BERWYN", + "type": "artist", + "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 123607, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" + }, + "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", + "id": "59DFl0vh8FoBmmD43ruznv", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" + }, + "href": "https://api.spotify.com/v1/tracks/3XRhENEXtBIklV861z3ypc", + "id": "3XRhENEXtBIklV861z3ypc", + "type": "track", + "uri": "spotify:track:3XRhENEXtBIklV861z3ypc" + }, + "name": "BerwynGesaffNeighbours", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" + }, + "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", + "id": "01PnN11ovfen6xUOHfNpn3", + "name": "Overmono", + "type": "artist", + "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" + }, + "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", + "id": "2iUMh8RrpUiakMnneanOPj", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" + }, + "href": "https://api.spotify.com/v1/tracks/210lphIRrJCKXgFLxHwGN8", + "id": "210lphIRrJCKXgFLxHwGN8", + "type": "track", + "uri": "spotify:track:210lphIRrJCKXgFLxHwGN8" + }, + "name": "stayinit", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222784, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" + }, + "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", + "id": "2tSP95IyUkPv5Wj83xWh1c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" + }, + "href": "https://api.spotify.com/v1/tracks/6IOTukhTcumU9dtAk1OLLF", + "id": "6IOTukhTcumU9dtAk1OLLF", + "type": "track", + "uri": "spotify:track:6IOTukhTcumU9dtAk1OLLF" + }, + "name": "leavemealone", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319963, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" + }, + "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", + "id": "6EpIDF3GW1dRBujSp4bJxI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" + }, + "href": "https://api.spotify.com/v1/tracks/7ChXvbTy4bFou6VTn0XZKa", + "id": "7ChXvbTy4bFou6VTn0XZKa", + "type": "track", + "uri": "spotify:track:7ChXvbTy4bFou6VTn0XZKa" + }, + "name": "Baby again..", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" + }, + "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", + "id": "07CimrZi5vs9iEao47TNQ4", + "name": "Flowdan", + "type": "artist", + "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 146571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" + }, + "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", + "id": "74fmYjFwt9CqEFAh8ybeBD", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" + }, + "href": "https://api.spotify.com/v1/tracks/0ps1Oq8m38kcAJzd2xOSfO", + "id": "0ps1Oq8m38kcAJzd2xOSfO", + "type": "track", + "uri": "spotify:track:0ps1Oq8m38kcAJzd2xOSfO" + }, + "name": "Rumble", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" + }, + "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", + "id": "1h6Cn3P4NGzXbaXidqURXs", + "name": "Swedish House Mafia", + "type": "artist", + "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" + }, + "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", + "id": "2E6peXBRbjUmGkkR3dUNGe", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" + }, + "href": "https://api.spotify.com/v1/tracks/5V3lOpkER4fddNbVojzdvP", + "id": "5V3lOpkER4fddNbVojzdvP", + "type": "track", + "uri": "spotify:track:5V3lOpkER4fddNbVojzdvP" + }, + "name": "Turn On The Lights again.. (feat. Future)", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 198805, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" + }, + "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", + "id": "3BKkroNdTKfNijLG9oHW7c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" + }, + "href": "https://api.spotify.com/v1/tracks/5dSrUdJ8kivDMePdVQRswg", + "id": "5dSrUdJ8kivDMePdVQRswg", + "type": "track", + "uri": "spotify:track:5dSrUdJ8kivDMePdVQRswg" + }, + "name": "Jungle", + "preview_url": null, + "track_number": 26, + "type": "track", + "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" + }, + "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", + "id": "5RMLpCv3ic2KtGnqJ7eMG4", + "name": "I. JORDAN", + "type": "artist", + "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 385074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" + }, + "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", + "id": "7c0DlxLjlEEK2VKQJIIU1Z", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" + }, + "href": "https://api.spotify.com/v1/tracks/5GokhlwBZGPiPbabpMdj1j", + "id": "5GokhlwBZGPiPbabpMdj1j", + "type": "track", + "uri": "spotify:track:5GokhlwBZGPiPbabpMdj1j" + }, + "name": "Admit It (u dont want 2)", + "preview_url": null, + "track_number": 27, + "type": "track", + "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" + }, + "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", + "id": "1RlBD9ays0WfNHSVzxHiKX", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" + }, + "href": "https://api.spotify.com/v1/tracks/7s8B76ppLplVwdmf7fjfzM", + "id": "7s8B76ppLplVwdmf7fjfzM", + "type": "track", + "uri": "spotify:track:7s8B76ppLplVwdmf7fjfzM" + }, + "name": "Lights Out", + "preview_url": null, + "track_number": 28, + "type": "track", + "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" + }, + "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", + "id": "5mnxMXIM6BNhVVTXnBatKa", + "name": "Skin On Skin", + "type": "artist", + "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 234428, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" + }, + "href": "https://api.spotify.com/v1/tracks/3tqiBJfctALrFQbv1wltlr", + "id": "3tqiBJfctALrFQbv1wltlr", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" + }, + "href": "https://api.spotify.com/v1/tracks/5BFAhacuNNcMz27eWyRloV", + "id": "5BFAhacuNNcMz27eWyRloV", + "type": "track", + "uri": "spotify:track:5BFAhacuNNcMz27eWyRloV" + }, + "name": "the floor - skin on skin remix", + "preview_url": null, + "track_number": 29, + "type": "track", + "uri": "spotify:track:3tqiBJfctALrFQbv1wltlr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" + }, + "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", + "id": "6fxyWrfmjcbj5d12gXeiNV", + "name": "Denzel Curry", + "type": "artist", + "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" + }, + "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", + "id": "4nVa6XlBFlIkF6msW57PHp", + "name": "Hanumankind", + "type": "artist", + "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" + }, + "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", + "id": "3BAgmPNIK5IJl7zMK1wvMA", + "name": "That Mexican OT", + "type": "artist", + "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" + }, + "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", + "id": "6bwkMlweHsBCpI2a0C5nnN", + "name": "D Double E", + "type": "artist", + "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" + }, + "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", + "id": "7xqIp1044Z2vd9v9ZphjLa", + "name": "LYNY", + "type": "artist", + "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 344571, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" + }, + "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", + "id": "3bsAYGy83D6sl1a5otGuUg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" + }, + "href": "https://api.spotify.com/v1/tracks/28dXOti2Sy7YQJP4af9wM3", + "id": "28dXOti2Sy7YQJP4af9wM3", + "type": "track", + "uri": "spotify:track:28dXOti2Sy7YQJP4af9wM3" + }, + "name": "Victory Lap Five", + "preview_url": null, + "track_number": 30, + "type": "track", + "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" + }, + "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", + "id": "6b0TSaLAeLXilOPoId8udE", + "name": "CLIPZ", + "type": "artist", + "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 184827, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" + }, + "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", + "id": "4n4VUdx6tr7MylOySvDhPK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" + }, + "href": "https://api.spotify.com/v1/tracks/4iAtPgGTSl9FXE0f0s2R8z", + "id": "4iAtPgGTSl9FXE0f0s2R8z", + "type": "track", + "uri": "spotify:track:4iAtPgGTSl9FXE0f0s2R8z" + }, + "name": "places to be - CLIPZ remix", + "preview_url": null, + "track_number": 31, + "type": "track", + "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" + }, + "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", + "id": "7BMR0fwtEvzGtK4rNGdoiQ", + "name": "Nia Archives", + "type": "artist", + "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179441, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", + "id": "5u84pGbxFomiV66Uk2kOQK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "href": "https://api.spotify.com/v1/tracks/5X9Kv1YXQwO1fzdm1GjJWZ", + "id": "5X9Kv1YXQwO1fzdm1GjJWZ", + "type": "track", + "uri": "spotify:track:5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "name": "leavemealone - Nia Archives Remix", + "preview_url": null, + "track_number": 32, + "type": "track", + "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" + }, + "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", + "id": "2OaHYHb2XcFPvqL3VsyPzU", + "name": "Rico Nasty", + "type": "artist", + "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 213133, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" + }, + "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", + "id": "3ycgBFWvzxjLtY2YJuQMms", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" + }, + "href": "https://api.spotify.com/v1/tracks/4aw8UIUfhgmnOu7adMwmVx", + "id": "4aw8UIUfhgmnOu7adMwmVx", + "type": "track", + "uri": "spotify:track:4aw8UIUfhgmnOu7adMwmVx" + }, + "name": "Jungle - Rico Nasty Remix", + "preview_url": null, + "track_number": 33, + "type": "track", + "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 375087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" + }, + "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", + "id": "5HZJuJphtUWc6wuTHt50oQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" + }, + "href": "https://api.spotify.com/v1/tracks/0Pzoc1rIyirjuim3Z7wnbz", + "id": "0Pzoc1rIyirjuim3Z7wnbz", + "type": "track", + "uri": "spotify:track:0Pzoc1rIyirjuim3Z7wnbz" + }, + "name": "Lights Out (feat. Fred again..) - HAAi Remix", + "preview_url": null, + "track_number": 34, + "type": "track", + "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6BkSTbIWZrLZZK0sa2GehR" - }, - "href": "https://api.spotify.com/v1/artists/6BkSTbIWZrLZZK0sa2GehR", - "id": "6BkSTbIWZrLZZK0sa2GehR", - "name": "Charlie Houston", - "type": "artist", - "uri": "spotify:artist:6BkSTbIWZrLZZK0sa2GehR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 261978, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo" - }, - "href": "https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo", - "id": "2A0cPJCmtGITjsKAIhzEfo", - "name": "Wide Awake (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/c9392496a7f53d9b9dfae70fef1cb0649a95749a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:2A0cPJCmtGITjsKAIhzEfo", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 214092, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX" - }, - "href": "https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX", - "id": "1a73OJypd6sgDkAwA75NDX", - "name": "Bloom (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/31021aadbcf4d151ceb081589e710e8b131f6985?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:1a73OJypd6sgDkAwA75NDX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268167, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL" - }, - "href": "https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL", - "id": "4tL49ueZxBPJD5Z9pmNCAL", - "name": "Equal x Boy (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/e5629d46c738c194f17f2429fb863f98b0744713?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:4tL49ueZxBPJD5Z9pmNCAL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 116759, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW" - }, - "href": "https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW", - "id": "1ZJiqlxrcILMONjWo9wwaW", - "name": "All My Life (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/08b501f25a4d9f36b10827302a9a2fa1b1ef9b16?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:1ZJiqlxrcILMONjWo9wwaW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "copyrights": [ + { + "text": "An Atlantic Records UK, \u00a9 2025 Warner Music UK Limited", + "type": "C" + }, + { + "text": "An Atlantic Records UK release \u2117 2025 Fred Gibson under exclusive licence to Warner Music UK Limited, with the exception of tracks 14 & 15 \u2117 2025 Epic Records, a division of Sony Music Entertainment UK Ltd under exclusive licence from Big Smoke Ltd/ Fred Gibson /Warner Music UK Limited. Tracks 16 & 18-34 \u2117 2024 Warner Music UK Limited. Track 17 \u2117 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2025 Warner Music UK Limited", + "type": "P" + } + ], + "external_ids": { "upc": "5026854314600" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 67 + } + }, + { + "added_at": "2025-10-23T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3NP4jJcW3R6qO6rbtnH0wn" - }, - "href": "https://api.spotify.com/v1/artists/3NP4jJcW3R6qO6rbtnH0wn", - "id": "3NP4jJcW3R6qO6rbtnH0wn", - "name": "MARO", - "type": "artist", - "uri": "spotify:artist:3NP4jJcW3R6qO6rbtnH0wn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161641, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE" - }, - "href": "https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE", - "id": "59aWxauGOAbQycO8GNK7LE", - "name": "Better Now (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/eca9f1c2ca3dfae932d4b00bc62f783a3c0ace96?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:59aWxauGOAbQycO8GNK7LE", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "height": 64, + "width": 64 + } + ], + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171991, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rgZPrOQn2E3sw90NgI6f6" + }, + "href": "https://api.spotify.com/v1/tracks/3rgZPrOQn2E3sw90NgI6f6", + "id": "3rgZPrOQn2E3sw90NgI6f6", + "name": "I'll Always Be Your Girl", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rgZPrOQn2E3sw90NgI6f6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186435, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2VEIppsUhk7inhi5TB4J0C" + }, + "href": "https://api.spotify.com/v1/tracks/2VEIppsUhk7inhi5TB4J0C", + "id": "2VEIppsUhk7inhi5TB4J0C", + "name": "Jellyfish", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2VEIppsUhk7inhi5TB4J0C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173251, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" + }, + "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", + "id": "4qM72D1GHUQRXwnmLZUcMH", + "name": "Do It Again", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 158680, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2KCEJHfKLqZ90YL4EmE0cM" + }, + "href": "https://api.spotify.com/v1/tracks/2KCEJHfKLqZ90YL4EmE0cM", + "id": "2KCEJHfKLqZ90YL4EmE0cM", + "name": "Kiss The Sky", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2KCEJHfKLqZ90YL4EmE0cM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172889, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" + }, + "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", + "id": "67WAthizRvsLDjgzIZs27h", + "name": "Two Years", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:67WAthizRvsLDjgzIZs27h", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164303, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/72eTbGnzmu9e5FsjSoy57j" + }, + "href": "https://api.spotify.com/v1/tracks/72eTbGnzmu9e5FsjSoy57j", + "id": "72eTbGnzmu9e5FsjSoy57j", + "name": "Hush Baby, Hurry Slowly", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:72eTbGnzmu9e5FsjSoy57j", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198756, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uAkVdp16PTpzx2HFfz96O" + }, + "href": "https://api.spotify.com/v1/tracks/7uAkVdp16PTpzx2HFfz96O", + "id": "7uAkVdp16PTpzx2HFfz96O", + "name": "Fort Knox", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:7uAkVdp16PTpzx2HFfz96O", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161636, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Qb0Oghb0nwsZ7rHV4yi2T" + }, + "href": "https://api.spotify.com/v1/tracks/4Qb0Oghb0nwsZ7rHV4yi2T", + "id": "4Qb0Oghb0nwsZ7rHV4yi2T", + "name": "There\u2019s Always More That I Could Say", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4Qb0Oghb0nwsZ7rHV4yi2T", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261219, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4MvmZRkUIDZMrn6T9ECiFu" + }, + "href": "https://api.spotify.com/v1/tracks/4MvmZRkUIDZMrn6T9ECiFu", + "id": "4MvmZRkUIDZMrn6T9ECiFu", + "name": "Have You Heard This Song Before", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:4MvmZRkUIDZMrn6T9ECiFu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212352, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EdCYJlPARFqoQDBYPFY9A" + }, + "href": "https://api.spotify.com/v1/tracks/4EdCYJlPARFqoQDBYPFY9A", + "id": "4EdCYJlPARFqoQDBYPFY9A", + "name": "Eternal Sunshine", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4EdCYJlPARFqoQDBYPFY9A", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qOzMSukiZoiSjPQw8Zs7s" - }, - "href": "https://api.spotify.com/v1/artists/4qOzMSukiZoiSjPQw8Zs7s", - "id": "4qOzMSukiZoiSjPQw8Zs7s", - "name": "Mansionair", - "type": "artist", - "uri": "spotify:artist:4qOzMSukiZoiSjPQw8Zs7s" + "copyrights": [ + { + "text": "\u00a9 2025 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2025 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602478149894" }, + "genres": [], + "label": "EMI", + "popularity": 44 + } + }, + { + "added_at": "2025-10-09T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37qGqumC22Ibkey11xnvHC" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" - }, - "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", - "id": "5EBlHXi71tDXnFtroEh7Rg", - "name": "Naomi Wild", - "type": "artist", - "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181843, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6" - }, - "href": "https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6", - "id": "7q7B0VRgFKegcxO2Edzbi6", - "name": "Line Of Sight (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/8dffa2d7bc177ba6b751473c17842300166baca9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:7q7B0VRgFKegcxO2Edzbi6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC", + "id": "37qGqumC22Ibkey11xnvHC", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731ab02b6570ef64749f4557a4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021ab02b6570ef64749f4557a4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511ab02b6570ef64749f4557a4", + "height": 64, + "width": 64 + } + ], + "name": "Under The Covers, Vol. IV", + "release_date": "2025-10-10", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:37qGqumC22Ibkey11xnvHC", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215775, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1yKw8iYZgzg15nAbrZORyF" + }, + "href": "https://api.spotify.com/v1/tracks/1yKw8iYZgzg15nAbrZORyF", + "id": "1yKw8iYZgzg15nAbrZORyF", + "name": "The Power of Love", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1yKw8iYZgzg15nAbrZORyF", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226383, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rRo6VIxlhm1ZJaMBfyeTl" + }, + "href": "https://api.spotify.com/v1/tracks/3rRo6VIxlhm1ZJaMBfyeTl", + "id": "3rRo6VIxlhm1ZJaMBfyeTl", + "name": "Just What I Needed", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3rRo6VIxlhm1ZJaMBfyeTl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 289288, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6s1mVSOmPlv3qUOktjshpP" + }, + "href": "https://api.spotify.com/v1/tracks/6s1mVSOmPlv3qUOktjshpP", + "id": "6s1mVSOmPlv3qUOktjshpP", + "name": "Rosanna", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6s1mVSOmPlv3qUOktjshpP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273046, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/336Z6KZ0kXYaNBX0mJoHzy" + }, + "href": "https://api.spotify.com/v1/tracks/336Z6KZ0kXYaNBX0mJoHzy", + "id": "336Z6KZ0kXYaNBX0mJoHzy", + "name": "Don't You (Forget About Me)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:336Z6KZ0kXYaNBX0mJoHzy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226283, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2HjeZ9kKEBN1BOjeAsIrNr" + }, + "href": "https://api.spotify.com/v1/tracks/2HjeZ9kKEBN1BOjeAsIrNr", + "id": "2HjeZ9kKEBN1BOjeAsIrNr", + "name": "Walk the Dinosaur", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:2HjeZ9kKEBN1BOjeAsIrNr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217035, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5wwV3PvcLQO0XSBRlrjKrq" + }, + "href": "https://api.spotify.com/v1/tracks/5wwV3PvcLQO0XSBRlrjKrq", + "id": "5wwV3PvcLQO0XSBRlrjKrq", + "name": "Alone", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5wwV3PvcLQO0XSBRlrjKrq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2YwHAy6qJ9ziRQJA6WaZhy" + }, + "href": "https://api.spotify.com/v1/tracks/2YwHAy6qJ9ziRQJA6WaZhy", + "id": "2YwHAy6qJ9ziRQJA6WaZhy", + "name": "What a Fool Believes", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2YwHAy6qJ9ziRQJA6WaZhy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201082, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7qGkyuUNwlxVhczm70tRpG" + }, + "href": "https://api.spotify.com/v1/tracks/7qGkyuUNwlxVhczm70tRpG", + "id": "7qGkyuUNwlxVhczm70tRpG", + "name": "Invisible Touch", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7qGkyuUNwlxVhczm70tRpG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 278562, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nvpIkMrowN0GyW1RT9wkY" + }, + "href": "https://api.spotify.com/v1/tracks/6nvpIkMrowN0GyW1RT9wkY", + "id": "6nvpIkMrowN0GyW1RT9wkY", + "name": "Can't Fight This Feeling", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6nvpIkMrowN0GyW1RT9wkY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 252937, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3fqnfaOvNzKEO2dHlI7REr" + }, + "href": "https://api.spotify.com/v1/tracks/3fqnfaOvNzKEO2dHlI7REr", + "id": "3fqnfaOvNzKEO2dHlI7REr", + "name": "Life's What You Make It", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3fqnfaOvNzKEO2dHlI7REr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201071, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0P8ZlN0PNMmpoi76mkDYqG" + }, + "href": "https://api.spotify.com/v1/tracks/0P8ZlN0PNMmpoi76mkDYqG", + "id": "0P8ZlN0PNMmpoi76mkDYqG", + "name": "SOS", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0P8ZlN0PNMmpoi76mkDYqG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 286545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6e8wyDGesxbluq8lYLtM5C" + }, + "href": "https://api.spotify.com/v1/tracks/6e8wyDGesxbluq8lYLtM5C", + "id": "6e8wyDGesxbluq8lYLtM5C", + "name": "Hey Jude", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6e8wyDGesxbluq8lYLtM5C", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6b5YOgXIliAozdo49vUCJQ" - }, - "href": "https://api.spotify.com/v1/artists/6b5YOgXIliAozdo49vUCJQ", - "id": "6b5YOgXIliAozdo49vUCJQ", - "name": "Izzy Bizu", - "type": "artist", - "uri": "spotify:artist:6b5YOgXIliAozdo49vUCJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 243413, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV" - }, - "href": "https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV", - "id": "0PD6WTOfk9kBi6THqAaBKV", - "name": "Forgive Me (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/25096c70eae2c3a82cfdc8f1e3f65d63bf35ca5f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:0PD6WTOfk9kBi6THqAaBKV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 105046, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an" - }, - "href": "https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an", - "id": "5r06HL1g9lqxc5CAxBK7an", - "name": "La Ciudad (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/bc8bbebc2d25c73aa318212fb6094890ca42ddc7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:5r06HL1g9lqxc5CAxBK7an", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "copyrights": [ + { "text": "2025 Ninja Sex Party", "type": "C" }, + { "text": "2025 Ninja Sex Party", "type": "P" } + ], + "external_ids": { "upc": "8721253454441" }, + "genres": [], + "label": "Ninja Sex Party", + "popularity": 38 + } + }, + { + "added_at": "2025-09-11T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1rSbjr5U9J9rQ9sE7RxHFl" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2MPHBxznH1fj59jbOWY38u" - }, - "href": "https://api.spotify.com/v1/artists/2MPHBxznH1fj59jbOWY38u", - "id": "2MPHBxznH1fj59jbOWY38u", - "name": "Sudan Archives", - "type": "artist", - "uri": "spotify:artist:2MPHBxznH1fj59jbOWY38u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211440, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt" - }, - "href": "https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt", - "id": "7rwME0L7zpCwQgHcIwzbvt", - "name": "Selfish Soul (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/a085e046397ed1bdf0f8d9df8f763f7ab11b9e71?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 16, - "type": "track", - "uri": "spotify:track:7rwME0L7zpCwQgHcIwzbvt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl", + "id": "1rSbjr5U9J9rQ9sE7RxHFl", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d076abbd008ad3c6d65112eb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d076abbd008ad3c6d65112eb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d076abbd008ad3c6d65112eb", + "height": 64, + "width": 64 + } + ], + "name": "LOVED", + "release_date": "2025-09-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1rSbjr5U9J9rQ9sE7RxHFl", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245904, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7cSLD89y304ZvX4mVhYVfw" + }, + "href": "https://api.spotify.com/v1/tracks/7cSLD89y304ZvX4mVhYVfw", + "id": "7cSLD89y304ZvX4mVhYVfw", + "name": "Tobeloved", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7cSLD89y304ZvX4mVhYVfw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 241608, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6cjALjYTubXSbLRXrnCNgY" + }, + "href": "https://api.spotify.com/v1/tracks/6cjALjYTubXSbLRXrnCNgY", + "id": "6cjALjYTubXSbLRXrnCNgY", + "name": "Ifyoucall", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6cjALjYTubXSbLRXrnCNgY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 276347, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0k6WMNaYENiEhseD7MAi4N" + }, + "href": "https://api.spotify.com/v1/tracks/0k6WMNaYENiEhseD7MAi4N", + "id": "0k6WMNaYENiEhseD7MAi4N", + "name": "Safeandsound", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0k6WMNaYENiEhseD7MAi4N", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197703, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/02KWhwsDjIX8ZXgBgK9kOP" + }, + "href": "https://api.spotify.com/v1/tracks/02KWhwsDjIX8ZXgBgK9kOP", + "id": "02KWhwsDjIX8ZXgBgK9kOP", + "name": "Sorry", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:02KWhwsDjIX8ZXgBgK9kOP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183462, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1eGYO1RzVRdphhWT86DSr9" + }, + "href": "https://api.spotify.com/v1/tracks/1eGYO1RzVRdphhWT86DSr9", + "id": "1eGYO1RzVRdphhWT86DSr9", + "name": "Yougotmefeeling", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1eGYO1RzVRdphhWT86DSr9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221343, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/07HZTpShoHhClfwKDEsvN5" + }, + "href": "https://api.spotify.com/v1/tracks/07HZTpShoHhClfwKDEsvN5", + "id": "07HZTpShoHhClfwKDEsvN5", + "name": "Leaves", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:07HZTpShoHhClfwKDEsvN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 218683, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0B36Bnz5XYl4plV4MpXSAg" + }, + "href": "https://api.spotify.com/v1/tracks/0B36Bnz5XYl4plV4MpXSAg", + "id": "0B36Bnz5XYl4plV4MpXSAg", + "name": "Everybodyelse", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0B36Bnz5XYl4plV4MpXSAg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 271047, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7r4NrHM4w6tJystfMbse4C" + }, + "href": "https://api.spotify.com/v1/tracks/7r4NrHM4w6tJystfMbse4C", + "id": "7r4NrHM4w6tJystfMbse4C", + "name": "Summerinlove", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7r4NrHM4w6tJystfMbse4C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231490, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0NeYhtI2vLqaIpvYRQ7E5Y" + }, + "href": "https://api.spotify.com/v1/tracks/0NeYhtI2vLqaIpvYRQ7E5Y", + "id": "0NeYhtI2vLqaIpvYRQ7E5Y", + "name": "Leaveyourlove", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0NeYhtI2vLqaIpvYRQ7E5Y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171575, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7hiuxAwDEBlEil538YGffi" + }, + "href": "https://api.spotify.com/v1/tracks/7hiuxAwDEBlEil538YGffi", + "id": "7hiuxAwDEBlEil538YGffi", + "name": "Thinkaboutit", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7hiuxAwDEBlEil538YGffi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1Ded9EOaAthYQVOs9MwtCp" + }, + "href": "https://api.spotify.com/v1/tracks/1Ded9EOaAthYQVOs9MwtCp", + "id": "1Ded9EOaAthYQVOs9MwtCp", + "name": "Finallyover", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1Ded9EOaAthYQVOs9MwtCp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 302895, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4LpNkTXEHMktM6cj6DV12i" + }, + "href": "https://api.spotify.com/v1/tracks/4LpNkTXEHMktM6cj6DV12i", + "id": "4LpNkTXEHMktM6cj6DV12i", + "name": "Iwanttobeyourlightagain", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:4LpNkTXEHMktM6cj6DV12i", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" - }, - "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", - "id": "60yfafz0P3gqaUaOUIddae", - "name": "BRONSON", - "type": "artist", - "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194464, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA" - }, - "href": "https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA", - "id": "4UU6fudp68mcPuUFJf1sNA", - "name": "TENSE (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/fccb4fb9f9a15ae02106dcba22b150a33324adbf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 17, - "type": "track", - "uri": "spotify:track:4UU6fudp68mcPuUFJf1sNA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "copyrights": [ + { + "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", + "type": "C" + }, + { + "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", + "type": "P" + } + ], + "external_ids": { "upc": "5056556160120" }, + "genres": [], + "label": "PARCELS MUSIC", + "popularity": 66 + } + }, + { + "added_at": "2025-06-05T11:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 9, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3My0taql4cY6yHpY1bZILJ" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" - }, - "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", - "id": "60yfafz0P3gqaUaOUIddae", - "name": "BRONSON", - "type": "artist", - "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 142423, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs" - }, - "href": "https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs", - "id": "41z8eydTUKN0IL0QZtRcIs", - "name": "KEEP MOVING (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/24bfb37b5aba2e0b498cb15609ddda37737c7abf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 18, - "type": "track", - "uri": "spotify:track:41z8eydTUKN0IL0QZtRcIs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE" - }, - "href": "https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE", - "id": "2hT93dtTBxGOVYQEa3u2pE", - "name": "Sun Models (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/a341b305ff6fef835cd4a1a1d0369f2a171efa70?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 19, - "type": "track", - "uri": "spotify:track:2hT93dtTBxGOVYQEa3u2pE", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 135054, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk" - }, - "href": "https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk", - "id": "69YWB2KVAMtIcjx01y2nAk", - "name": "Hopeful (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/91e8c58f4ad5c78b3a0ff0f2ad188e21c4f18392?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 20, - "type": "track", - "uri": "spotify:track:69YWB2KVAMtIcjx01y2nAk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 275331, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1CxylMSGYankQropBSWDP3" - }, - "href": "https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3", - "id": "1CxylMSGYankQropBSWDP3", - "name": "Across The Room x Falls (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/dbbf7c5d8278c4390fd16f95c1233d6b13f069d2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 21, - "type": "track", - "uri": "spotify:track:1CxylMSGYankQropBSWDP3", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216988, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR" - }, - "href": "https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR", - "id": "6aocvw4IvUE1zmlAavNkcR", - "name": "Loyal (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/b9e9812a6f9436206d29639382bde5012c20babd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 22, - "type": "track", - "uri": "spotify:track:6aocvw4IvUE1zmlAavNkcR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 163770, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF" - }, - "href": "https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF", - "id": "5XWGvqsLKBAj0y47KpHmlF", - "name": "Don't Stop (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/0ea2cebc21b6fadf059df6262d7385064eb1e77c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 23, - "type": "track", - "uri": "spotify:track:5XWGvqsLKBAj0y47KpHmlF", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 45000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec" - }, - "href": "https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec", - "id": "2MA8Ep98eY5wRF28zCE5ec", - "name": "Just A Memory (Interlude) (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/70670b6f6fc84d6a5efffa3c9e62921441ae8a44?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 24, - "type": "track", - "uri": "spotify:track:2MA8Ep98eY5wRF28zCE5ec", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ", + "id": "3My0taql4cY6yHpY1bZILJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c4d3f5ed3a7a2f3e8854e76c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c4d3f5ed3a7a2f3e8854e76c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c4d3f5ed3a7a2f3e8854e76c", + "height": 64, + "width": 64 + } + ], + "name": "Revelation", + "release_date": "2025-06-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3My0taql4cY6yHpY1bZILJ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 9, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 253862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6TCOOuqsger70LEZUXGrFG" + }, + "href": "https://api.spotify.com/v1/tracks/6TCOOuqsger70LEZUXGrFG", + "id": "6TCOOuqsger70LEZUXGrFG", + "name": "Revelation", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6TCOOuqsger70LEZUXGrFG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205611, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Upay8wgPd30hQPjeWXHOC" + }, + "href": "https://api.spotify.com/v1/tracks/0Upay8wgPd30hQPjeWXHOC", + "id": "0Upay8wgPd30hQPjeWXHOC", + "name": "Love Me Alive", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0Upay8wgPd30hQPjeWXHOC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5eX3Laj9b0V3HjkEBwrXmq" + }, + "href": "https://api.spotify.com/v1/tracks/5eX3Laj9b0V3HjkEBwrXmq", + "id": "5eX3Laj9b0V3HjkEBwrXmq", + "name": "Foolish Pleasure", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5eX3Laj9b0V3HjkEBwrXmq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6yE7Ch3CLPFvMl9m9ZqAYK" + }, + "href": "https://api.spotify.com/v1/tracks/6yE7Ch3CLPFvMl9m9ZqAYK", + "id": "6yE7Ch3CLPFvMl9m9ZqAYK", + "name": "The Hero", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6yE7Ch3CLPFvMl9m9ZqAYK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 85001, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1OZ2Fh8I2xKWgQgk9DNi6L" + }, + "href": "https://api.spotify.com/v1/tracks/1OZ2Fh8I2xKWgQgk9DNi6L", + "id": "1OZ2Fh8I2xKWgQgk9DNi6L", + "name": "Keynote", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1OZ2Fh8I2xKWgQgk9DNi6L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198496, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/12txrzwhdCu0DhlEMrKBxw" + }, + "href": "https://api.spotify.com/v1/tracks/12txrzwhdCu0DhlEMrKBxw", + "id": "12txrzwhdCu0DhlEMrKBxw", + "name": "Friday Night", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:12txrzwhdCu0DhlEMrKBxw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189347, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wjxlsdGrze9UxCWngBfHS" + }, + "href": "https://api.spotify.com/v1/tracks/4wjxlsdGrze9UxCWngBfHS", + "id": "4wjxlsdGrze9UxCWngBfHS", + "name": "Dreams", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4wjxlsdGrze9UxCWngBfHS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/60wP1IkIYps6MS3tS6Usl3" + }, + "href": "https://api.spotify.com/v1/tracks/60wP1IkIYps6MS3tS6Usl3", + "id": "60wP1IkIYps6MS3tS6Usl3", + "name": "Thorn", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:60wP1IkIYps6MS3tS6Usl3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181645, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/63GJGxmjnfkBkdqgbH7gE2" + }, + "href": "https://api.spotify.com/v1/tracks/63GJGxmjnfkBkdqgbH7gE2", + "id": "63GJGxmjnfkBkdqgbH7gE2", + "name": "Let My Love Open The Door", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:63GJGxmjnfkBkdqgbH7gE2", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" - }, - "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", - "id": "5EBlHXi71tDXnFtroEh7Rg", - "name": "Naomi Wild", - "type": "artist", - "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229816, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY" - }, - "href": "https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY", - "id": "6v5Gc28XYQu2cDCmahhlBY", - "name": "Higher Ground (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/58616fa9ae4404dc778b7e7ca30db7424c64cb8c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 25, - "type": "track", - "uri": "spotify:track:6v5Gc28XYQu2cDCmahhlBY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 383750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8" - }, - "href": "https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8", - "id": "6nwtUZBvCUzWp8HhhGrDu8", - "name": "A Moment Apart (Live) (ODESZA VIP Remix)", - "preview_url": "https://p.scdn.co/mp3-preview/0ecedea69e215e7fbaf4f0ed02777df48c335ede?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 26, - "type": "track", - "uri": "spotify:track:6nwtUZBvCUzWp8HhhGrDu8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 419555, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ" - }, - "href": "https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ", - "id": "6y6vQOD1k3fBySGpjPmIkJ", - "name": "The Last Goodbye (Live)", - "preview_url": "https://p.scdn.co/mp3-preview/4dee45965b75b9dccd9b1ccb12be6cd92e742236?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 27, - "type": "track", - "uri": "spotify:track:6y6vQOD1k3fBySGpjPmIkJ", - "is_local": false + "copyrights": [ + { "text": "\u00a9 2025 Neon Gold Records", "type": "C" }, + { "text": "\u2117 2025 Neon Gold Records", "type": "P" } + ], + "external_ids": { "upc": "198704340437" }, + "genres": [], + "label": "Neon Gold", + "popularity": 42 } - ] }, - "copyrights": [ - { - "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", - "type": "C" - }, - { - "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", - "type": "P" - } - ], - "external_ids": { - "upc": "5054429193510" - }, - "genres": [], - "label": "Ninja Tune", - "popularity": 58 - } - }, - { - "added_at": "2024-05-30T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 15, - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/6YpuiWNRGcMEumvRbEuOvP" - }, - "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP?locale=en-US%2Cen%3Bq%3D0.5", - "id": "6YpuiWNRGcMEumvRbEuOvP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb", - "height": 64, - "width": 64 - } - ], - "name": "Believe Me Now?", - "release_date": "2024-05-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6YpuiWNRGcMEumvRbEuOvP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 15, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3K9muOlJVKLgH4SIwwZiDe" - }, - "href": "https://api.spotify.com/v1/artists/3K9muOlJVKLgH4SIwwZiDe", - "id": "3K9muOlJVKLgH4SIwwZiDe", - "name": "Self Esteem", - "type": "artist", - "uri": "spotify:artist:3K9muOlJVKLgH4SIwwZiDe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 231684, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" - }, - "href": "https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4", - "id": "0djt8pab0Si1xC7B2ddfF4", - "linked_from": { + { + "added_at": "2025-06-02T10:11:04Z", + "album": { + "album_type": "album", + "total_tracks": 25, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" + "spotify": "https://open.spotify.com/album/78Wcqh7ygPyANYSd8kn5PG" }, - "href": "https://api.spotify.com/v1/tracks/6RtoIjw4BISeXqbju6b64E", - "id": "6RtoIjw4BISeXqbju6b64E", - "type": "track", - "uri": "spotify:track:6RtoIjw4BISeXqbju6b64E" - }, - "name": "True Colours (feat. Self Esteem)", - "preview_url": "https://p.scdn.co/mp3-preview/fef20ff84369c774a998602d7c4777b009ce8aa7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0djt8pab0Si1xC7B2ddfF4", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 197014, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" - }, - "href": "https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp", - "id": "0rX4zPMMpg8IhCKElJp8lp", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" + "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG", + "id": "78Wcqh7ygPyANYSd8kn5PG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a2e2bfe27469ef8067aa4560", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a2e2bfe27469ef8067aa4560", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a2e2bfe27469ef8067aa4560", + "height": 64, + "width": 64 + } + ], + "name": "Bitters\u00fc\u00df (Baller Deluxe)", + "release_date": "2025-05-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:78Wcqh7ygPyANYSd8kn5PG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 25, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4yDBSqz5fHkR1uZBEdMu4C" + }, + "href": "https://api.spotify.com/v1/tracks/4yDBSqz5fHkR1uZBEdMu4C", + "id": "4yDBSqz5fHkR1uZBEdMu4C", + "name": "Parallele Linien", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4yDBSqz5fHkR1uZBEdMu4C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 150521, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3P4p3ihEEV63gnXh1QYbHu" + }, + "href": "https://api.spotify.com/v1/tracks/3P4p3ihEEV63gnXh1QYbHu", + "id": "3P4p3ihEEV63gnXh1QYbHu", + "name": "Psst", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3P4p3ihEEV63gnXh1QYbHu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 174933, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7Dck7yNBesHT3bINWqGuJj" + }, + "href": "https://api.spotify.com/v1/tracks/7Dck7yNBesHT3bINWqGuJj", + "id": "7Dck7yNBesHT3bINWqGuJj", + "name": "Engel in Jeans", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7Dck7yNBesHT3bINWqGuJj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 140526, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wGXOlPZRHL2BxOwHCggFz" + }, + "href": "https://api.spotify.com/v1/tracks/1wGXOlPZRHL2BxOwHCggFz", + "id": "1wGXOlPZRHL2BxOwHCggFz", + "name": "Coco Taxi", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:1wGXOlPZRHL2BxOwHCggFz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 149011, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7cRv3ualjFncyPnjM5hzXw" + }, + "href": "https://api.spotify.com/v1/tracks/7cRv3ualjFncyPnjM5hzXw", + "id": "7cRv3ualjFncyPnjM5hzXw", + "name": "Seifenblasen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7cRv3ualjFncyPnjM5hzXw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141078, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1QhASlLdyCTimVl2b0jQZ1" + }, + "href": "https://api.spotify.com/v1/tracks/1QhASlLdyCTimVl2b0jQZ1", + "id": "1QhASlLdyCTimVl2b0jQZ1", + "name": "Mama", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1QhASlLdyCTimVl2b0jQZ1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 182200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5QSHWxxZRZFTUgwjMl3enO" + }, + "href": "https://api.spotify.com/v1/tracks/5QSHWxxZRZFTUgwjMl3enO", + "id": "5QSHWxxZRZFTUgwjMl3enO", + "name": "Babylon", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5QSHWxxZRZFTUgwjMl3enO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 155876, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/36wvHXuSxjcFFrUYQ7p651" + }, + "href": "https://api.spotify.com/v1/tracks/36wvHXuSxjcFFrUYQ7p651", + "id": "36wvHXuSxjcFFrUYQ7p651", + "name": "Guess What I Like", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:36wvHXuSxjcFFrUYQ7p651", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 151893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uX5nGsuQtviIx5bbGK2c2" + }, + "href": "https://api.spotify.com/v1/tracks/7uX5nGsuQtviIx5bbGK2c2", + "id": "7uX5nGsuQtviIx5bbGK2c2", + "name": "Katana", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7uX5nGsuQtviIx5bbGK2c2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 139800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/265NTGkEQbGThMjjcvhwfS" + }, + "href": "https://api.spotify.com/v1/tracks/265NTGkEQbGThMjjcvhwfS", + "id": "265NTGkEQbGThMjjcvhwfS", + "name": "Mona Lisa", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:265NTGkEQbGThMjjcvhwfS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7a4s38cE2CYh6qAtWWiMcs" + }, + "href": "https://api.spotify.com/v1/tracks/7a4s38cE2CYh6qAtWWiMcs", + "id": "7a4s38cE2CYh6qAtWWiMcs", + "name": "Winnetou", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7a4s38cE2CYh6qAtWWiMcs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 159493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08HAsedFOMxs7NETNXPZ3K" + }, + "href": "https://api.spotify.com/v1/tracks/08HAsedFOMxs7NETNXPZ3K", + "id": "08HAsedFOMxs7NETNXPZ3K", + "name": "Baller", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:08HAsedFOMxs7NETNXPZ3K", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152560, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1xGvgqekFRzNkgAtKsHXu8" + }, + "href": "https://api.spotify.com/v1/tracks/1xGvgqekFRzNkgAtKsHXu8", + "id": "1xGvgqekFRzNkgAtKsHXu8", + "name": "Tan Lines", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:1xGvgqekFRzNkgAtKsHXu8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 136557, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0VYrYHPDPVv0fjdojYEMAc" + }, + "href": "https://api.spotify.com/v1/tracks/0VYrYHPDPVv0fjdojYEMAc", + "id": "0VYrYHPDPVv0fjdojYEMAc", + "name": "K\u00fcsschen", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0VYrYHPDPVv0fjdojYEMAc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171346, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5vn3t4X7Q8rCAa5Lfd07XW" + }, + "href": "https://api.spotify.com/v1/tracks/5vn3t4X7Q8rCAa5Lfd07XW", + "id": "5vn3t4X7Q8rCAa5Lfd07XW", + "name": "Karussell", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:5vn3t4X7Q8rCAa5Lfd07XW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202224, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KyZHk9EM6CXGrKeI26ihf" + }, + "href": "https://api.spotify.com/v1/tracks/4KyZHk9EM6CXGrKeI26ihf", + "id": "4KyZHk9EM6CXGrKeI26ihf", + "name": "Songs gehasst", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:4KyZHk9EM6CXGrKeI26ihf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 175986, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3DTGOe9oWi4NwNNF8jeQt0" + }, + "href": "https://api.spotify.com/v1/tracks/3DTGOe9oWi4NwNNF8jeQt0", + "id": "3DTGOe9oWi4NwNNF8jeQt0", + "name": "Rotk\u00e4ppchen", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3DTGOe9oWi4NwNNF8jeQt0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 144880, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2yhWwMSeUzFJiQcca4mdbh" + }, + "href": "https://api.spotify.com/v1/tracks/2yhWwMSeUzFJiQcca4mdbh", + "id": "2yhWwMSeUzFJiQcca4mdbh", + "name": "Winnetou - Acoustic Version", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:2yhWwMSeUzFJiQcca4mdbh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4IitBXra1xiNAFqYU1YFp8" + }, + "href": "https://api.spotify.com/v1/tracks/4IitBXra1xiNAFqYU1YFp8", + "id": "4IitBXra1xiNAFqYU1YFp8", + "name": "Parallele Linien - Acoustic Version", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:4IitBXra1xiNAFqYU1YFp8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221586, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1slJAXwnqcsjbf3dvSK3ZI" + }, + "href": "https://api.spotify.com/v1/tracks/1slJAXwnqcsjbf3dvSK3ZI", + "id": "1slJAXwnqcsjbf3dvSK3ZI", + "name": "Baller - Acoustic Version", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:1slJAXwnqcsjbf3dvSK3ZI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219560, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5OEn3AZguWzPiz7PaxgfJI" + }, + "href": "https://api.spotify.com/v1/tracks/5OEn3AZguWzPiz7PaxgfJI", + "id": "5OEn3AZguWzPiz7PaxgfJI", + "name": "Baller - Acoustic Hungarian Version", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:5OEn3AZguWzPiz7PaxgfJI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7eXtpvQa9PEF7d2I3PnECW" + }, + "href": "https://api.spotify.com/v1/tracks/7eXtpvQa9PEF7d2I3PnECW", + "id": "7eXtpvQa9PEF7d2I3PnECW", + "name": "Baller - Eurovision Mix", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:7eXtpvQa9PEF7d2I3PnECW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 158933, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Cyi6njkifIohvyFNKZivX" + }, + "href": "https://api.spotify.com/v1/tracks/6Cyi6njkifIohvyFNKZivX", + "id": "6Cyi6njkifIohvyFNKZivX", + "name": "Baller - Karaoke Version", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:6Cyi6njkifIohvyFNKZivX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 175626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Dv67yeONf1kE0qHQim1bR" + }, + "href": "https://api.spotify.com/v1/tracks/0Dv67yeONf1kE0qHQim1bR", + "id": "0Dv67yeONf1kE0qHQim1bR", + "name": "Baller - Abor Remix", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:0Dv67yeONf1kE0qHQim1bR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wxw2CQKTIOSkPFJbTYVzl" + }, + "href": "https://api.spotify.com/v1/artists/5wxw2CQKTIOSkPFJbTYVzl", + "id": "5wxw2CQKTIOSkPFJbTYVzl", + "name": "nowifi", + "type": "artist", + "uri": "spotify:artist:5wxw2CQKTIOSkPFJbTYVzl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 167183, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1v7J9ZAxKqbuLpvMciORtw" + }, + "href": "https://api.spotify.com/v1/tracks/1v7J9ZAxKqbuLpvMciORtw", + "id": "1v7J9ZAxKqbuLpvMciORtw", + "name": "Baller - nowifi Remix", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:1v7J9ZAxKqbuLpvMciORtw", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/6NysRdnw6s1e8v4WfjcdDg", - "id": "6NysRdnw6s1e8v4WfjcdDg", - "type": "track", - "uri": "spotify:track:6NysRdnw6s1e8v4WfjcdDg" - }, - "name": "Darkest Hour", - "preview_url": "https://p.scdn.co/mp3-preview/5b7da1edd2c51bc0c72f228e635aeb64aa56f3cf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:0rX4zPMMpg8IhCKElJp8lp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 175628, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" - }, - "href": "https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP", - "id": "3LcXzMeyG4jy8ERxtzHGgP", - "linked_from": { + "copyrights": [ + { + "text": "(P) 2025 Jive Germany a division of Sony Music Entertainment Germany GmbH", + "type": "P" + } + ], + "external_ids": { "upc": "196872930788" }, + "genres": [], + "label": "Jive", + "popularity": 43 + } + }, + { + "added_at": "2025-04-24T11:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" + "spotify": "https://open.spotify.com/album/4zWfJm5YZnk7ML3mRRi0Xo" }, - "href": "https://api.spotify.com/v1/tracks/0IRZJ6G7fj0bvShvNkSOFR", - "id": "0IRZJ6G7fj0bvShvNkSOFR", - "type": "track", - "uri": "spotify:track:0IRZJ6G7fj0bvShvNkSOFR" - }, - "name": "Outside Of Love", - "preview_url": "https://p.scdn.co/mp3-preview/09cfbb3bca84dd160f3aa1de4557a64835ec7a9d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:3LcXzMeyG4jy8ERxtzHGgP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo", + "id": "4zWfJm5YZnk7ML3mRRi0Xo", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273818831d1d40b4b5a53a70714", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02818831d1d40b4b5a53a70714", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851818831d1d40b4b5a53a70714", + "height": 64, + "width": 64 + } + ], + "name": "Sadgirl", + "release_date": "2025-04-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4zWfJm5YZnk7ML3mRRi0Xo", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173197, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jowQzeDQU4dIAKQg7ahXh" + }, + "href": "https://api.spotify.com/v1/tracks/3jowQzeDQU4dIAKQg7ahXh", + "id": "3jowQzeDQU4dIAKQg7ahXh", + "name": "Vertigo", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3jowQzeDQU4dIAKQg7ahXh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 168837, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5f2nYBpaCRJ7rFUplXbn3g" + }, + "href": "https://api.spotify.com/v1/tracks/5f2nYBpaCRJ7rFUplXbn3g", + "id": "5f2nYBpaCRJ7rFUplXbn3g", + "name": "Sadgirl", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5f2nYBpaCRJ7rFUplXbn3g", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 169015, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7CCwnjE3M1Xe9Jo95my7nh" + }, + "href": "https://api.spotify.com/v1/tracks/7CCwnjE3M1Xe9Jo95my7nh", + "id": "7CCwnjE3M1Xe9Jo95my7nh", + "name": "Jelly Tot", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7CCwnjE3M1Xe9Jo95my7nh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 185240, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3BpnmRfLj1jmc3yGl2VnsU" + }, + "href": "https://api.spotify.com/v1/tracks/3BpnmRfLj1jmc3yGl2VnsU", + "id": "3BpnmRfLj1jmc3yGl2VnsU", + "name": "Hello, Anxiety", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3BpnmRfLj1jmc3yGl2VnsU", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 131641, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5hCKmWQaypyWXpUrkN1V43" + }, + "href": "https://api.spotify.com/v1/tracks/5hCKmWQaypyWXpUrkN1V43", + "id": "5hCKmWQaypyWXpUrkN1V43", + "name": "I Need a Man", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:5hCKmWQaypyWXpUrkN1V43", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 195192, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7aDc1BsrCR6qArZ5opHGSB" + }, + "href": "https://api.spotify.com/v1/tracks/7aDc1BsrCR6qArZ5opHGSB", + "id": "7aDc1BsrCR6qArZ5opHGSB", + "name": "Liar Liar", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7aDc1BsrCR6qArZ5opHGSB", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220948, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1GtFbMSPJV0cr7P7T51tou" + }, + "href": "https://api.spotify.com/v1/tracks/1GtFbMSPJV0cr7P7T51tou", + "id": "1GtFbMSPJV0cr7P7T51tou", + "name": "Kingpin", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1GtFbMSPJV0cr7P7T51tou", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189183, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1YI5taPXjg9yX8DdjTcNxT" + }, + "href": "https://api.spotify.com/v1/tracks/1YI5taPXjg9yX8DdjTcNxT", + "id": "1YI5taPXjg9yX8DdjTcNxT", + "name": "Future Us", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1YI5taPXjg9yX8DdjTcNxT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7gdDCxXKSLh1hFI95rQtfs" + }, + "href": "https://api.spotify.com/v1/tracks/7gdDCxXKSLh1hFI95rQtfs", + "id": "7gdDCxXKSLh1hFI95rQtfs", + "name": "American Dream", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7gdDCxXKSLh1hFI95rQtfs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190568, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GqOX1HgsKNF3tNa7mO1Sa" + }, + "href": "https://api.spotify.com/v1/tracks/6GqOX1HgsKNF3tNa7mO1Sa", + "id": "6GqOX1HgsKNF3tNa7mO1Sa", + "name": "Jean (Two Ships)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6GqOX1HgsKNF3tNa7mO1Sa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197739, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/38TssrSNLgbJXidJ07VtFl" + }, + "href": "https://api.spotify.com/v1/tracks/38TssrSNLgbJXidJ07VtFl", + "id": "38TssrSNLgbJXidJ07VtFl", + "name": "Alright", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:38TssrSNLgbJXidJ07VtFl", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 189087, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" - }, - "href": "https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya", - "id": "3MLsgTj4GNyq6Nost2T5ya", - "linked_from": { + "copyrights": [ + { + "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", + "type": "C" + }, + { + "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", + "type": "P" + } + ], + "external_ids": { "upc": "067003168052" }, + "genres": [], + "label": "Nettwerk Music Group", + "popularity": 24 + } + }, + { + "added_at": "2024-10-17T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" + "spotify": "https://open.spotify.com/album/6mEZu9pcOyIcUSmWTofkaj" }, - "href": "https://api.spotify.com/v1/tracks/3pFe9dLAwfnwKt8gM6mqki", - "id": "3pFe9dLAwfnwKt8gM6mqki", - "type": "track", - "uri": "spotify:track:3pFe9dLAwfnwKt8gM6mqki" - }, - "name": "Never Be Alone (feat. Sonny Fodera)", - "preview_url": "https://p.scdn.co/mp3-preview/f40d2f6e97f24410ec8377678dca80b47f7d0a6b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:3MLsgTj4GNyq6Nost2T5ya", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 148135, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" - }, - "href": "https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a", - "id": "1VjvxoeHjF0DJhsmvLte8a", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" + "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj", + "id": "6mEZu9pcOyIcUSmWTofkaj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273eb7e716f9775588178a8abe5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02eb7e716f9775588178a8abe5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851eb7e716f9775588178a8abe5", + "height": 64, + "width": 64 + } + ], + "name": "3AM (LA LA LA)", + "release_date": "2024-10-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6mEZu9pcOyIcUSmWTofkaj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215221, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1qVq8dBvDdpz6WhZcaGxy5" + }, + "href": "https://api.spotify.com/v1/tracks/1qVq8dBvDdpz6WhZcaGxy5", + "id": "1qVq8dBvDdpz6WhZcaGxy5", + "name": "WHO KNOWS WHAT YOU\u2019LL FIND?", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1qVq8dBvDdpz6WhZcaGxy5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 155343, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4LJOC3L3wmOqX7jxC7DNTb" + }, + "href": "https://api.spotify.com/v1/tracks/4LJOC3L3wmOqX7jxC7DNTb", + "id": "4LJOC3L3wmOqX7jxC7DNTb", + "name": "I CAN\u2019T LOSE YOU", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:4LJOC3L3wmOqX7jxC7DNTb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 224833, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0dIwVz7r4zpaZ3Yw2nU5We" + }, + "href": "https://api.spotify.com/v1/tracks/0dIwVz7r4zpaZ3Yw2nU5We", + "id": "0dIwVz7r4zpaZ3Yw2nU5We", + "name": "CONTROL", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0dIwVz7r4zpaZ3Yw2nU5We", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 195929, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6ZmKtSbuCPrRWhrMltR3Pc" + }, + "href": "https://api.spotify.com/v1/tracks/6ZmKtSbuCPrRWhrMltR3Pc", + "id": "6ZmKtSbuCPrRWhrMltR3Pc", + "name": "SO WHAT", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6ZmKtSbuCPrRWhrMltR3Pc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 213794, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1s4f5ImHiBmm9OzgGRSLw3" + }, + "href": "https://api.spotify.com/v1/tracks/1s4f5ImHiBmm9OzgGRSLw3", + "id": "1s4f5ImHiBmm9OzgGRSLw3", + "name": "BREAKBEAT", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1s4f5ImHiBmm9OzgGRSLw3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 379101, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/07Znaf6hyuAoxiqPXYC58L" + }, + "href": "https://api.spotify.com/v1/tracks/07Znaf6hyuAoxiqPXYC58L", + "id": "07Znaf6hyuAoxiqPXYC58L", + "name": "SICKO", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:07Znaf6hyuAoxiqPXYC58L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0iUw5KL7NRlfKK3tZJNK9b" + }, + "href": "https://api.spotify.com/v1/artists/0iUw5KL7NRlfKK3tZJNK9b", + "id": "0iUw5KL7NRlfKK3tZJNK9b", + "name": "Sweetie Irie", + "type": "artist", + "uri": "spotify:artist:0iUw5KL7NRlfKK3tZJNK9b" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 251537, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3PISUiCZILLzJJSp3c3GhE" + }, + "href": "https://api.spotify.com/v1/tracks/3PISUiCZILLzJJSp3c3GhE", + "id": "3PISUiCZILLzJJSp3c3GhE", + "name": "REAL MOVE TOUCH", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3PISUiCZILLzJJSp3c3GhE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245358, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4qXd31Nk2ifvRNuC1cUwtd" + }, + "href": "https://api.spotify.com/v1/tracks/4qXd31Nk2ifvRNuC1cUwtd", + "id": "4qXd31Nk2ifvRNuC1cUwtd", + "name": "FAR OUT", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4qXd31Nk2ifvRNuC1cUwtd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207619, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3nXYo1X0TzTSOOhumtp1r4" + }, + "href": "https://api.spotify.com/v1/tracks/3nXYo1X0TzTSOOhumtp1r4", + "id": "3nXYo1X0TzTSOOhumtp1r4", + "name": "JANET", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3nXYo1X0TzTSOOhumtp1r4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173731, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4RLg7ZKJU51uhPPxWqS0XT" + }, + "href": "https://api.spotify.com/v1/tracks/4RLg7ZKJU51uhPPxWqS0XT", + "id": "4RLg7ZKJU51uhPPxWqS0XT", + "name": "SO TRU", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4RLg7ZKJU51uhPPxWqS0XT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 274176, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Ghkq3LC0vhyBxaHQgZi7a" + }, + "href": "https://api.spotify.com/v1/tracks/6Ghkq3LC0vhyBxaHQgZi7a", + "id": "6Ghkq3LC0vhyBxaHQgZi7a", + "name": "WRONG IDEA", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:6Ghkq3LC0vhyBxaHQgZi7a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 320432, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0VFQUkXL2wtfAh0W4jSJGM" + }, + "href": "https://api.spotify.com/v1/tracks/0VFQUkXL2wtfAh0W4jSJGM", + "id": "0VFQUkXL2wtfAh0W4jSJGM", + "name": "3AM (LA LA LA)", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:0VFQUkXL2wtfAh0W4jSJGM", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/2MLkPm2w8hHjJbg4jpb5e4", - "id": "2MLkPm2w8hHjJbg4jpb5e4", - "type": "track", - "uri": "spotify:track:2MLkPm2w8hHjJbg4jpb5e4" - }, - "name": "Multiply", - "preview_url": "https://p.scdn.co/mp3-preview/390734d9e94f9f8901ec50e008974a454ec1c8a9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:1VjvxoeHjF0DJhsmvLte8a", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 212421, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" - }, - "href": "https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT", - "id": "5Bnm9QxfBKxc1sNvZanTBT", - "linked_from": { + "copyrights": [ + { + "text": "\u00a9 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602465788211" }, + "genres": [], + "label": "Polydor Records", + "popularity": 40 + } + }, + null, + { + "added_at": "2024-09-05T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 20, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" + "spotify": "https://open.spotify.com/album/3DQueEd1Ft9PHWgovDzPKh" }, - "href": "https://api.spotify.com/v1/tracks/2ZZK8s3J4YFFtuPVPEuBKL", - "id": "2ZZK8s3J4YFFtuPVPEuBKL", - "type": "track", - "uri": "spotify:track:2ZZK8s3J4YFFtuPVPEuBKL" - }, - "name": "Swim", - "preview_url": "https://p.scdn.co/mp3-preview/01a478a74ccbc2872307204fb7dc5aa8c07a5be9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:5Bnm9QxfBKxc1sNvZanTBT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 178352, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" - }, - "href": "https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2", - "id": "2HYvYa9b8lASSBxgupn7H2", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" + "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh", + "id": "3DQueEd1Ft9PHWgovDzPKh", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2739574df129a4a2f4fa4990286", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e029574df129a4a2f4fa4990286", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048519574df129a4a2f4fa4990286", + "height": 64, + "width": 64 + } + ], + "name": "ten days", + "release_date": "2024-09-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3DQueEd1Ft9PHWgovDzPKh", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 30857, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc" + }, + "href": "https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc", + "id": "00nDbqJkHBGUFdim9M0xGc", + "name": ".one", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:00nDbqJkHBGUFdim9M0xGc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6l7R1jntPahGxwJt7Tky8h" + }, + "href": "https://api.spotify.com/v1/artists/6l7R1jntPahGxwJt7Tky8h", + "id": "6l7R1jntPahGxwJt7Tky8h", + "name": "Obongjayar", + "type": "artist", + "uri": "spotify:artist:6l7R1jntPahGxwJt7Tky8h" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220653, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi" + }, + "href": "https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi", + "id": "1rf4SX7dduNbrNnOmupLzi", + "name": "adore u", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1rf4SX7dduNbrNnOmupLzi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 10670, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH" + }, + "href": "https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH", + "id": "0lt9clHEwYyheuC9rik9UH", + "name": ".two", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0lt9clHEwYyheuC9rik9UH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Ja6zFB5d7XRihhfMo6KzY" + }, + "href": "https://api.spotify.com/v1/artists/6Ja6zFB5d7XRihhfMo6KzY", + "id": "6Ja6zFB5d7XRihhfMo6KzY", + "name": "Jozzy", + "type": "artist", + "uri": "spotify:artist:6Ja6zFB5d7XRihhfMo6KzY" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i" + }, + "href": "https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i", + "id": "6twB0uYXJYW9t5GHfYaQ3i", + "name": "ten", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6twB0uYXJYW9t5GHfYaQ3i", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15034, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW" + }, + "href": "https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW", + "id": "6G7TRmzTt9tnrM0QqSVpJW", + "name": ".three", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6G7TRmzTt9tnrM0QqSVpJW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2WoVwexZuODvclzULjPQtm" + }, + "href": "https://api.spotify.com/v1/artists/2WoVwexZuODvclzULjPQtm", + "id": "2WoVwexZuODvclzULjPQtm", + "name": "Sampha", + "type": "artist", + "uri": "spotify:artist:2WoVwexZuODvclzULjPQtm" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214469, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X" + }, + "href": "https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X", + "id": "4IHblO52meh2jwqES1BA7X", + "name": "fear less", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4IHblO52meh2jwqES1BA7X", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 9856, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq" + }, + "href": "https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq", + "id": "1wU9pfdw6ht8HKfxz6wMNq", + "name": ".four", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1wU9pfdw6ht8HKfxz6wMNq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PLsMEk2DCRVlVL2a9aZAv" + }, + "href": "https://api.spotify.com/v1/artists/4PLsMEk2DCRVlVL2a9aZAv", + "id": "4PLsMEk2DCRVlVL2a9aZAv", + "name": "SOAK", + "type": "artist", + "uri": "spotify:artist:4PLsMEk2DCRVlVL2a9aZAv" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 260997, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a" + }, + "href": "https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a", + "id": "2D9a9CXeo3HFtVeaNlzp4a", + "name": "just stand there", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2D9a9CXeo3HFtVeaNlzp4a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15254, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM" + }, + "href": "https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM", + "id": "3vTHKAYJy0hY1OkVv1qLNM", + "name": ".five", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3vTHKAYJy0hY1OkVv1qLNM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226677, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6" + }, + "href": "https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6", + "id": "1qfJ6OvxrspQTmcvdIEoX6", + "name": "places to be", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1qfJ6OvxrspQTmcvdIEoX6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 28836, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG" + }, + "href": "https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG", + "id": "13H2XgH3k8SEptaoD5qeLG", + "name": ".six", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:13H2XgH3k8SEptaoD5qeLG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/59MDSNIYoOY0WRYuodzJPD" + }, + "href": "https://api.spotify.com/v1/artists/59MDSNIYoOY0WRYuodzJPD", + "id": "59MDSNIYoOY0WRYuodzJPD", + "name": "Duskus", + "type": "artist", + "uri": "spotify:artist:59MDSNIYoOY0WRYuodzJPD" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" + }, + "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", + "id": "3pK4EcflBpG1Kpmjk5LK2R", + "name": "Joy Anonymous", + "type": "artist", + "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 453068, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc" + }, + "href": "https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc", + "id": "3i9QKRl5Ql3pgUfNdYBVTc", + "name": "glow", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3i9QKRl5Ql3pgUfNdYBVTc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 31749, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW" + }, + "href": "https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW", + "id": "2OLH9ukOFDVBMuVUuy2sFW", + "name": ".seven", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:2OLH9ukOFDVBMuVUuy2sFW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220656, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW" + }, + "href": "https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW", + "id": "3DzWFxyzsAVblVNndiU9CW", + "name": "i saw you", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3DzWFxyzsAVblVNndiU9CW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15037, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA" + }, + "href": "https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA", + "id": "1aTcAf7K1ym8lBcuu8nmJA", + "name": ".eight", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:1aTcAf7K1ym8lBcuu8nmJA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5s6TJEuHTr9GR894wc6VfP" + }, + "href": "https://api.spotify.com/v1/artists/5s6TJEuHTr9GR894wc6VfP", + "id": "5s6TJEuHTr9GR894wc6VfP", + "name": "Emmylou Harris", + "type": "artist", + "uri": "spotify:artist:5s6TJEuHTr9GR894wc6VfP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200737, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X" + }, + "href": "https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X", + "id": "4S05mkyTtAiWy5l4umch0X", + "name": "where will i be", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:4S05mkyTtAiWy5l4umch0X", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 19060, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN" + }, + "href": "https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN", + "id": "5aNwAqN5Gk5oZIwW5KfhXN", + "name": ".nine", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:5aNwAqN5Gk5oZIwW5KfhXN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" + }, + "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", + "id": "3pK4EcflBpG1Kpmjk5LK2R", + "name": "Joy Anonymous", + "type": "artist", + "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 344068, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv" + }, + "href": "https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv", + "id": "4A8tKYA7gwZzQ4jVwIv1sv", + "name": "peace u need", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:4A8tKYA7gwZzQ4jVwIv1sv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 29540, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor" + }, + "href": "https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor", + "id": "2feEZkLf7dZUueeVBNsdor", + "name": ".ten", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2feEZkLf7dZUueeVBNsdor", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3IunaFjvNKj98JW89JYv9u" + }, + "href": "https://api.spotify.com/v1/artists/3IunaFjvNKj98JW89JYv9u", + "id": "3IunaFjvNKj98JW89JYv9u", + "name": "The Japanese House", + "type": "artist", + "uri": "spotify:artist:3IunaFjvNKj98JW89JYv9u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6M98IZJK2tx6x2YVyHua9K" + }, + "href": "https://api.spotify.com/v1/artists/6M98IZJK2tx6x2YVyHua9K", + "id": "6M98IZJK2tx6x2YVyHua9K", + "name": "Scott Hardkiss", + "type": "artist", + "uri": "spotify:artist:6M98IZJK2tx6x2YVyHua9K" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 314007, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO" + }, + "href": "https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO", + "id": "61pyjiweMDS1h930OgS0XO", + "name": "backseat", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:61pyjiweMDS1h930OgS0XO", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/0Gy9xulTAI3wQ7S2f4Fyg6", - "id": "0Gy9xulTAI3wQ7S2f4Fyg6", - "type": "track", - "uri": "spotify:track:0Gy9xulTAI3wQ7S2f4Fyg6" - }, - "name": "Man Of My Dreams", - "preview_url": "https://p.scdn.co/mp3-preview/39f1083b70629b94825ab327d76aadbb34df0e2c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:2HYvYa9b8lASSBxgupn7H2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 176661, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" - }, - "href": "https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9", - "id": "6yCLuQMWVBBfgwqLaTtks9", - "linked_from": { + "copyrights": [ + { + "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u00a9 2024 Fred Gibson", + "type": "C" + }, + { + "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u2117 2024 Fred Gibson", + "type": "P" + } + ], + "external_ids": { "upc": "5021732457110" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 65 + } + }, + { + "added_at": "2024-08-15T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" + "spotify": "https://open.spotify.com/album/27ynHS80OjICdw3qLNMgQP" }, - "href": "https://api.spotify.com/v1/tracks/6rjezxiUUnvLoCxY3Tn0cP", - "id": "6rjezxiUUnvLoCxY3Tn0cP", - "type": "track", - "uri": "spotify:track:6rjezxiUUnvLoCxY3Tn0cP" - }, - "name": "Linger", - "preview_url": "https://p.scdn.co/mp3-preview/1c30a7f2128857499bed774293c1029875d111cd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:6yCLuQMWVBBfgwqLaTtks9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 230657, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" - }, - "href": "https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R", - "id": "6HHONxXw6BXNg2YSELJn1R", - "linked_from": { + "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP", + "id": "27ynHS80OjICdw3qLNMgQP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f6e25db6bc1a1f9e5fb3accd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f6e25db6bc1a1f9e5fb3accd", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f6e25db6bc1a1f9e5fb3accd", + "height": 64, + "width": 64 + } + ], + "name": "Paradise State of Mind", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:27ynHS80OjICdw3qLNMgQP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189099, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL" + }, + "href": "https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL", + "id": "6qtGeawfnmQMUWyQ95LdIL", + "name": "See You In The Afterlife", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6qtGeawfnmQMUWyQ95LdIL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 259252, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ" + }, + "href": "https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ", + "id": "6r9GzPEdq4bGp507oxt2iZ", + "name": "Lost In Space", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6r9GzPEdq4bGp507oxt2iZ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 153005, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm" + }, + "href": "https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm", + "id": "0CUojUDoPZvjKqPPLHaOTm", + "name": "Take Me Back", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0CUojUDoPZvjKqPPLHaOTm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 274446, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj" + }, + "href": "https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj", + "id": "090Vhdep7tK2kXLy2M1vLj", + "name": "Let Go", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:090Vhdep7tK2kXLy2M1vLj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219300, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ" + }, + "href": "https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ", + "id": "6QHE0tQs8NFE3DGDldP1DJ", + "name": "Feed Me", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6QHE0tQs8NFE3DGDldP1DJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 288544, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n" + }, + "href": "https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n", + "id": "2cIP5wh1Ala2rWVwTOgg4n", + "name": "Paradise State Of Mind", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2cIP5wh1Ala2rWVwTOgg4n", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 328024, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP" + }, + "href": "https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP", + "id": "5gygubFSFXfLDhoMnpAhzP", + "name": "Glitchzig", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5gygubFSFXfLDhoMnpAhzP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 253257, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd" + }, + "href": "https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd", + "id": "08vuNWfV1WOndL3yMetfXd", + "name": "The Holy Shangri-La", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:08vuNWfV1WOndL3yMetfXd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183139, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK" + }, + "href": "https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK", + "id": "0wyQNzcMUYFec1B19hu6pK", + "name": "Sometimes I Wanna Be Bad", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0wyQNzcMUYFec1B19hu6pK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 204111, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS" + }, + "href": "https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS", + "id": "1G2bNCn8x1WrbeIBBvfQZS", + "name": "Chasing Low Vibrations", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1G2bNCn8x1WrbeIBBvfQZS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 264919, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b" + }, + "href": "https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b", + "id": "60BqMpaQjhET1YZhou4t2b", + "name": "A Diamond To Be Born", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:60BqMpaQjhET1YZhou4t2b", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2024 Atlantic Recording Corporation", + "type": "C" + }, + { + "text": "\u2117 2024 Atlantic Recording Corporation", + "type": "P" + } + ], + "external_ids": { "upc": "075679645760" }, + "genres": [], + "label": "Atlantic Records", + "popularity": 46 + } + }, + { + "added_at": "2024-08-15T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 9, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" + "spotify": "https://open.spotify.com/album/33tDS6r9DQBx9LaYUY7wh1" }, - "href": "https://api.spotify.com/v1/tracks/7pxYzLcArC8gnj67ebv4yh", - "id": "7pxYzLcArC8gnj67ebv4yh", - "type": "track", - "uri": "spotify:track:7pxYzLcArC8gnj67ebv4yh" - }, - "name": "Lonely Again", - "preview_url": "https://p.scdn.co/mp3-preview/f8efa326274aa2d368287bdbb9f3c5793d205554?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:6HHONxXw6BXNg2YSELJn1R", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1", + "id": "33tDS6r9DQBx9LaYUY7wh1", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27314f8dd0b16b636ea4bfa119e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0214f8dd0b16b636ea4bfa119e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485114f8dd0b16b636ea4bfa119e", + "height": 64, + "width": 64 + } + ], + "name": "Melodramatic", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:33tDS6r9DQBx9LaYUY7wh1", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 9, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 233505, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq" + }, + "href": "https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq", + "id": "0w13ZqgFrKq7BYgsc2EKvq", + "name": "The Phoenix", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0w13ZqgFrKq7BYgsc2EKvq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190296, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85" + }, + "href": "https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85", + "id": "71u2sgaT6I05JY2n6aom85", + "name": "Baby Don't Give Up!", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71u2sgaT6I05JY2n6aom85", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 157712, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim" + }, + "href": "https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim", + "id": "3QuBIm40rJbw5asM9tGjim", + "name": "As Soon As I Discover", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3QuBIm40rJbw5asM9tGjim", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191740, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv" + }, + "href": "https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv", + "id": "1AieqRevDfu4uQlhTIWJbv", + "name": "My Little One", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:1AieqRevDfu4uQlhTIWJbv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 218015, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO" + }, + "href": "https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO", + "id": "3MTbJM0UmqrgSr9thX1JwO", + "name": "Love Away", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3MTbJM0UmqrgSr9thX1JwO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203419, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4" + }, + "href": "https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4", + "id": "5B5l5KuDqLT73R3lgDI7H4", + "name": "Alone In The Darkness", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5B5l5KuDqLT73R3lgDI7H4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180967, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y" + }, + "href": "https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y", + "id": "4tkOZG1F6og5NZW1uD3z7Y", + "name": "My Way", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4tkOZG1F6og5NZW1uD3z7Y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178997, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s" + }, + "href": "https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s", + "id": "0CtfbRy4cB2FOEsP5WIZ2s", + "name": "I Promise Myself", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:0CtfbRy4cB2FOEsP5WIZ2s", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201119, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg" + }, + "href": "https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg", + "id": "3FZwYiZufmIgKyfqgMnpPg", + "name": "Post Tour Depression", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3FZwYiZufmIgKyfqgMnpPg", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26OmQHradZrF0CS7DrgWDH" - }, - "href": "https://api.spotify.com/v1/artists/26OmQHradZrF0CS7DrgWDH", - "id": "26OmQHradZrF0CS7DrgWDH", - "name": "Lewis Thompson", - "type": "artist", - "uri": "spotify:artist:26OmQHradZrF0CS7DrgWDH" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 153742, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" - }, - "href": "https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn", - "id": "2aAksX61WFBUxWayOhEDJn", - "linked_from": { + "copyrights": [ + { "text": "(C) 2024 @ SIAMES Records", "type": "C" }, + { "text": "(P) 2024 @ SIAMES Records", "type": "P" } + ], + "external_ids": { "upc": "198588562345" }, + "genres": [], + "label": "SIAM\u00c9S", + "popularity": 37 + } + }, + { + "added_at": "2024-07-12T11:46:14Z", + "album": { + "album_type": "album", + "total_tracks": 17, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" + "spotify": "https://open.spotify.com/album/0m14dyyJemQy44KVhsKnaj" }, - "href": "https://api.spotify.com/v1/tracks/2l3WaRRp8nKatWZDVysMUR", - "id": "2l3WaRRp8nKatWZDVysMUR", - "type": "track", - "uri": "spotify:track:2l3WaRRp8nKatWZDVysMUR" - }, - "name": "Side Effects", - "preview_url": "https://p.scdn.co/mp3-preview/3675c3ca8fee542534d8f12d70cf8736c069211e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:2aAksX61WFBUxWayOhEDJn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 156248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" - }, - "href": "https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY", - "id": "3m9uxUtp0P8dF3U0Uny0uY", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" + "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj", + "id": "0m14dyyJemQy44KVhsKnaj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032", + "height": 64, + "width": 64 + } + ], + "name": "PMO: An Atriarchy Experience", + "release_date": "2024-07-11", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0m14dyyJemQy44KVhsKnaj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 17, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" + }, + "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", + "id": "7xplDB5Ftf0oECpcFlKE99", + "name": "Owen CMYK", + "type": "artist", + "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 50572, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG" + }, + "href": "https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG", + "id": "2QVz5Ndv0faqrTNyMbK6HG", + "name": "Sea Shanty", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2QVz5Ndv0faqrTNyMbK6HG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0GONM3s2unLmwUiqNneycA" + }, + "href": "https://api.spotify.com/v1/artists/0GONM3s2unLmwUiqNneycA", + "id": "0GONM3s2unLmwUiqNneycA", + "name": "M17", + "type": "artist", + "uri": "spotify:artist:0GONM3s2unLmwUiqNneycA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" + }, + "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", + "id": "3iRbwOUFx2CWZ4BRQcnP2I", + "name": "Beautiful Panda", + "type": "artist", + "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" + }, + "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", + "id": "6HiHuFsJrutJGZT2GAwG4L", + "name": "itsAZ", + "type": "artist", + "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164383, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA" + }, + "href": "https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA", + "id": "3yoGnoFkQLZa1rPbhycLgA", + "name": "Castle in the Sky", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3yoGnoFkQLZa1rPbhycLgA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 115000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV" + }, + "href": "https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV", + "id": "11CVrcm1dz0jKNHvFlbkOV", + "name": "Boomer Wonderland", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:11CVrcm1dz0jKNHvFlbkOV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" + }, + "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", + "id": "2RaLCgWRwHSBJySoMVZi1U", + "name": "JPecs", + "type": "artist", + "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" + }, + "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", + "id": "49X16juWaNmVsSkftsPI9u", + "name": "javid74", + "type": "artist", + "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 114622, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS" + }, + "href": "https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS", + "id": "6nYAajfD6iXhHLTjXFV3NS", + "name": "3rd Place", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6nYAajfD6iXhHLTjXFV3NS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6CPBjEKtaoONitOOYJEPu9" + }, + "href": "https://api.spotify.com/v1/artists/6CPBjEKtaoONitOOYJEPu9", + "id": "6CPBjEKtaoONitOOYJEPu9", + "name": "the_bardificer", + "type": "artist", + "uri": "spotify:artist:6CPBjEKtaoONitOOYJEPu9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1dxMexw9HIXRJX53LQZUOz" + }, + "href": "https://api.spotify.com/v1/artists/1dxMexw9HIXRJX53LQZUOz", + "id": "1dxMexw9HIXRJX53LQZUOz", + "name": "Ash Artz", + "type": "artist", + "uri": "spotify:artist:1dxMexw9HIXRJX53LQZUOz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/64zUEoPQHdOq7bYmLwZRSi" + }, + "href": "https://api.spotify.com/v1/artists/64zUEoPQHdOq7bYmLwZRSi", + "id": "64zUEoPQHdOq7bYmLwZRSi", + "name": "Luna", + "type": "artist", + "uri": "spotify:artist:64zUEoPQHdOq7bYmLwZRSi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" + }, + "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", + "id": "4PJ8Omgo9ObI7mb9COCfm8", + "name": "Hatmiss", + "type": "artist", + "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 234500, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV" + }, + "href": "https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV", + "id": "5ZnK0HCoBv6fgdc2PMeAsV", + "name": "No Time Left To Lose", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:5ZnK0HCoBv6fgdc2PMeAsV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" + }, + "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", + "id": "3iRbwOUFx2CWZ4BRQcnP2I", + "name": "Beautiful Panda", + "type": "artist", + "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" + }, + "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", + "id": "4PJ8Omgo9ObI7mb9COCfm8", + "name": "Hatmiss", + "type": "artist", + "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 36750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9" + }, + "href": "https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9", + "id": "2hyVHjnnm3KUO2a2Qg1eM9", + "name": "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2hyVHjnnm3KUO2a2Qg1eM9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" + }, + "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", + "id": "51Jlz1EF1XPFtEYuk642cM", + "name": "gRRiever", + "type": "artist", + "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" + }, + "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", + "id": "2STTnw4FJjSXRH6bItWl0F", + "name": "StoneEars", + "type": "artist", + "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 170854, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9" + }, + "href": "https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9", + "id": "593aq2LX6veq1Ft0kHvrS9", + "name": "God Gamer", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:593aq2LX6veq1Ft0kHvrS9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RmWDtsKktRw2v9FP1SFni" + }, + "href": "https://api.spotify.com/v1/artists/6RmWDtsKktRw2v9FP1SFni", + "id": "6RmWDtsKktRw2v9FP1SFni", + "name": "yubyub", + "type": "artist", + "uri": "spotify:artist:6RmWDtsKktRw2v9FP1SFni" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/190GSW42zDnQc16U5XgULT" + }, + "href": "https://api.spotify.com/v1/artists/190GSW42zDnQc16U5XgULT", + "id": "190GSW42zDnQc16U5XgULT", + "name": "Jo the Forggie", + "type": "artist", + "uri": "spotify:artist:190GSW42zDnQc16U5XgULT" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1uLBqEv467ZgclJBIdWlCc" + }, + "href": "https://api.spotify.com/v1/artists/1uLBqEv467ZgclJBIdWlCc", + "id": "1uLBqEv467ZgclJBIdWlCc", + "name": "fluentsynth", + "type": "artist", + "uri": "spotify:artist:1uLBqEv467ZgclJBIdWlCc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 80000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5" + }, + "href": "https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5", + "id": "5WWShf7Lo5EBnIBGdbmKN5", + "name": "Purple Streamer Battle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5WWShf7Lo5EBnIBGdbmKN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2roVEpafIk02cSCDrbhHAe" + }, + "href": "https://api.spotify.com/v1/artists/2roVEpafIk02cSCDrbhHAe", + "id": "2roVEpafIk02cSCDrbhHAe", + "name": "RhysO", + "type": "artist", + "uri": "spotify:artist:2roVEpafIk02cSCDrbhHAe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 99158, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR" + }, + "href": "https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR", + "id": "09WyoZ2RaNeAEcfZHtsXPR", + "name": "Lost at Sea", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:09WyoZ2RaNeAEcfZHtsXPR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" + }, + "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", + "id": "79Mo8yyzVDo0uyeAKimv7W", + "name": "RDCwest", + "type": "artist", + "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 83750, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs" + }, + "href": "https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs", + "id": "4cWh7YO5U0JBCcAU9JUhSs", + "name": "364 Interlude", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4cWh7YO5U0JBCcAU9JUhSs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" + }, + "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", + "id": "78F4dqW3GJqRzy3EDzHfba", + "name": "Alphons", + "type": "artist", + "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2qV9yNZiOt6UlbIYJgM7k2" + }, + "href": "https://api.spotify.com/v1/artists/2qV9yNZiOt6UlbIYJgM7k2", + "id": "2qV9yNZiOt6UlbIYJgM7k2", + "name": "MyDog", + "type": "artist", + "uri": "spotify:artist:2qV9yNZiOt6UlbIYJgM7k2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" + }, + "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", + "id": "2jTOWoCU8yUCNkHN1hzSNm", + "name": "badger", + "type": "artist", + "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141500, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg" + }, + "href": "https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg", + "id": "5Hypfslm17ws3wZhJCpMYg", + "name": "MyDog Has Depression", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:5Hypfslm17ws3wZhJCpMYg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3SCpPBu1VKguPSQRuVYrcA" + }, + "href": "https://api.spotify.com/v1/artists/3SCpPBu1VKguPSQRuVYrcA", + "id": "3SCpPBu1VKguPSQRuVYrcA", + "name": "17artisan", + "type": "artist", + "uri": "spotify:artist:3SCpPBu1VKguPSQRuVYrcA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4yuadBe0F2IQMiuUsxywXw" + }, + "href": "https://api.spotify.com/v1/artists/4yuadBe0F2IQMiuUsxywXw", + "id": "4yuadBe0F2IQMiuUsxywXw", + "name": "REESE", + "type": "artist", + "uri": "spotify:artist:4yuadBe0F2IQMiuUsxywXw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y" + }, + "href": "https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y", + "id": "5xG9nNCZ3Wc2I8dpmrha8y", + "name": "All I Want is Paper Mario", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:5xG9nNCZ3Wc2I8dpmrha8y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" + }, + "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", + "id": "2STTnw4FJjSXRH6bItWl0F", + "name": "StoneEars", + "type": "artist", + "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" + }, + "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", + "id": "51Jlz1EF1XPFtEYuk642cM", + "name": "gRRiever", + "type": "artist", + "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QqFHkMOC59TL7W5hfOsiU" + }, + "href": "https://api.spotify.com/v1/artists/6QqFHkMOC59TL7W5hfOsiU", + "id": "6QqFHkMOC59TL7W5hfOsiU", + "name": "SofiUH", + "type": "artist", + "uri": "spotify:artist:6QqFHkMOC59TL7W5hfOsiU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 146000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv" + }, + "href": "https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv", + "id": "16VDwDiT4YNIVSyJ7RMXsv", + "name": "Confetti Line", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:16VDwDiT4YNIVSyJ7RMXsv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6qLmutNfMLFolEujWZGO6p" + }, + "href": "https://api.spotify.com/v1/artists/6qLmutNfMLFolEujWZGO6p", + "id": "6qLmutNfMLFolEujWZGO6p", + "name": "UneasyFlame", + "type": "artist", + "uri": "spotify:artist:6qLmutNfMLFolEujWZGO6p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v" + }, + "href": "https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v", + "id": "6RG0t1o3B6nuzc5GegyY2v", + "name": "The Wedding Invite", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:6RG0t1o3B6nuzc5GegyY2v", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" + }, + "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", + "id": "78F4dqW3GJqRzy3EDzHfba", + "name": "Alphons", + "type": "artist", + "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178285, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6" + }, + "href": "https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6", + "id": "15g1itLc4kYRXjHMY8aao6", + "name": "Only a Legend", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:15g1itLc4kYRXjHMY8aao6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" + }, + "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", + "id": "7xplDB5Ftf0oECpcFlKE99", + "name": "Owen CMYK", + "type": "artist", + "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" + }, + "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", + "id": "2jTOWoCU8yUCNkHN1hzSNm", + "name": "badger", + "type": "artist", + "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60Y38Hh6PlzEjjpJno5P6p" + }, + "href": "https://api.spotify.com/v1/artists/60Y38Hh6PlzEjjpJno5P6p", + "id": "60Y38Hh6PlzEjjpJno5P6p", + "name": "dropspindle", + "type": "artist", + "uri": "spotify:artist:60Y38Hh6PlzEjjpJno5P6p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6TgYktqPP6KLGoU6KxYq0s" + }, + "href": "https://api.spotify.com/v1/artists/6TgYktqPP6KLGoU6KxYq0s", + "id": "6TgYktqPP6KLGoU6KxYq0s", + "name": "FiN", + "type": "artist", + "uri": "spotify:artist:6TgYktqPP6KLGoU6KxYq0s" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 93666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe" + }, + "href": "https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe", + "id": "080DOCEfEIqct0qvHwKZRe", + "name": "Paradise Found", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:080DOCEfEIqct0qvHwKZRe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0g4gQ5TcCB3HJH6ktWjKYC" + }, + "href": "https://api.spotify.com/v1/artists/0g4gQ5TcCB3HJH6ktWjKYC", + "id": "0g4gQ5TcCB3HJH6ktWjKYC", + "name": "ask the storyteller", + "type": "artist", + "uri": "spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" + }, + "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", + "id": "2RaLCgWRwHSBJySoMVZi1U", + "name": "JPecs", + "type": "artist", + "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" + }, + "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", + "id": "79Mo8yyzVDo0uyeAKimv7W", + "name": "RDCwest", + "type": "artist", + "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" + }, + "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", + "id": "49X16juWaNmVsSkftsPI9u", + "name": "javid74", + "type": "artist", + "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3ehLuD3NDXoO0lmL8cZxSw" + }, + "href": "https://api.spotify.com/v1/artists/3ehLuD3NDXoO0lmL8cZxSw", + "id": "3ehLuD3NDXoO0lmL8cZxSw", + "name": "MikesHardest", + "type": "artist", + "uri": "spotify:artist:3ehLuD3NDXoO0lmL8cZxSw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4QsvqI4nb9TpdwqOrbZcHQ" + }, + "href": "https://api.spotify.com/v1/artists/4QsvqI4nb9TpdwqOrbZcHQ", + "id": "4QsvqI4nb9TpdwqOrbZcHQ", + "name": "Sio", + "type": "artist", + "uri": "spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" + }, + "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", + "id": "6HiHuFsJrutJGZT2GAwG4L", + "name": "itsAZ", + "type": "artist", + "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 703910, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55" + }, + "href": "https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55", + "id": "3gTWK8IiRrXjbPGgz6KD55", + "name": "Revelations 5:22", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3gTWK8IiRrXjbPGgz6KD55", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/4a4HS3GEdO6rHlvrYzztbh", - "id": "4a4HS3GEdO6rHlvrYzztbh", - "type": "track", - "uri": "spotify:track:4a4HS3GEdO6rHlvrYzztbh" - }, - "name": "Back Around", - "preview_url": "https://p.scdn.co/mp3-preview/ee35844d69b852c5069947aa8a87b0ef09bc99c2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:3m9uxUtp0P8dF3U0Uny0uY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 133289, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" - }, - "href": "https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur", - "id": "7z7NUTBS73esdMiCtZ9pur", - "linked_from": { + "copyrights": [ + { "text": "2024 Atriarchy LLC", "type": "C" }, + { "text": "2024 Atriarchy LLC", "type": "P" } + ], + "external_ids": { "upc": "198669450738" }, + "genres": [], + "label": "Atriarchy LLC", + "popularity": 20 + } + }, + { + "added_at": "2024-06-06T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" + "spotify": "https://open.spotify.com/album/0GpklLqjWNrhropGa4XRRD" }, - "href": "https://api.spotify.com/v1/tracks/43qScrbaWtfJZj9kvy2u2P", - "id": "43qScrbaWtfJZj9kvy2u2P", - "type": "track", - "uri": "spotify:track:43qScrbaWtfJZj9kvy2u2P" - }, - "name": "Keep Holding On", - "preview_url": "https://p.scdn.co/mp3-preview/dc25b566ba0c6a2c7baaef1686a6dd1f0bce820f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:7z7NUTBS73esdMiCtZ9pur", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD", + "id": "0GpklLqjWNrhropGa4XRRD", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce", + "height": 64, + "width": 64 + } + ], + "name": "Radiosoul", + "release_date": "2024-06-07", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0GpklLqjWNrhropGa4XRRD", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 315327, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5YualyOibWHyram0jfyBsV" + }, + "href": "https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV", + "id": "5YualyOibWHyram0jfyBsV", + "name": "Radiosoul", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5YualyOibWHyram0jfyBsV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202033, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm" + }, + "href": "https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm", + "id": "1eVzbEkjDGzxqeFNNNrgBm", + "name": "Eyes Wide Shut", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1eVzbEkjDGzxqeFNNNrgBm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206484, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO" + }, + "href": "https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO", + "id": "6Ttp9JrzcpNYG0upW6NKRO", + "name": "This Is Just The Beginning", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6Ttp9JrzcpNYG0upW6NKRO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212302, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL" + }, + "href": "https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL", + "id": "2M7SyIuOuPozGJY1c6xDXL", + "name": "Vultures", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2M7SyIuOuPozGJY1c6xDXL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186991, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA" + }, + "href": "https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA", + "id": "6n1VD2aPzgGbZWMvRdgSPA", + "name": "Drag", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6n1VD2aPzgGbZWMvRdgSPA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L" + }, + "href": "https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L", + "id": "0eFTxYwpRTxyefxYlBJq6L", + "name": "Hello Lonely", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0eFTxYwpRTxyefxYlBJq6L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3yDIp0kaq9EFKe07X1X2rz" + }, + "href": "https://api.spotify.com/v1/artists/3yDIp0kaq9EFKe07X1X2rz", + "id": "3yDIp0kaq9EFKe07X1X2rz", + "name": "Nile Rodgers", + "type": "artist", + "uri": "spotify:artist:3yDIp0kaq9EFKe07X1X2rz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 160932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT" + }, + "href": "https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT", + "id": "5I0qy4t38jwAPKsHS2WPnT", + "name": "Just A Dance", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5I0qy4t38jwAPKsHS2WPnT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 204074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S" + }, + "href": "https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S", + "id": "6zJPeOzroQHmIAbhQETa3S", + "name": "Submarine", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6zJPeOzroQHmIAbhQETa3S", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207430, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX" + }, + "href": "https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX", + "id": "19ZhBuPyYTzNChzoQslVTX", + "name": "Beckham", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:19ZhBuPyYTzNChzoQslVTX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 157458, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u" + }, + "href": "https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u", + "id": "4wTOzQ92UzEBli1ubpcw3u", + "name": "Switch", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4wTOzQ92UzEBli1ubpcw3u", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 263354, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t" + }, + "href": "https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t", + "id": "22sc5jdkR8FTgbGWTdOy7t", + "name": "Run To Tomorrow", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:22sc5jdkR8FTgbGWTdOy7t", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5spVyRrIk8Es1ZBi2ClEUU" - }, - "href": "https://api.spotify.com/v1/artists/5spVyRrIk8Es1ZBi2ClEUU", - "id": "5spVyRrIk8Es1ZBi2ClEUU", - "name": "RILEASA", - "type": "artist", - "uri": "spotify:artist:5spVyRrIk8Es1ZBi2ClEUU" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 164005, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" - }, - "href": "https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc", - "id": "5RgB1e7a1KHrXrfT3UuPCc", - "linked_from": { + "copyrights": [ + { + "text": "(C) 2024 Chess Club Records under exclusive license to AWAL Recordings", + "type": "C" + }, + { + "text": "(P) 2024 Chess Club Records under exclusive license to AWAL Recordings", + "type": "P" + } + ], + "external_ids": { "upc": "198391074080" }, + "genres": [], + "label": "Chess Club Records", + "popularity": 30 + } + }, + { + "added_at": "2024-05-30T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 27, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" + "spotify": "https://open.spotify.com/album/1Sr34Sc0yqB4SlxanOrit0" }, - "href": "https://api.spotify.com/v1/tracks/7otRU4xTCpu0QUKW3ekNd5", - "id": "7otRU4xTCpu0QUKW3ekNd5", - "type": "track", - "uri": "spotify:track:7otRU4xTCpu0QUKW3ekNd5" - }, - "name": "One Track Mind (feat. RILEASA)", - "preview_url": "https://p.scdn.co/mp3-preview/27a6a95780da186f998f89086cf2db52e652fcdc?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:5RgB1e7a1KHrXrfT3UuPCc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0", + "id": "1Sr34Sc0yqB4SlxanOrit0", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3", + "height": 64, + "width": 64 + } + ], + "name": "The Last Goodbye Tour Live", + "release_date": "2024-05-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Sr34Sc0yqB4SlxanOrit0", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 27, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186400, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2" + }, + "href": "https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2", + "id": "24ainScgxd2UDayPsLzzm2", + "name": "This Version of You (Live)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:24ainScgxd2UDayPsLzzm2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189985, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym" + }, + "href": "https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym", + "id": "4gKFQ6sGKfZr44NXw6wjym", + "name": "Behind the Sun (Live)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:4gKFQ6sGKfZr44NXw6wjym", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201954, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt" + }, + "href": "https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt", + "id": "2W0IElS3uccgQUXKAwVyAt", + "name": "All We Need (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2W0IElS3uccgQUXKAwVyAt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA" + }, + "href": "https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA", + "id": "4JK3JhyIl1icooy0uq37DA", + "name": "Love Letter (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4JK3JhyIl1icooy0uq37DA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176459, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK" + }, + "href": "https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK", + "id": "1ZVmGzftncwotIcJzkiTQK", + "name": "Say My Name x Late Night (Live)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1ZVmGzftncwotIcJzkiTQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 151384, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs" + }, + "href": "https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs", + "id": "2mOOT12V4TMB9O6p75Hehs", + "name": "In the Rain (Live)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2mOOT12V4TMB9O6p75Hehs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4iVhFmG8YCCEHANGeUUS9q" + }, + "href": "https://api.spotify.com/v1/artists/4iVhFmG8YCCEHANGeUUS9q", + "id": "4iVhFmG8YCCEHANGeUUS9q", + "name": "Pretty Lights", + "type": "artist", + "uri": "spotify:artist:4iVhFmG8YCCEHANGeUUS9q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 96053, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv" + }, + "href": "https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv", + "id": "3mqmlOkyeU3hP1rERf6tjv", + "name": "One Day They'll Know (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3mqmlOkyeU3hP1rERf6tjv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6BkSTbIWZrLZZK0sa2GehR" + }, + "href": "https://api.spotify.com/v1/artists/6BkSTbIWZrLZZK0sa2GehR", + "id": "6BkSTbIWZrLZZK0sa2GehR", + "name": "Charlie Houston", + "type": "artist", + "uri": "spotify:artist:6BkSTbIWZrLZZK0sa2GehR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261978, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo" + }, + "href": "https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo", + "id": "2A0cPJCmtGITjsKAIhzEfo", + "name": "Wide Awake (Live)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2A0cPJCmtGITjsKAIhzEfo", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214092, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX" + }, + "href": "https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX", + "id": "1a73OJypd6sgDkAwA75NDX", + "name": "Bloom (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1a73OJypd6sgDkAwA75NDX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268167, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL" + }, + "href": "https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL", + "id": "4tL49ueZxBPJD5Z9pmNCAL", + "name": "Equal x Boy (Live)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4tL49ueZxBPJD5Z9pmNCAL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 116759, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW" + }, + "href": "https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW", + "id": "1ZJiqlxrcILMONjWo9wwaW", + "name": "All My Life (Live)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1ZJiqlxrcILMONjWo9wwaW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NP4jJcW3R6qO6rbtnH0wn" + }, + "href": "https://api.spotify.com/v1/artists/3NP4jJcW3R6qO6rbtnH0wn", + "id": "3NP4jJcW3R6qO6rbtnH0wn", + "name": "MARO", + "type": "artist", + "uri": "spotify:artist:3NP4jJcW3R6qO6rbtnH0wn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161641, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE" + }, + "href": "https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE", + "id": "59aWxauGOAbQycO8GNK7LE", + "name": "Better Now (Live)", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:59aWxauGOAbQycO8GNK7LE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qOzMSukiZoiSjPQw8Zs7s" + }, + "href": "https://api.spotify.com/v1/artists/4qOzMSukiZoiSjPQw8Zs7s", + "id": "4qOzMSukiZoiSjPQw8Zs7s", + "name": "Mansionair", + "type": "artist", + "uri": "spotify:artist:4qOzMSukiZoiSjPQw8Zs7s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181843, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6" + }, + "href": "https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6", + "id": "7q7B0VRgFKegcxO2Edzbi6", + "name": "Line Of Sight (Live)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:7q7B0VRgFKegcxO2Edzbi6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b5YOgXIliAozdo49vUCJQ" + }, + "href": "https://api.spotify.com/v1/artists/6b5YOgXIliAozdo49vUCJQ", + "id": "6b5YOgXIliAozdo49vUCJQ", + "name": "Izzy Bizu", + "type": "artist", + "uri": "spotify:artist:6b5YOgXIliAozdo49vUCJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 243413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV" + }, + "href": "https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV", + "id": "0PD6WTOfk9kBi6THqAaBKV", + "name": "Forgive Me (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0PD6WTOfk9kBi6THqAaBKV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 105046, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an" + }, + "href": "https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an", + "id": "5r06HL1g9lqxc5CAxBK7an", + "name": "La Ciudad (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:5r06HL1g9lqxc5CAxBK7an", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MPHBxznH1fj59jbOWY38u" + }, + "href": "https://api.spotify.com/v1/artists/2MPHBxznH1fj59jbOWY38u", + "id": "2MPHBxznH1fj59jbOWY38u", + "name": "Sudan Archives", + "type": "artist", + "uri": "spotify:artist:2MPHBxznH1fj59jbOWY38u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211440, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt" + }, + "href": "https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt", + "id": "7rwME0L7zpCwQgHcIwzbvt", + "name": "Selfish Soul (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:7rwME0L7zpCwQgHcIwzbvt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" + }, + "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", + "id": "60yfafz0P3gqaUaOUIddae", + "name": "BRONSON", + "type": "artist", + "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194464, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA" + }, + "href": "https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA", + "id": "4UU6fudp68mcPuUFJf1sNA", + "name": "TENSE (Live)", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:4UU6fudp68mcPuUFJf1sNA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" + }, + "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", + "id": "60yfafz0P3gqaUaOUIddae", + "name": "BRONSON", + "type": "artist", + "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 142423, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs" + }, + "href": "https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs", + "id": "41z8eydTUKN0IL0QZtRcIs", + "name": "KEEP MOVING (Live)", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:41z8eydTUKN0IL0QZtRcIs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE" + }, + "href": "https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE", + "id": "2hT93dtTBxGOVYQEa3u2pE", + "name": "Sun Models (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2hT93dtTBxGOVYQEa3u2pE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 135054, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk" + }, + "href": "https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk", + "id": "69YWB2KVAMtIcjx01y2nAk", + "name": "Hopeful (Live)", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:69YWB2KVAMtIcjx01y2nAk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 275331, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1CxylMSGYankQropBSWDP3" + }, + "href": "https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3", + "id": "1CxylMSGYankQropBSWDP3", + "name": "Across The Room x Falls (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:1CxylMSGYankQropBSWDP3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216988, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR" + }, + "href": "https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR", + "id": "6aocvw4IvUE1zmlAavNkcR", + "name": "Loyal (Live)", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:6aocvw4IvUE1zmlAavNkcR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 163770, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF" + }, + "href": "https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF", + "id": "5XWGvqsLKBAj0y47KpHmlF", + "name": "Don't Stop (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:5XWGvqsLKBAj0y47KpHmlF", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 45000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec" + }, + "href": "https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec", + "id": "2MA8Ep98eY5wRF28zCE5ec", + "name": "Just A Memory (Interlude) (Live)", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:2MA8Ep98eY5wRF28zCE5ec", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229816, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY" + }, + "href": "https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY", + "id": "6v5Gc28XYQu2cDCmahhlBY", + "name": "Higher Ground (Live)", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:6v5Gc28XYQu2cDCmahhlBY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 383750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8" + }, + "href": "https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8", + "id": "6nwtUZBvCUzWp8HhhGrDu8", + "name": "A Moment Apart (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 26, + "type": "track", + "uri": "spotify:track:6nwtUZBvCUzWp8HhhGrDu8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 419555, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ" + }, + "href": "https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ", + "id": "6y6vQOD1k3fBySGpjPmIkJ", + "name": "The Last Goodbye (Live)", + "preview_url": null, + "track_number": 27, + "type": "track", + "uri": "spotify:track:6y6vQOD1k3fBySGpjPmIkJ", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jNkaOXasoc7RsxdchvEVq" - }, - "href": "https://api.spotify.com/v1/artists/3jNkaOXasoc7RsxdchvEVq", - "id": "3jNkaOXasoc7RsxdchvEVq", - "name": "Chase & Status", - "type": "artist", - "uri": "spotify:artist:3jNkaOXasoc7RsxdchvEVq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 164914, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" - }, - "href": "https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC", - "id": "3VFaV7Mw0di4XFE84eHnrC", - "linked_from": { + "copyrights": [ + { + "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", + "type": "C" + }, + { + "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", + "type": "P" + } + ], + "external_ids": { "upc": "5054429193510" }, + "genres": [], + "label": "Ninja Tune", + "popularity": 45 + } + }, + { + "added_at": "2024-05-30T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 15, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" + "spotify": "https://open.spotify.com/album/6YpuiWNRGcMEumvRbEuOvP" }, - "href": "https://api.spotify.com/v1/tracks/5IKc3FhDTzE6LvgLaB1Q6M", - "id": "5IKc3FhDTzE6LvgLaB1Q6M", - "type": "track", - "uri": "spotify:track:5IKc3FhDTzE6LvgLaB1Q6M" - }, - "name": "Disconnect", - "preview_url": "https://p.scdn.co/mp3-preview/6b503c6983a09757eb985346244d43e3751b7142?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:3VFaV7Mw0di4XFE84eHnrC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 179015, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" - }, - "href": "https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA", - "id": "0S9laeO22k8rgM1PqZtgAA", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" + "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP", + "id": "6YpuiWNRGcMEumvRbEuOvP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb", + "height": 64, + "width": 64 + } + ], + "name": "Believe Me Now?", + "release_date": "2024-05-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6YpuiWNRGcMEumvRbEuOvP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 15, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3K9muOlJVKLgH4SIwwZiDe" + }, + "href": "https://api.spotify.com/v1/artists/3K9muOlJVKLgH4SIwwZiDe", + "id": "3K9muOlJVKLgH4SIwwZiDe", + "name": "Self Esteem", + "type": "artist", + "uri": "spotify:artist:3K9muOlJVKLgH4SIwwZiDe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 231684, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" + }, + "href": "https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4", + "id": "0djt8pab0Si1xC7B2ddfF4", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" + }, + "href": "https://api.spotify.com/v1/tracks/6RtoIjw4BISeXqbju6b64E", + "id": "6RtoIjw4BISeXqbju6b64E", + "type": "track", + "uri": "spotify:track:6RtoIjw4BISeXqbju6b64E" + }, + "name": "True Colours (feat. Self Esteem)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0djt8pab0Si1xC7B2ddfF4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197014, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" + }, + "href": "https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp", + "id": "0rX4zPMMpg8IhCKElJp8lp", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" + }, + "href": "https://api.spotify.com/v1/tracks/6NysRdnw6s1e8v4WfjcdDg", + "id": "6NysRdnw6s1e8v4WfjcdDg", + "type": "track", + "uri": "spotify:track:6NysRdnw6s1e8v4WfjcdDg" + }, + "name": "Darkest Hour", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0rX4zPMMpg8IhCKElJp8lp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 175628, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" + }, + "href": "https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP", + "id": "3LcXzMeyG4jy8ERxtzHGgP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" + }, + "href": "https://api.spotify.com/v1/tracks/0IRZJ6G7fj0bvShvNkSOFR", + "id": "0IRZJ6G7fj0bvShvNkSOFR", + "type": "track", + "uri": "spotify:track:0IRZJ6G7fj0bvShvNkSOFR" + }, + "name": "Outside Of Love", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3LcXzMeyG4jy8ERxtzHGgP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 189087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" + }, + "href": "https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya", + "id": "3MLsgTj4GNyq6Nost2T5ya", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" + }, + "href": "https://api.spotify.com/v1/tracks/3pFe9dLAwfnwKt8gM6mqki", + "id": "3pFe9dLAwfnwKt8gM6mqki", + "type": "track", + "uri": "spotify:track:3pFe9dLAwfnwKt8gM6mqki" + }, + "name": "Never Be Alone (feat. Sonny Fodera)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3MLsgTj4GNyq6Nost2T5ya", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 148135, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" + }, + "href": "https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a", + "id": "1VjvxoeHjF0DJhsmvLte8a", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" + }, + "href": "https://api.spotify.com/v1/tracks/2MLkPm2w8hHjJbg4jpb5e4", + "id": "2MLkPm2w8hHjJbg4jpb5e4", + "type": "track", + "uri": "spotify:track:2MLkPm2w8hHjJbg4jpb5e4" + }, + "name": "Multiply", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1VjvxoeHjF0DJhsmvLte8a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212421, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" + }, + "href": "https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT", + "id": "5Bnm9QxfBKxc1sNvZanTBT", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" + }, + "href": "https://api.spotify.com/v1/tracks/2ZZK8s3J4YFFtuPVPEuBKL", + "id": "2ZZK8s3J4YFFtuPVPEuBKL", + "type": "track", + "uri": "spotify:track:2ZZK8s3J4YFFtuPVPEuBKL" + }, + "name": "Swim", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5Bnm9QxfBKxc1sNvZanTBT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 178352, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" + }, + "href": "https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2", + "id": "2HYvYa9b8lASSBxgupn7H2", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" + }, + "href": "https://api.spotify.com/v1/tracks/0Gy9xulTAI3wQ7S2f4Fyg6", + "id": "0Gy9xulTAI3wQ7S2f4Fyg6", + "type": "track", + "uri": "spotify:track:0Gy9xulTAI3wQ7S2f4Fyg6" + }, + "name": "Man Of My Dreams", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2HYvYa9b8lASSBxgupn7H2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 176661, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" + }, + "href": "https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9", + "id": "6yCLuQMWVBBfgwqLaTtks9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" + }, + "href": "https://api.spotify.com/v1/tracks/6rjezxiUUnvLoCxY3Tn0cP", + "id": "6rjezxiUUnvLoCxY3Tn0cP", + "type": "track", + "uri": "spotify:track:6rjezxiUUnvLoCxY3Tn0cP" + }, + "name": "Linger", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6yCLuQMWVBBfgwqLaTtks9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 230657, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" + }, + "href": "https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R", + "id": "6HHONxXw6BXNg2YSELJn1R", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" + }, + "href": "https://api.spotify.com/v1/tracks/7pxYzLcArC8gnj67ebv4yh", + "id": "7pxYzLcArC8gnj67ebv4yh", + "type": "track", + "uri": "spotify:track:7pxYzLcArC8gnj67ebv4yh" + }, + "name": "Lonely Again", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6HHONxXw6BXNg2YSELJn1R", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26OmQHradZrF0CS7DrgWDH" + }, + "href": "https://api.spotify.com/v1/artists/26OmQHradZrF0CS7DrgWDH", + "id": "26OmQHradZrF0CS7DrgWDH", + "name": "Lewis Thompson", + "type": "artist", + "uri": "spotify:artist:26OmQHradZrF0CS7DrgWDH" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 153742, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" + }, + "href": "https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn", + "id": "2aAksX61WFBUxWayOhEDJn", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" + }, + "href": "https://api.spotify.com/v1/tracks/2l3WaRRp8nKatWZDVysMUR", + "id": "2l3WaRRp8nKatWZDVysMUR", + "type": "track", + "uri": "spotify:track:2l3WaRRp8nKatWZDVysMUR" + }, + "name": "Side Effects", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2aAksX61WFBUxWayOhEDJn", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 156248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" + }, + "href": "https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY", + "id": "3m9uxUtp0P8dF3U0Uny0uY", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" + }, + "href": "https://api.spotify.com/v1/tracks/4a4HS3GEdO6rHlvrYzztbh", + "id": "4a4HS3GEdO6rHlvrYzztbh", + "type": "track", + "uri": "spotify:track:4a4HS3GEdO6rHlvrYzztbh" + }, + "name": "Back Around", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:3m9uxUtp0P8dF3U0Uny0uY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 133289, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" + }, + "href": "https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur", + "id": "7z7NUTBS73esdMiCtZ9pur", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" + }, + "href": "https://api.spotify.com/v1/tracks/43qScrbaWtfJZj9kvy2u2P", + "id": "43qScrbaWtfJZj9kvy2u2P", + "type": "track", + "uri": "spotify:track:43qScrbaWtfJZj9kvy2u2P" + }, + "name": "Keep Holding On", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:7z7NUTBS73esdMiCtZ9pur", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5spVyRrIk8Es1ZBi2ClEUU" + }, + "href": "https://api.spotify.com/v1/artists/5spVyRrIk8Es1ZBi2ClEUU", + "id": "5spVyRrIk8Es1ZBi2ClEUU", + "name": "RILEASA", + "type": "artist", + "uri": "spotify:artist:5spVyRrIk8Es1ZBi2ClEUU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 164005, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" + }, + "href": "https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc", + "id": "5RgB1e7a1KHrXrfT3UuPCc", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" + }, + "href": "https://api.spotify.com/v1/tracks/7otRU4xTCpu0QUKW3ekNd5", + "id": "7otRU4xTCpu0QUKW3ekNd5", + "type": "track", + "uri": "spotify:track:7otRU4xTCpu0QUKW3ekNd5" + }, + "name": "One Track Mind (feat. RILEASA)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:5RgB1e7a1KHrXrfT3UuPCc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jNkaOXasoc7RsxdchvEVq" + }, + "href": "https://api.spotify.com/v1/artists/3jNkaOXasoc7RsxdchvEVq", + "id": "3jNkaOXasoc7RsxdchvEVq", + "name": "Chase & Status", + "type": "artist", + "uri": "spotify:artist:3jNkaOXasoc7RsxdchvEVq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 164914, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" + }, + "href": "https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC", + "id": "3VFaV7Mw0di4XFE84eHnrC", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" + }, + "href": "https://api.spotify.com/v1/tracks/5IKc3FhDTzE6LvgLaB1Q6M", + "id": "5IKc3FhDTzE6LvgLaB1Q6M", + "type": "track", + "uri": "spotify:track:5IKc3FhDTzE6LvgLaB1Q6M" + }, + "name": "Disconnect", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3VFaV7Mw0di4XFE84eHnrC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179015, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" + }, + "href": "https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA", + "id": "0S9laeO22k8rgM1PqZtgAA", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" + }, + "href": "https://api.spotify.com/v1/tracks/74EzvNoqJdoBwIap3o8Ycb", + "id": "74EzvNoqJdoBwIap3o8Ycb", + "type": "track", + "uri": "spotify:track:74EzvNoqJdoBwIap3o8Ycb" + }, + "name": "Right Here", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:0S9laeO22k8rgM1PqZtgAA", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/74EzvNoqJdoBwIap3o8Ycb", - "id": "74EzvNoqJdoBwIap3o8Ycb", - "type": "track", - "uri": "spotify:track:74EzvNoqJdoBwIap3o8Ycb" - }, - "name": "Right Here", - "preview_url": "https://p.scdn.co/mp3-preview/b2fc2f6cf6d9783cfe60e3b9c71bd94f07780724?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:0S9laeO22k8rgM1PqZtgAA", - "is_local": false + "copyrights": [ + { + "text": "\u00a9 2024 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2024 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602465082463" }, + "genres": [], + "label": "Polydor Records", + "popularity": 0 } - ] - }, - "copyrights": [ - { - "text": "© 2024 Universal Music Operations Limited", - "type": "C" - }, - { - "text": "℗ 2024 Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { - "upc": "00602465082463" }, - "genres": [], - "label": "Polydor Records", - "popularity": 59 - } - }, - { - "added_at": "2022-11-07T16:59:34Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1ZzRJDpsGzs8wkkI0w6F8G" - }, - "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1ZzRJDpsGzs8wkkI0w6F8G", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128", - "height": 64, - "width": 64 - } - ], - "name": "Stiekem ft. Goldband", - "release_date": "2022-11-04", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1ZzRJDpsGzs8wkkI0w6F8G", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" - }, - "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", - "id": "5vmwWgrlwCfHm1P0vdDFbU", - "name": "Maan", - "type": "artist", - "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" - }, - "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", - "id": "5vmwWgrlwCfHm1P0vdDFbU", - "name": "Maan", - "type": "artist", - "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" + { + "added_at": "2022-11-07T16:59:34Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ZzRJDpsGzs8wkkI0w6F8G" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203437, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" - }, - "href": "https://api.spotify.com/v1/tracks/1ulgMAx95xb3N33SMklfG3", - "id": "1ulgMAx95xb3N33SMklfG3", - "name": "Stiekem", - "preview_url": "https://p.scdn.co/mp3-preview/55a2c92c0ea010889723cf60af68f499feb910c8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1ulgMAx95xb3N33SMklfG3", - "is_local": false + "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G", + "id": "1ZzRJDpsGzs8wkkI0w6F8G", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128", + "height": 64, + "width": 64 + } + ], + "name": "Stiekem ft. Goldband", + "release_date": "2022-11-04", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1ZzRJDpsGzs8wkkI0w6F8G", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" + }, + "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", + "id": "5vmwWgrlwCfHm1P0vdDFbU", + "name": "Maan", + "type": "artist", + "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" + }, + "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", + "id": "5vmwWgrlwCfHm1P0vdDFbU", + "name": "Maan", + "type": "artist", + "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203437, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" + }, + "href": "https://api.spotify.com/v1/tracks/0kINWIY7BToJACjRzIOqsz", + "id": "0kINWIY7BToJACjRzIOqsz", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" + }, + "href": "https://api.spotify.com/v1/tracks/1ulgMAx95xb3N33SMklfG3", + "id": "1ulgMAx95xb3N33SMklfG3", + "type": "track", + "uri": "spotify:track:1ulgMAx95xb3N33SMklfG3" + }, + "name": "Stiekem", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0kINWIY7BToJACjRzIOqsz", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2022 8ball Music", "type": "C" }, + { "text": "2022 8ball Music", "type": "P" } + ], + "external_ids": { "upc": "8717774691618" }, + "genres": [], + "label": "8ball Music", + "popularity": 9 } - ] - }, - "copyrights": [ - { - "text": "2022 8ball Music", - "type": "C" - }, - { - "text": "2022 8ball Music", - "type": "P" - } - ], - "external_ids": { - "upc": "8717774691618" }, - "genres": [], - "label": "8ball Music", - "popularity": 48 - } - }, - { - "added_at": "2021-08-06T10:07:29Z", - "album": { - "album_type": "single", - "total_tracks": 4, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/16mh2RvDOwlv2gw7BFElFf" - }, - "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf?locale=en-US%2Cen%3Bq%3D0.5", - "id": "16mh2RvDOwlv2gw7BFElFf", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590", - "height": 64, - "width": 64 - } - ], - "name": "Business (with Ella Eyre)", - "release_date": "2021-08-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:16mh2RvDOwlv2gw7BFElFf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" - }, - "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", - "id": "66TrUkUZ3RM29dqeDQRgyA", - "name": "Ella Eyre", - "type": "artist", - "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 4, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + { + "added_at": "2021-08-06T10:07:29Z", + "album": { + "album_type": "single", + "total_tracks": 4, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/16mh2RvDOwlv2gw7BFElFf" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" - }, - "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", - "id": "66TrUkUZ3RM29dqeDQRgyA", - "name": "Ella Eyre", - "type": "artist", - "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197720, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw" - }, - "href": "https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw", - "id": "7f3oSqQXBCUiWtR0m7ieRw", - "name": "Business (with Ella Eyre)", - "preview_url": "https://p.scdn.co/mp3-preview/f8fadaa2e848985c7e8d6871cd8178e28e73bf59?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:7f3oSqQXBCUiWtR0m7ieRw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf", + "id": "16mh2RvDOwlv2gw7BFElFf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590", + "height": 64, + "width": 64 + } + ], + "name": "Business (with Ella Eyre)", + "release_date": "2021-08-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:16mh2RvDOwlv2gw7BFElFf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" + }, + "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", + "id": "66TrUkUZ3RM29dqeDQRgyA", + "name": "Ella Eyre", + "type": "artist", + "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 4, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" + }, + "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", + "id": "66TrUkUZ3RM29dqeDQRgyA", + "name": "Ella Eyre", + "type": "artist", + "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197720, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw" + }, + "href": "https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw", + "id": "7f3oSqQXBCUiWtR0m7ieRw", + "name": "Business (with Ella Eyre)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7f3oSqQXBCUiWtR0m7ieRw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" + }, + "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", + "id": "1Cs0zKBU1kc0i8ypK3B9ai", + "name": "David Guetta", + "type": "artist", + "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l" + }, + "href": "https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l", + "id": "6YkclKF41aboSB5Sf4p15l", + "name": "Remember (and David Guetta)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6YkclKF41aboSB5Sf4p15l", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1IueXOQyABrMOprrzwQJWN" + }, + "href": "https://api.spotify.com/v1/artists/1IueXOQyABrMOprrzwQJWN", + "id": "1IueXOQyABrMOprrzwQJWN", + "name": "Sigala", + "type": "artist", + "uri": "spotify:artist:1IueXOQyABrMOprrzwQJWN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 193360, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk" + }, + "href": "https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk", + "id": "2N8HEioDelArgvoInf5pkk", + "name": "Heaven On My Mind (with Sigala)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2N8HEioDelArgvoInf5pkk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26OrZl5U3VNGHU9qUj8EcM" + }, + "href": "https://api.spotify.com/v1/artists/26OrZl5U3VNGHU9qUj8EcM", + "id": "26OrZl5U3VNGHU9qUj8EcM", + "name": "Shift K3Y", + "type": "artist", + "uri": "spotify:artist:26OrZl5U3VNGHU9qUj8EcM" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx" + }, + "href": "https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx", + "id": "4RJ9DfYp0sWhPWUjIXKJUx", + "name": "Better Off Without You (feat. Shift K3Y)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4RJ9DfYp0sWhPWUjIXKJUx", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" - }, - "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", - "id": "1Cs0zKBU1kc0i8ypK3B9ai", - "name": "David Guetta", - "type": "artist", - "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l" - }, - "href": "https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l", - "id": "6YkclKF41aboSB5Sf4p15l", - "name": "Remember (and David Guetta)", - "preview_url": "https://p.scdn.co/mp3-preview/04b876d2c5f4e8e9acaef120aacfb7da80c66901?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:6YkclKF41aboSB5Sf4p15l", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "copyrights": [ + { + "text": "\u00a9 2021 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2021 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602438672417" }, + "genres": [], + "label": "Polydor Records", + "popularity": 18 + } + }, + { + "added_at": "2019-09-17T07:00:48Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1KPqoSV4Rs89YfgAwbLROr" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1IueXOQyABrMOprrzwQJWN" - }, - "href": "https://api.spotify.com/v1/artists/1IueXOQyABrMOprrzwQJWN", - "id": "1IueXOQyABrMOprrzwQJWN", - "name": "Sigala", - "type": "artist", - "uri": "spotify:artist:1IueXOQyABrMOprrzwQJWN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 193360, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk" - }, - "href": "https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk", - "id": "2N8HEioDelArgvoInf5pkk", - "name": "Heaven On My Mind (with Sigala)", - "preview_url": "https://p.scdn.co/mp3-preview/04a2dcee5220ff6f0472b9933cfb399bdef6eece?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:2N8HEioDelArgvoInf5pkk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr", + "id": "1KPqoSV4Rs89YfgAwbLROr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e", + "height": 64, + "width": 64 + } + ], + "name": "What's Love", + "release_date": "2019-09-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1KPqoSV4Rs89YfgAwbLROr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176727, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk" + }, + "href": "https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk", + "id": "21Z6lY56DuaKBZBkPKK4Nk", + "name": "What's Love", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:21Z6lY56DuaKBZBkPKK4Nk", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26OrZl5U3VNGHU9qUj8EcM" - }, - "href": "https://api.spotify.com/v1/artists/26OrZl5U3VNGHU9qUj8EcM", - "id": "26OrZl5U3VNGHU9qUj8EcM", - "name": "Shift K3Y", - "type": "artist", - "uri": "spotify:artist:26OrZl5U3VNGHU9qUj8EcM" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx" - }, - "href": "https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx", - "id": "4RJ9DfYp0sWhPWUjIXKJUx", - "name": "Better Off Without You (feat. Shift K3Y)", - "preview_url": "https://p.scdn.co/mp3-preview/afdbf8bed8f470c2b90c9c9c3907e40749c5695f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:4RJ9DfYp0sWhPWUjIXKJUx", - "is_local": false + "copyrights": [ + { "text": "2019 Monstercat", "type": "C" }, + { "text": "2019 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "703980546604" }, + "genres": [], + "label": "Monstercat", + "popularity": 7 } - ] - }, - "copyrights": [ - { - "text": "© 2021 Universal Music Operations Limited", - "type": "C" - }, - { - "text": "℗ 2021 Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { - "upc": "00602438672417" - }, - "genres": [], - "label": "Polydor Records", - "popularity": 28 - } - }, - { - "added_at": "2019-09-17T07:00:48Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1KPqoSV4Rs89YfgAwbLROr" }, - "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1KPqoSV4Rs89YfgAwbLROr", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e", - "height": 64, - "width": 64 - } - ], - "name": "What's Love", - "release_date": "2019-09-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1KPqoSV4Rs89YfgAwbLROr", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176727, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk" - }, - "href": "https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk", - "id": "21Z6lY56DuaKBZBkPKK4Nk", - "name": "What's Love", - "preview_url": "https://p.scdn.co/mp3-preview/96282e1fe594e9ced3b500ecc58db59f054acf85?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:21Z6lY56DuaKBZBkPKK4Nk", - "is_local": false + { + "added_at": "2019-04-05T07:08:25Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6OSLjWXJHlMRfQwM0HkOhQ" + }, + "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ", + "id": "6OSLjWXJHlMRfQwM0HkOhQ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e", + "height": 64, + "width": 64 + } + ], + "name": "Remember You", + "release_date": "2019-04-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6OSLjWXJHlMRfQwM0HkOhQ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 189000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" + }, + "href": "https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY", + "id": "796JqxZ3o0ZH6OllNRDuTY", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" + }, + "href": "https://api.spotify.com/v1/tracks/20psIOrg7j48rGrlpFXqTI", + "id": "20psIOrg7j48rGrlpFXqTI", + "type": "track", + "uri": "spotify:track:20psIOrg7j48rGrlpFXqTI" + }, + "name": "Remember You", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:796JqxZ3o0ZH6OllNRDuTY", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2019 Monstercat", "type": "C" }, + { "text": "2019 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "703980544396" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 } - ] }, - "copyrights": [ - { - "text": "2019 Monstercat", - "type": "C" - }, - { - "text": "2019 Monstercat", - "type": "P" - } - ], - "external_ids": { - "upc": "703980546604" - }, - "genres": [], - "label": "Monstercat", - "popularity": 11 - } - }, - { - "added_at": "2019-04-05T07:08:25Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/6OSLjWXJHlMRfQwM0HkOhQ" - }, - "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ?locale=en-US%2Cen%3Bq%3D0.5", - "id": "6OSLjWXJHlMRfQwM0HkOhQ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e", - "height": 64, - "width": 64 - } - ], - "name": "Remember You", - "release_date": "2019-04-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6OSLjWXJHlMRfQwM0HkOhQ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 189000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" - }, - "href": "https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY", - "id": "796JqxZ3o0ZH6OllNRDuTY", - "linked_from": { + { + "added_at": "2019-03-31T02:37:47Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" + "spotify": "https://open.spotify.com/album/79iwhS4dR28DeLyHZvuoSd" }, - "href": "https://api.spotify.com/v1/tracks/20psIOrg7j48rGrlpFXqTI", - "id": "20psIOrg7j48rGrlpFXqTI", - "type": "track", - "uri": "spotify:track:20psIOrg7j48rGrlpFXqTI" - }, - "name": "Remember You", - "preview_url": "https://p.scdn.co/mp3-preview/478e4b3db1c6368f990976f7ad5d960039b79576?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:796JqxZ3o0ZH6OllNRDuTY", - "is_local": false + "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd", + "id": "79iwhS4dR28DeLyHZvuoSd", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2", + "height": 64, + "width": 64 + } + ], + "name": "Flourish", + "release_date": "2019-03-08", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:79iwhS4dR28DeLyHZvuoSd", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 228354, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9" + }, + "href": "https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9", + "id": "2IhMGMdJv5fBUnJCLksKj9", + "name": "Down", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2IhMGMdJv5fBUnJCLksKj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189711, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM" + }, + "href": "https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM", + "id": "2bPB38GR1k2UxAjBzEi1DM", + "name": "Calling", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2bPB38GR1k2UxAjBzEi1DM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227549, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6" + }, + "href": "https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6", + "id": "6UeOqEdtIALSGkLPcw7Rl6", + "name": "Fourteen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6UeOqEdtIALSGkLPcw7Rl6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201566, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM" + }, + "href": "https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM", + "id": "21alqUkGOEr7DEJncHfQqM", + "name": "Anyone", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:21alqUkGOEr7DEJncHfQqM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200662, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH" + }, + "href": "https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH", + "id": "4PjkUwMvr7g1M45DSqlQkH", + "name": "Difference", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:4PjkUwMvr7g1M45DSqlQkH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI" + }, + "href": "https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI", + "id": "0XZjcj8GUyWCEcnDgWDoTI", + "name": "No Worries", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0XZjcj8GUyWCEcnDgWDoTI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244935, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO" + }, + "href": "https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO", + "id": "4p0uwwMD4GIUlNZACqPJXO", + "name": "New Day", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4p0uwwMD4GIUlNZACqPJXO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183355, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp" + }, + "href": "https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp", + "id": "3suDoAXX6otxz0WBMHc6pp", + "name": "We Got It", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3suDoAXX6otxz0WBMHc6pp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216855, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq" + }, + "href": "https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq", + "id": "7GqsS485BuDKtkuKdAaiRq", + "name": "Be Mine", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7GqsS485BuDKtkuKdAaiRq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255650, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M" + }, + "href": "https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M", + "id": "12o2tk8IhIDUiv9wargB8M", + "name": "Underwater", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:12o2tk8IhIDUiv9wargB8M", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV" + }, + "href": "https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV", + "id": "4AHrbiyZ2bPgcYMMh9I7UV", + "name": "You And I", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:4AHrbiyZ2bPgcYMMh9I7UV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa" + }, + "href": "https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa", + "id": "725MTKVYYrxtenlGtLfAIa", + "name": "All That Was Left", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:725MTKVYYrxtenlGtLfAIa", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", + "type": "C" + }, + { + "text": "\u2117 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", + "type": "P" + } + ], + "external_ids": { "upc": "00602577411809" }, + "genres": [], + "label": "Universal Music, a division of Universal International Music BV", + "popularity": 27 } - ] - }, - "copyrights": [ - { - "text": "2019 Monstercat", - "type": "C" - }, - { - "text": "2019 Monstercat", - "type": "P" - } - ], - "external_ids": { - "upc": "703980544396" }, - "genres": [], - "label": "Monstercat", - "popularity": 0 - } - }, - { - "added_at": "2019-03-31T02:37:47Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/79iwhS4dR28DeLyHZvuoSd" - }, - "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd?locale=en-US%2Cen%3Bq%3D0.5", - "id": "79iwhS4dR28DeLyHZvuoSd", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2", - "height": 64, - "width": 64 - } - ], - "name": "Flourish", - "release_date": "2019-03-08", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:79iwhS4dR28DeLyHZvuoSd", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 228354, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9" - }, - "href": "https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9", - "id": "2IhMGMdJv5fBUnJCLksKj9", - "name": "Down", - "preview_url": "https://p.scdn.co/mp3-preview/bd91772105c144f72622e8afc969e6b54fd786aa?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2IhMGMdJv5fBUnJCLksKj9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189711, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM" - }, - "href": "https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM", - "id": "2bPB38GR1k2UxAjBzEi1DM", - "name": "Calling", - "preview_url": "https://p.scdn.co/mp3-preview/2c52c749d38ad25402baed030fa9c280b5761bf2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:2bPB38GR1k2UxAjBzEi1DM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227549, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6" - }, - "href": "https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6", - "id": "6UeOqEdtIALSGkLPcw7Rl6", - "name": "Fourteen", - "preview_url": "https://p.scdn.co/mp3-preview/7802821c58b2219b424e7613132d9070c97a6233?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:6UeOqEdtIALSGkLPcw7Rl6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201566, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM" - }, - "href": "https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM", - "id": "21alqUkGOEr7DEJncHfQqM", - "name": "Anyone", - "preview_url": "https://p.scdn.co/mp3-preview/b7f69aac475e27d6af9d1cddd763c5c11a8b251a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:21alqUkGOEr7DEJncHfQqM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200662, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH" - }, - "href": "https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH", - "id": "4PjkUwMvr7g1M45DSqlQkH", - "name": "Difference", - "preview_url": "https://p.scdn.co/mp3-preview/979ab3ff9d736e26ab15d44b8472dc4354a2896a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:4PjkUwMvr7g1M45DSqlQkH", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 215348, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI" - }, - "href": "https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI", - "id": "0XZjcj8GUyWCEcnDgWDoTI", - "name": "No Worries", - "preview_url": "https://p.scdn.co/mp3-preview/8292393a546e94dcc9281da0042966742af6bcb2?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:0XZjcj8GUyWCEcnDgWDoTI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244935, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO" - }, - "href": "https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO", - "id": "4p0uwwMD4GIUlNZACqPJXO", - "name": "New Day", - "preview_url": "https://p.scdn.co/mp3-preview/65bdf63dbde8c600efd89460b36357ac48e712c4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:4p0uwwMD4GIUlNZACqPJXO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183355, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp" - }, - "href": "https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp", - "id": "3suDoAXX6otxz0WBMHc6pp", - "name": "We Got It", - "preview_url": "https://p.scdn.co/mp3-preview/7b6d174f46662383cd90cf1dd8b1495365d63fb4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:3suDoAXX6otxz0WBMHc6pp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216855, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq" - }, - "href": "https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq", - "id": "7GqsS485BuDKtkuKdAaiRq", - "name": "Be Mine", - "preview_url": "https://p.scdn.co/mp3-preview/1adb5287b586e996a9028fb3592c4f83b740ef10?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:7GqsS485BuDKtkuKdAaiRq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 255650, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M" - }, - "href": "https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M", - "id": "12o2tk8IhIDUiv9wargB8M", - "name": "Underwater", - "preview_url": "https://p.scdn.co/mp3-preview/9d825d21c8c281ae678e660ff36d25297556714b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:12o2tk8IhIDUiv9wargB8M", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV" - }, - "href": "https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV", - "id": "4AHrbiyZ2bPgcYMMh9I7UV", - "name": "You And I", - "preview_url": "https://p.scdn.co/mp3-preview/260174413c01378d4fe151a8dfbcfbd503886c4e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:4AHrbiyZ2bPgcYMMh9I7UV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "RONDÉ", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201932, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa" - }, - "href": "https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa", - "id": "725MTKVYYrxtenlGtLfAIa", - "name": "All That Was Left", - "preview_url": "https://p.scdn.co/mp3-preview/490b3c3376c14d5451b5705f87707498cc35ff25?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:725MTKVYYrxtenlGtLfAIa", - "is_local": false + { + "added_at": "2018-10-04T21:11:02Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/7lsSj3qTDdmEqVvVLdoQWZ" + }, + "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ", + "id": "7lsSj3qTDdmEqVvVLdoQWZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5", + "height": 64, + "width": 64 + } + ], + "name": "Not A Love Song (King Arthur Remix)", + "release_date": "2018-02-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7lsSj3qTDdmEqVvVLdoQWZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" + }, + "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", + "id": "5vBrKGOjN10BMwB0cJADj4", + "name": "b\u00fclow", + "type": "artist", + "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" + }, + "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", + "id": "5vBrKGOjN10BMwB0cJADj4", + "name": "b\u00fclow", + "type": "artist", + "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2qPxiZiD34NtmokWN6RoP2" + }, + "href": "https://api.spotify.com/v1/artists/2qPxiZiD34NtmokWN6RoP2", + "id": "2qPxiZiD34NtmokWN6RoP2", + "name": "King Topher", + "type": "artist", + "uri": "spotify:artist:2qPxiZiD34NtmokWN6RoP2" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203706, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN" + }, + "href": "https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN", + "id": "4wD34HA8cOSV32SlItkckN", + "restrictions": { "reason": "market" }, + "name": "Not A Love Song - King Arthur Remix", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4wD34HA8cOSV32SlItkckN", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "\u00a9 2018 Wax Records", "type": "C" }, + { "text": "\u2117 2018 Wax Records", "type": "P" } + ], + "external_ids": { "upc": "00185627002276" }, + "genres": [], + "label": "Wax Records", + "popularity": 0 } - ] - }, - "copyrights": [ - { - "text": "© 2019 RONDÉ, under exclusive license to Universal Music, a division of Universal International Music B.V.", - "type": "C" - }, - { - "text": "℗ 2019 RONDÉ, under exclusive license to Universal Music, a division of Universal International Music B.V.", - "type": "P" - } - ], - "external_ids": { - "upc": "00602577411809" }, - "genres": [], - "label": "Universal Music, a division of Universal International Music BV", - "popularity": 35 - } - }, - { - "added_at": "2018-10-04T21:11:02Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/7lsSj3qTDdmEqVvVLdoQWZ" - }, - "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ?locale=en-US%2Cen%3Bq%3D0.5", - "id": "7lsSj3qTDdmEqVvVLdoQWZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5", - "height": 64, - "width": 64 - } - ], - "name": "Not A Love Song (King Arthur Remix)", - "release_date": "2018-02-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7lsSj3qTDdmEqVvVLdoQWZ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" - }, - "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", - "id": "5vBrKGOjN10BMwB0cJADj4", - "name": "bülow", - "type": "artist", - "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" - }, - "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", - "id": "5vBrKGOjN10BMwB0cJADj4", - "name": "bülow", - "type": "artist", - "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" + { + "added_at": "2018-04-16T10:43:21Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6RxUo05RvVNA06y5BVGoth" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2qPxiZiD34NtmokWN6RoP2" - }, - "href": "https://api.spotify.com/v1/artists/2qPxiZiD34NtmokWN6RoP2", - "id": "2qPxiZiD34NtmokWN6RoP2", - "name": "King Topher", - "type": "artist", - "uri": "spotify:artist:2qPxiZiD34NtmokWN6RoP2" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203706, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN" - }, - "href": "https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN", - "id": "4wD34HA8cOSV32SlItkckN", - "restrictions": { - "reason": "market" - }, - "name": "Not A Love Song - King Arthur Remix", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4wD34HA8cOSV32SlItkckN", - "is_local": false + "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth", + "id": "6RxUo05RvVNA06y5BVGoth", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305", + "height": 64, + "width": 64 + } + ], + "name": "This Is Not An Album", + "release_date": "2018-01-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6RxUo05RvVNA06y5BVGoth", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 169739, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY" + }, + "href": "https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY", + "id": "3tpB406UcLxAKAZMXMHlpY", + "name": "Ooh Lordy", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3tpB406UcLxAKAZMXMHlpY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203114, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25" + }, + "href": "https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25", + "id": "1tmDa0FhMn8XSOpEJbVu25", + "name": "Out Of My System", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1tmDa0FhMn8XSOpEJbVu25", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4W48hZAnAHVOC2c8WH8pcq" + }, + "href": "https://api.spotify.com/v1/artists/4W48hZAnAHVOC2c8WH8pcq", + "id": "4W48hZAnAHVOC2c8WH8pcq", + "name": "The Temper Trap", + "type": "artist", + "uri": "spotify:artist:4W48hZAnAHVOC2c8WH8pcq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 294005, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7" + }, + "href": "https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7", + "id": "1QBOH8W1ZhRoTOoHvfaZn7", + "name": "Sweet Disposition - Bootleg", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1QBOH8W1ZhRoTOoHvfaZn7", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209152, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub" + }, + "href": "https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub", + "id": "5zC1NaCQeETz5b0IysG5Ub", + "name": "'93", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5zC1NaCQeETz5b0IysG5Ub", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6F3vLfyutkUhpM50G84eMt" + }, + "href": "https://api.spotify.com/v1/artists/6F3vLfyutkUhpM50G84eMt", + "id": "6F3vLfyutkUhpM50G84eMt", + "name": "Endor", + "type": "artist", + "uri": "spotify:artist:6F3vLfyutkUhpM50G84eMt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208665, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp" + }, + "href": "https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp", + "id": "44478ajpb5DPFaWVDbKSPp", + "name": "Give It Up - Youngr x Endor", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:44478ajpb5DPFaWVDbKSPp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 185334, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu" + }, + "href": "https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu", + "id": "7MTsaNHz8evXD32xLjfjDu", + "name": "What's Next", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7MTsaNHz8evXD32xLjfjDu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212937, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2" + }, + "href": "https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2", + "id": "1J7U9B8nPjKrLL7xDZ56F2", + "name": "Monsters", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1J7U9B8nPjKrLL7xDZ56F2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 162652, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1" + }, + "href": "https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1", + "id": "5Zp2xpSwgUyHVtGJZ31kZ1", + "name": "Too Keen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 241406, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5RQdeW1apwe934zbntXROv" + }, + "href": "https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv", + "id": "5RQdeW1apwe934zbntXROv", + "name": "September Sun", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5RQdeW1apwe934zbntXROv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219499, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo" + }, + "href": "https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo", + "id": "4gD4ja2LvNDfCK8yeyXJwo", + "name": "Disappear", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4gD4ja2LvNDfCK8yeyXJwo", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2018 Island Records, a division of Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2018 Island Records, a division of Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602567337072" }, + "genres": [], + "label": "Universal-Island Records Ltd.", + "popularity": 32 } - ] - }, - "copyrights": [ - { - "text": "© 2018 Wax Records", - "type": "C" - }, - { - "text": "℗ 2018 Wax Records", - "type": "P" - } - ], - "external_ids": { - "upc": "00185627002276" - }, - "genres": [], - "label": "Wax Records", - "popularity": 0 - } - }, - { - "added_at": "2018-04-16T10:43:21Z", - "album": { - "album_type": "album", - "total_tracks": 10, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6RxUo05RvVNA06y5BVGoth" }, - "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth?locale=en-US%2Cen%3Bq%3D0.5", - "id": "6RxUo05RvVNA06y5BVGoth", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305", - "height": 64, - "width": 64 - } - ], - "name": "This Is Not An Album", - "release_date": "2018-01-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6RxUo05RvVNA06y5BVGoth", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 169739, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY" - }, - "href": "https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY", - "id": "3tpB406UcLxAKAZMXMHlpY", - "name": "Ooh Lordy", - "preview_url": "https://p.scdn.co/mp3-preview/7757d3cca46a18ce11eff3fa26a7f8fd49cfcf01?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3tpB406UcLxAKAZMXMHlpY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203114, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25" - }, - "href": "https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25", - "id": "1tmDa0FhMn8XSOpEJbVu25", - "name": "Out Of My System", - "preview_url": "https://p.scdn.co/mp3-preview/46ad14d82de5c2428651909bc993c9fd0953a4ae?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:1tmDa0FhMn8XSOpEJbVu25", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4W48hZAnAHVOC2c8WH8pcq" - }, - "href": "https://api.spotify.com/v1/artists/4W48hZAnAHVOC2c8WH8pcq", - "id": "4W48hZAnAHVOC2c8WH8pcq", - "name": "The Temper Trap", - "type": "artist", - "uri": "spotify:artist:4W48hZAnAHVOC2c8WH8pcq" + { + "added_at": "2018-03-06T23:37:54Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/0wZ3CJWOsyYAfM8q5eatk2" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 294005, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7" - }, - "href": "https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7", - "id": "1QBOH8W1ZhRoTOoHvfaZn7", - "name": "Sweet Disposition - Bootleg", - "preview_url": "https://p.scdn.co/mp3-preview/4a52291f90eaaec02933130cf53b4af7b8a9b1dd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:1QBOH8W1ZhRoTOoHvfaZn7", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 209152, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub" - }, - "href": "https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub", - "id": "5zC1NaCQeETz5b0IysG5Ub", - "name": "'93", - "preview_url": "https://p.scdn.co/mp3-preview/5881d7b82866415552f3f752185cd549d574d66b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:5zC1NaCQeETz5b0IysG5Ub", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2", + "id": "0wZ3CJWOsyYAfM8q5eatk2", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273ba42f930893e0e8bdc2bfb06", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02ba42f930893e0e8bdc2bfb06", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851ba42f930893e0e8bdc2bfb06", + "height": 64, + "width": 64 + } + ], + "name": "Mind Control", + "release_date": "2017-08-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0wZ3CJWOsyYAfM8q5eatk2", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" + }, + "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", + "id": "12x5fAPl1U05wUHCI5O0uq", + "name": "Right-O", + "type": "artist", + "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" + }, + "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", + "id": "12x5fAPl1U05wUHCI5O0uq", + "name": "Right-O", + "type": "artist", + "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 216920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj" + }, + "href": "https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj", + "id": "2h07NImWicduAsv0P1YAJj", + "restrictions": { "reason": "market" }, + "name": "Mind Control", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2h07NImWicduAsv0P1YAJj", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6F3vLfyutkUhpM50G84eMt" - }, - "href": "https://api.spotify.com/v1/artists/6F3vLfyutkUhpM50G84eMt", - "id": "6F3vLfyutkUhpM50G84eMt", - "name": "Endor", - "type": "artist", - "uri": "spotify:artist:6F3vLfyutkUhpM50G84eMt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208665, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp" - }, - "href": "https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp", - "id": "44478ajpb5DPFaWVDbKSPp", - "name": "Give It Up - Youngr x Endor", - "preview_url": "https://p.scdn.co/mp3-preview/a7d49961c3ac47269d458a5daeed9808ea5f61e4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:44478ajpb5DPFaWVDbKSPp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 185334, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu" - }, - "href": "https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu", - "id": "7MTsaNHz8evXD32xLjfjDu", - "name": "What's Next", - "preview_url": "https://p.scdn.co/mp3-preview/c26ca3d58eb5a4feb4f3891303758980c1601b31?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:7MTsaNHz8evXD32xLjfjDu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212937, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2" - }, - "href": "https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2", - "id": "1J7U9B8nPjKrLL7xDZ56F2", - "name": "Monsters", - "preview_url": "https://p.scdn.co/mp3-preview/bf5c8b3fc0895eda25072f27af5a642c6fb0f80c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:1J7U9B8nPjKrLL7xDZ56F2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 162652, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1" - }, - "href": "https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1", - "id": "5Zp2xpSwgUyHVtGJZ31kZ1", - "name": "Too Keen", - "preview_url": "https://p.scdn.co/mp3-preview/c53db57ef0208bb709c1a9bde4edf05c3164e397?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 241406, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5RQdeW1apwe934zbntXROv" - }, - "href": "https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv", - "id": "5RQdeW1apwe934zbntXROv", - "name": "September Sun", - "preview_url": "https://p.scdn.co/mp3-preview/09716f9a6fd9d5bd19a52e37f5f1b2b65e75ab1c?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:5RQdeW1apwe934zbntXROv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219499, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo" - }, - "href": "https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo", - "id": "4gD4ja2LvNDfCK8yeyXJwo", - "name": "Disappear", - "preview_url": "https://p.scdn.co/mp3-preview/abd80c357d549c9cd073058ab1041b8fbd91108f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:4gD4ja2LvNDfCK8yeyXJwo", - "is_local": false + "copyrights": [ + { "text": "2017 Independant", "type": "C" }, + { "text": "2017 Independant", "type": "P" } + ], + "external_ids": { "upc": "859721943291" }, + "genres": [], + "label": "Independant", + "popularity": 0 } - ] - }, - "copyrights": [ - { - "text": "© 2018 Island Records, a division of Universal Music Operations Limited", - "type": "C" - }, - { - "text": "℗ 2018 Island Records, a division of Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { - "upc": "00602567337072" }, - "genres": [], - "label": "Universal-Island Records Ltd.", - "popularity": 38 - } - }, - { - "added_at": "2018-03-06T23:37:54Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "DJ", - "ZM", - "CG", - "TJ", - "VE", - "ET" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0wZ3CJWOsyYAfM8q5eatk2" - }, - "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2?locale=en-US%2Cen%3Bq%3D0.5", - "id": "0wZ3CJWOsyYAfM8q5eatk2", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736860f0c34271a7e09b4e4a79", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026860f0c34271a7e09b4e4a79", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516860f0c34271a7e09b4e4a79", - "height": 64, - "width": 64 - } - ], - "name": "Mind Control (feat. Tyler Sjöström)", - "release_date": "2017-08-02", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0wZ3CJWOsyYAfM8q5eatk2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" - }, - "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", - "id": "12x5fAPl1U05wUHCI5O0uq", - "name": "Right-O", - "type": "artist", - "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" - }, - "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", - "id": "12x5fAPl1U05wUHCI5O0uq", - "name": "Right-O", - "type": "artist", - "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" + { + "added_at": "2017-10-27T06:59:09Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/5hXgjTSvzx1CtmTtRlCOTZ" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3JRrxifzOpGOalOfGHEJNB" - }, - "href": "https://api.spotify.com/v1/artists/3JRrxifzOpGOalOfGHEJNB", - "id": "3JRrxifzOpGOalOfGHEJNB", - "name": "Tyler Sjöström", - "type": "artist", - "uri": "spotify:artist:3JRrxifzOpGOalOfGHEJNB" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "DJ", - "ZM", - "CG", - "TJ", - "VE", - "ET" - ], - "disc_number": 1, - "duration_ms": 216920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj" - }, - "href": "https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj", - "id": "2h07NImWicduAsv0P1YAJj", - "name": "Mind Control (feat. Tyler Sjöström)", - "preview_url": "https://p.scdn.co/mp3-preview/5e02cb3eff68df8259c3fb8f271c305fb33132f1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2h07NImWicduAsv0P1YAJj", - "is_local": false + "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ", + "id": "5hXgjTSvzx1CtmTtRlCOTZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e", + "height": 64, + "width": 64 + } + ], + "name": "Under the Covers, Vol. II", + "release_date": "2017-10-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5hXgjTSvzx1CtmTtRlCOTZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 281845, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" + }, + "href": "https://api.spotify.com/v1/tracks/0fpkBN2LzdoK4Tye8xKHj8", + "id": "0fpkBN2LzdoK4Tye8xKHj8", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" + }, + "href": "https://api.spotify.com/v1/tracks/5IHEdF6MgXf40QE3RDHtzt", + "id": "5IHEdF6MgXf40QE3RDHtzt", + "type": "track", + "uri": "spotify:track:5IHEdF6MgXf40QE3RDHtzt" + }, + "name": "Africa", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0fpkBN2LzdoK4Tye8xKHj8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267838, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" + }, + "href": "https://api.spotify.com/v1/tracks/3F8hWUkNzeLUUhUZeLkV81", + "id": "3F8hWUkNzeLUUhUZeLkV81", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" + }, + "href": "https://api.spotify.com/v1/tracks/2GN3Rt5qC68aZvw8zmtTkC", + "id": "2GN3Rt5qC68aZvw8zmtTkC", + "type": "track", + "uri": "spotify:track:2GN3Rt5qC68aZvw8zmtTkC" + }, + "name": "More Than a Feeling", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3F8hWUkNzeLUUhUZeLkV81", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262142, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" + }, + "href": "https://api.spotify.com/v1/tracks/1HMNvplSW6H9PV0fuetvTr", + "id": "1HMNvplSW6H9PV0fuetvTr", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" + }, + "href": "https://api.spotify.com/v1/tracks/1kyZdBlUpvZFPZdhxQvsVj", + "id": "1kyZdBlUpvZFPZdhxQvsVj", + "type": "track", + "uri": "spotify:track:1kyZdBlUpvZFPZdhxQvsVj" + }, + "name": "Limelight", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1HMNvplSW6H9PV0fuetvTr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 223300, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" + }, + "href": "https://api.spotify.com/v1/tracks/2qGsVqQJFtknAtR37CAttT", + "id": "2qGsVqQJFtknAtR37CAttT", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" + }, + "href": "https://api.spotify.com/v1/tracks/6QTuFdY6uZixx4NkRmVJi3", + "id": "6QTuFdY6uZixx4NkRmVJi3", + "type": "track", + "uri": "spotify:track:6QTuFdY6uZixx4NkRmVJi3" + }, + "name": "Pour Some Sugar on Me", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2qGsVqQJFtknAtR37CAttT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262883, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" + }, + "href": "https://api.spotify.com/v1/tracks/2fVCjb09bMzkiozFRQy2Cl", + "id": "2fVCjb09bMzkiozFRQy2Cl", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" + }, + "href": "https://api.spotify.com/v1/tracks/1RSB4C6tFOrbRgQhklvETU", + "id": "1RSB4C6tFOrbRgQhklvETU", + "type": "track", + "uri": "spotify:track:1RSB4C6tFOrbRgQhklvETU" + }, + "name": "Something About You", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:2fVCjb09bMzkiozFRQy2Cl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 321158, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" + }, + "href": "https://api.spotify.com/v1/tracks/53RvyCGHmdcGisi7ohScVb", + "id": "53RvyCGHmdcGisi7ohScVb", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" + }, + "href": "https://api.spotify.com/v1/tracks/43Mb0MmXn8tCa2WFnuG8Ll", + "id": "43Mb0MmXn8tCa2WFnuG8Ll", + "type": "track", + "uri": "spotify:track:43Mb0MmXn8tCa2WFnuG8Ll" + }, + "name": "In Your Eyes", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:53RvyCGHmdcGisi7ohScVb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203705, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" + }, + "href": "https://api.spotify.com/v1/tracks/0qi8fD0IVKSggOYHPhQv95", + "id": "0qi8fD0IVKSggOYHPhQv95", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" + }, + "href": "https://api.spotify.com/v1/tracks/3WQGwy4LNHMmeeb2PDfgWo", + "id": "3WQGwy4LNHMmeeb2PDfgWo", + "type": "track", + "uri": "spotify:track:3WQGwy4LNHMmeeb2PDfgWo" + }, + "name": "Heat of the Moment", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0qi8fD0IVKSggOYHPhQv95", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 245947, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" + }, + "href": "https://api.spotify.com/v1/tracks/6jejZfb7GilMwqfUQDKFCy", + "id": "6jejZfb7GilMwqfUQDKFCy", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" + }, + "href": "https://api.spotify.com/v1/tracks/7fX3wR67GCCvVOAf3G8KRE", + "id": "7fX3wR67GCCvVOAf3G8KRE", + "type": "track", + "uri": "spotify:track:7fX3wR67GCCvVOAf3G8KRE" + }, + "name": "You Spin Me Round (Like a Record)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6jejZfb7GilMwqfUQDKFCy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 282929, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" + }, + "href": "https://api.spotify.com/v1/tracks/6GuZK6T75DshC2QiYPBKV0", + "id": "6GuZK6T75DshC2QiYPBKV0", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" + }, + "href": "https://api.spotify.com/v1/tracks/1UJIy63m1gIRwG8pnlwOuA", + "id": "1UJIy63m1gIRwG8pnlwOuA", + "type": "track", + "uri": "spotify:track:1UJIy63m1gIRwG8pnlwOuA" + }, + "name": "Don't Lose My Number", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6GuZK6T75DshC2QiYPBKV0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 205357, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" + }, + "href": "https://api.spotify.com/v1/tracks/0x3VVm9d10EU5tdwqJ4k9J", + "id": "0x3VVm9d10EU5tdwqJ4k9J", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" + }, + "href": "https://api.spotify.com/v1/tracks/6wgaV6DPkO3Gi2AmN1uYJn", + "id": "6wgaV6DPkO3Gi2AmN1uYJn", + "type": "track", + "uri": "spotify:track:6wgaV6DPkO3Gi2AmN1uYJn" + }, + "name": "I Wish", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:0x3VVm9d10EU5tdwqJ4k9J", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233167, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" + }, + "href": "https://api.spotify.com/v1/tracks/7iOAjvVx8JS3j9ZvcJZzaL", + "id": "7iOAjvVx8JS3j9ZvcJZzaL", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" + }, + "href": "https://api.spotify.com/v1/tracks/3zWUeG4zGXdCrcHX5eGxId", + "id": "3zWUeG4zGXdCrcHX5eGxId", + "type": "track", + "uri": "spotify:track:3zWUeG4zGXdCrcHX5eGxId" + }, + "name": "Your Wildest Dreams", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7iOAjvVx8JS3j9ZvcJZzaL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 250862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" + }, + "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", + "id": "6UbGGbBpSfmFDyG17OFuId", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" + }, + "href": "https://api.spotify.com/v1/tracks/3lH4ASiSIFbmyivT3WD6Tp", + "id": "3lH4ASiSIFbmyivT3WD6Tp", + "type": "track", + "uri": "spotify:track:3lH4ASiSIFbmyivT3WD6Tp" + }, + "name": "Rocket Man", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2017 Ninja Sex Party", "type": "C" }, + { "text": "2017 Ninja Sex Party", "type": "P" } + ], + "external_ids": { "upc": "191924181712" }, + "genres": [], + "label": "Ninja Sex Party", + "popularity": 0 } - ] - }, - "copyrights": [ - { - "text": "2017 Independent", - "type": "C" - }, - { - "text": "2017 Independent", - "type": "P" - } - ], - "external_ids": { - "upc": "859721943291" - }, - "genres": [], - "label": "Independent", - "popularity": 0 - } - }, - { - "added_at": "2017-10-27T06:59:09Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/5hXgjTSvzx1CtmTtRlCOTZ" }, - "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ?locale=en-US%2Cen%3Bq%3D0.5", - "id": "5hXgjTSvzx1CtmTtRlCOTZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e", - "height": 64, - "width": 64 - } - ], - "name": "Under the Covers, Vol. II", - "release_date": "2017-10-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5hXgjTSvzx1CtmTtRlCOTZ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 281845, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" - }, - "href": "https://api.spotify.com/v1/tracks/29ulX8eaHMuvvpxMypnbBf", - "id": "29ulX8eaHMuvvpxMypnbBf", - "linked_from": { + { + "added_at": "2017-09-17T20:15:03Z", + "album": { + "album_type": "album", + "total_tracks": 15, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" + "spotify": "https://open.spotify.com/album/6cyUcKNdyK1NRBQ7vjEwVY" }, - "href": "https://api.spotify.com/v1/tracks/5IHEdF6MgXf40QE3RDHtzt", - "id": "5IHEdF6MgXf40QE3RDHtzt", - "type": "track", - "uri": "spotify:track:5IHEdF6MgXf40QE3RDHtzt" - }, - "name": "Africa", - "preview_url": "https://p.scdn.co/mp3-preview/5004216521e53106f36f8d46c65bd0b6beb54cfb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:29ulX8eaHMuvvpxMypnbBf", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 267838, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" - }, - "href": "https://api.spotify.com/v1/tracks/39DSj27ujl9BihMu43sTw1", - "id": "39DSj27ujl9BihMu43sTw1", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" + "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY", + "id": "6cyUcKNdyK1NRBQ7vjEwVY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873", + "height": 64, + "width": 64 + } + ], + "name": "Wonderland (Deluxe)", + "release_date": "2017-03-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6cyUcKNdyK1NRBQ7vjEwVY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 15, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 293266, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" + }, + "href": "https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F", + "id": "4BlCSLODDzs7WObKGS8v0F", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" + }, + "href": "https://api.spotify.com/v1/tracks/4KN1xC3IVZCA5c5h5yIHsH", + "id": "4KN1xC3IVZCA5c5h5yIHsH", + "type": "track", + "uri": "spotify:track:4KN1xC3IVZCA5c5h5yIHsH" + }, + "name": "Wonderland", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4BlCSLODDzs7WObKGS8v0F", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" + }, + "href": "https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk", + "id": "0dhMVWyuExZRNEDcSaxcpk", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" + }, + "href": "https://api.spotify.com/v1/tracks/1GlyElASkmRfmPIEfxMlTC", + "id": "1GlyElASkmRfmPIEfxMlTC", + "type": "track", + "uri": "spotify:track:1GlyElASkmRfmPIEfxMlTC" + }, + "name": "Giants", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0dhMVWyuExZRNEDcSaxcpk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 209720, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" + }, + "href": "https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs", + "id": "3V3zCg3kqfeag16CRxyOOs", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" + }, + "href": "https://api.spotify.com/v1/tracks/66W3clk73gnkw3E1aflNrP", + "id": "66W3clk73gnkw3E1aflNrP", + "type": "track", + "uri": "spotify:track:66W3clk73gnkw3E1aflNrP" + }, + "name": "New Day", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3V3zCg3kqfeag16CRxyOOs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 209106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" + }, + "href": "https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq", + "id": "38Uy1sMppejotYXJUqPUYq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" + }, + "href": "https://api.spotify.com/v1/tracks/1F0ZBh5thKn3aL8oEk0eyJ", + "id": "1F0ZBh5thKn3aL8oEk0eyJ", + "type": "track", + "uri": "spotify:track:1F0ZBh5thKn3aL8oEk0eyJ" + }, + "name": "Lucky Stars", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:38Uy1sMppejotYXJUqPUYq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233906, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" + }, + "href": "https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16", + "id": "7437sm1u9zsNAtFmH1ZE16", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" + }, + "href": "https://api.spotify.com/v1/tracks/2T2S4nzIZLr9wSiFbEntsW", + "id": "2T2S4nzIZLr9wSiFbEntsW", + "type": "track", + "uri": "spotify:track:2T2S4nzIZLr9wSiFbEntsW" + }, + "name": "And The Band Plays", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7437sm1u9zsNAtFmH1ZE16", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 194106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" + }, + "href": "https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36", + "id": "2kIqgQtq2yHCwkTKS4Vs36", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" + }, + "href": "https://api.spotify.com/v1/tracks/4hIimoY7T2xMWkVIlBzE9i", + "id": "4hIimoY7T2xMWkVIlBzE9i", + "type": "track", + "uri": "spotify:track:4hIimoY7T2xMWkVIlBzE9i" + }, + "name": "Superstar", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2kIqgQtq2yHCwkTKS4Vs36", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 224800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" + }, + "href": "https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8", + "id": "1T5CW62fLSdOLsRT0BUir8", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" + }, + "href": "https://api.spotify.com/v1/tracks/5JTQ4h07j2UwgL32YFvkLf", + "id": "5JTQ4h07j2UwgL32YFvkLf", + "type": "track", + "uri": "spotify:track:5JTQ4h07j2UwgL32YFvkLf" + }, + "name": "Hope", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1T5CW62fLSdOLsRT0BUir8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 175040, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" + }, + "href": "https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY", + "id": "51jxNWFFT5WUXIErQzwiUY", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" + }, + "href": "https://api.spotify.com/v1/tracks/1stKEQ8sgdcYGlasyTNFRx", + "id": "1stKEQ8sgdcYGlasyTNFRx", + "type": "track", + "uri": "spotify:track:1stKEQ8sgdcYGlasyTNFRx" + }, + "name": "River", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:51jxNWFFT5WUXIErQzwiUY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 196453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" + }, + "href": "https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm", + "id": "018jJKmcAvODfvyNuBfcjm", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" + }, + "href": "https://api.spotify.com/v1/tracks/4Agh7A8QEcK6ojtTTKONFK", + "id": "4Agh7A8QEcK6ojtTTKONFK", + "type": "track", + "uri": "spotify:track:4Agh7A8QEcK6ojtTTKONFK" + }, + "name": "The Last Poet", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:018jJKmcAvODfvyNuBfcjm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 252760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" + }, + "href": "https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J", + "id": "6RxdVdQS85HYIpXwJw1j6J", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" + }, + "href": "https://api.spotify.com/v1/tracks/0EiDO4qFMDbaKe4ETIz0ur", + "id": "0EiDO4qFMDbaKe4ETIz0ur", + "type": "track", + "uri": "spotify:track:0EiDO4qFMDbaKe4ETIz0ur" + }, + "name": "Every Revolution", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6RxdVdQS85HYIpXwJw1j6J", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 269466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" + }, + "href": "https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST", + "id": "0ONIdjj0gIWoA8vOPlM9ST", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" + }, + "href": "https://api.spotify.com/v1/tracks/4Lx8xU5DQOmnNNCpMOOaoz", + "id": "4Lx8xU5DQOmnNNCpMOOaoz", + "type": "track", + "uri": "spotify:track:4Lx8xU5DQOmnNNCpMOOaoz" + }, + "name": "It's All For You", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0ONIdjj0gIWoA8vOPlM9ST", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 199386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" + }, + "href": "https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9", + "id": "3eldJOi7FuF7LXoWRneab9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" + }, + "href": "https://api.spotify.com/v1/tracks/0Ucqe7Z74UP1DyNcGLiiEH", + "id": "0Ucqe7Z74UP1DyNcGLiiEH", + "type": "track", + "uri": "spotify:track:0Ucqe7Z74UP1DyNcGLiiEH" + }, + "name": "Don't Give Up On Me", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3eldJOi7FuF7LXoWRneab9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 269733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" + }, + "href": "https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva", + "id": "6yH5jYImETi3IZwAZY1gva", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" + }, + "href": "https://api.spotify.com/v1/tracks/1yu6lK4SPpvv1b9OtUZ50V", + "id": "1yu6lK4SPpvv1b9OtUZ50V", + "type": "track", + "uri": "spotify:track:1yu6lK4SPpvv1b9OtUZ50V" + }, + "name": "Up", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:6yH5jYImETi3IZwAZY1gva", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 261440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" + }, + "href": "https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd", + "id": "0qStm2vt5sMGgzbp68dADd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" + }, + "href": "https://api.spotify.com/v1/tracks/5cgPKFbHlpiC7OwNgRFp19", + "id": "5cgPKFbHlpiC7OwNgRFp19", + "type": "track", + "uri": "spotify:track:5cgPKFbHlpiC7OwNgRFp19" + }, + "name": "Come On Love", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0qStm2vt5sMGgzbp68dADd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01pKrlgPJhm5dB4lneYAqS" + }, + "href": "https://api.spotify.com/v1/artists/01pKrlgPJhm5dB4lneYAqS", + "id": "01pKrlgPJhm5dB4lneYAqS", + "name": "Sigma", + "type": "artist", + "uri": "spotify:artist:01pKrlgPJhm5dB4lneYAqS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" + }, + "href": "https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth", + "id": "2ddfMbBXPXgq2gjWBe0Mth", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" + }, + "href": "https://api.spotify.com/v1/tracks/4zJIKsSumCbZgcbWz1UNPL", + "id": "4zJIKsSumCbZgcbWz1UNPL", + "type": "track", + "uri": "spotify:track:4zJIKsSumCbZgcbWz1UNPL" + }, + "name": "Cry", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:2ddfMbBXPXgq2gjWBe0Mth", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/2GN3Rt5qC68aZvw8zmtTkC", - "id": "2GN3Rt5qC68aZvw8zmtTkC", - "type": "track", - "uri": "spotify:track:2GN3Rt5qC68aZvw8zmtTkC" - }, - "name": "More Than a Feeling", - "preview_url": "https://p.scdn.co/mp3-preview/30ca39e13f3a7c6ba87576547971891c1c3472d9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:39DSj27ujl9BihMu43sTw1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 262142, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" - }, - "href": "https://api.spotify.com/v1/tracks/2sZs3rISCGPRyPREHlSE0z", - "id": "2sZs3rISCGPRyPREHlSE0z", - "linked_from": { + "copyrights": [ + { "text": "\u00a9 2017 Polydor Ltd. (UK)", "type": "C" }, + { "text": "\u2117 2017 Polydor Ltd. (UK)", "type": "P" } + ], + "external_ids": { "upc": "00602557441154" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2017-08-26T22:34:42Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" + "spotify": "https://open.spotify.com/album/0fMJhuTXyqcPEP0B864j8T" }, - "href": "https://api.spotify.com/v1/tracks/1kyZdBlUpvZFPZdhxQvsVj", - "id": "1kyZdBlUpvZFPZdhxQvsVj", - "type": "track", - "uri": "spotify:track:1kyZdBlUpvZFPZdhxQvsVj" - }, - "name": "Limelight", - "preview_url": "https://p.scdn.co/mp3-preview/ab8e5b4aa5d7042957727be7e3c176698c084f78?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:2sZs3rISCGPRyPREHlSE0z", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 223300, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" - }, - "href": "https://api.spotify.com/v1/tracks/7EPD53JTcYnIPFvopzpHFc", - "id": "7EPD53JTcYnIPFvopzpHFc", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" + "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T", + "id": "0fMJhuTXyqcPEP0B864j8T", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22", + "height": 64, + "width": 64 + } + ], + "name": "Here With You", + "release_date": "2017-06-30", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0fMJhuTXyqcPEP0B864j8T", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" + }, + "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", + "id": "7f5Zgnp2spUuuzKplmRkt7", + "name": "Lost Frequencies", + "type": "artist", + "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" + }, + "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", + "id": "5TgQ66WuWkoQ2xYxaSTnVP", + "name": "Netsky", + "type": "artist", + "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" + }, + "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", + "id": "7f5Zgnp2spUuuzKplmRkt7", + "name": "Lost Frequencies", + "type": "artist", + "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" + }, + "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", + "id": "5TgQ66WuWkoQ2xYxaSTnVP", + "name": "Netsky", + "type": "artist", + "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 159023, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F" + }, + "href": "https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F", + "id": "0u6KLyKbuqAe3aiol9UV8F", + "name": "Here With You", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0u6KLyKbuqAe3aiol9UV8F", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/6QTuFdY6uZixx4NkRmVJi3", - "id": "6QTuFdY6uZixx4NkRmVJi3", - "type": "track", - "uri": "spotify:track:6QTuFdY6uZixx4NkRmVJi3" - }, - "name": "Pour Some Sugar on Me", - "preview_url": "https://p.scdn.co/mp3-preview/86a728438565541657f57d0f59c10e4baaeebbc1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:7EPD53JTcYnIPFvopzpHFc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 262883, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" - }, - "href": "https://api.spotify.com/v1/tracks/77IK5Sm5J7XWJNkUBsdGZi", - "id": "77IK5Sm5J7XWJNkUBsdGZi", - "linked_from": { + "copyrights": [ + { + "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", + "type": "C" + }, + { + "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", + "type": "P" + } + ], + "external_ids": { "upc": "8718522152665" }, + "genres": [], + "label": "Armada Music", + "popularity": 17 + } + }, + { + "added_at": "2017-08-11T16:48:33Z", + "album": { + "album_type": "single", + "total_tracks": 6, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" + "spotify": "https://open.spotify.com/album/6LaLU27ZPXimJIbpbiOahr" }, - "href": "https://api.spotify.com/v1/tracks/1RSB4C6tFOrbRgQhklvETU", - "id": "1RSB4C6tFOrbRgQhklvETU", - "type": "track", - "uri": "spotify:track:1RSB4C6tFOrbRgQhklvETU" - }, - "name": "Something About You", - "preview_url": "https://p.scdn.co/mp3-preview/a9a8a0c916813cb48a7b9cf9b37cba734bf1a8f8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:77IK5Sm5J7XWJNkUBsdGZi", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 321158, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" - }, - "href": "https://api.spotify.com/v1/tracks/3m4Lf46zw4hgNGJFjlgOJt", - "id": "3m4Lf46zw4hgNGJFjlgOJt", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" + "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr", + "id": "6LaLU27ZPXimJIbpbiOahr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27330800bfbfff51ddb031d9bd7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0230800bfbfff51ddb031d9bd7", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485130800bfbfff51ddb031d9bd7", + "height": 64, + "width": 64 + } + ], + "name": "AV\u012aCI (01)", + "release_date": "2017-08-10", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6LaLU27ZPXimJIbpbiOahr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 6, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2fVW2ix4ANKiofDZIsy1XR" + }, + "href": "https://api.spotify.com/v1/artists/2fVW2ix4ANKiofDZIsy1XR", + "id": "2fVW2ix4ANKiofDZIsy1XR", + "name": "Vargas & Lagola", + "type": "artist", + "uri": "spotify:artist:2fVW2ix4ANKiofDZIsy1XR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 159863, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" + }, + "href": "https://api.spotify.com/v1/tracks/79UX8fkSsowWI1HOd8VoYt", + "id": "79UX8fkSsowWI1HOd8VoYt", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" + }, + "href": "https://api.spotify.com/v1/tracks/5wl32jJoBEyWUaDOtJVoMo", + "id": "5wl32jJoBEyWUaDOtJVoMo", + "type": "track", + "uri": "spotify:track:5wl32jJoBEyWUaDOtJVoMo" + }, + "name": "Friend Of Mine (feat. Vargas & Lagola)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:79UX8fkSsowWI1HOd8VoYt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5CCwRZC6euC8Odo6y9X8jr" + }, + "href": "https://api.spotify.com/v1/artists/5CCwRZC6euC8Odo6y9X8jr", + "id": "5CCwRZC6euC8Odo6y9X8jr", + "name": "Rita Ora", + "type": "artist", + "uri": "spotify:artist:5CCwRZC6euC8Odo6y9X8jr" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 181812, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" + }, + "href": "https://api.spotify.com/v1/tracks/75NhhYjHO43mvZgYtnXgti", + "id": "75NhhYjHO43mvZgYtnXgti", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" + }, + "href": "https://api.spotify.com/v1/tracks/7DoN0sCGIT9IcLrtBDm4f0", + "id": "7DoN0sCGIT9IcLrtBDm4f0", + "type": "track", + "uri": "spotify:track:7DoN0sCGIT9IcLrtBDm4f0" + }, + "name": "Lonely Together (feat. Rita Ora)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:75NhhYjHO43mvZgYtnXgti", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5gw5ANPCVcxU0maLiGRzzP" + }, + "href": "https://api.spotify.com/v1/artists/5gw5ANPCVcxU0maLiGRzzP", + "id": "5gw5ANPCVcxU0maLiGRzzP", + "name": "Billy Raffoul", + "type": "artist", + "uri": "spotify:artist:5gw5ANPCVcxU0maLiGRzzP" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 207545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" + }, + "href": "https://api.spotify.com/v1/tracks/630svau24EHHzw1kNk0Bdq", + "id": "630svau24EHHzw1kNk0Bdq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" + }, + "href": "https://api.spotify.com/v1/tracks/7GaiXtje26gnTVWE1iCcHl", + "id": "7GaiXtje26gnTVWE1iCcHl", + "type": "track", + "uri": "spotify:track:7GaiXtje26gnTVWE1iCcHl" + }, + "name": "You Be Love (feat. Billy Raffoul)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:630svau24EHHzw1kNk0Bdq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" + }, + "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", + "id": "5JYo7gm2dkyLLlWHjxS7Dy", + "name": "Sandro Cavazza", + "type": "artist", + "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 181672, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" + }, + "href": "https://api.spotify.com/v1/tracks/6Pgkp4qUoTmJIPn7ReaGxL", + "id": "6Pgkp4qUoTmJIPn7ReaGxL", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" + }, + "href": "https://api.spotify.com/v1/tracks/6WbADFqMvR8N5u0BvtsWQE", + "id": "6WbADFqMvR8N5u0BvtsWQE", + "type": "track", + "uri": "spotify:track:6WbADFqMvR8N5u0BvtsWQE" + }, + "name": "Without You (feat. Sandro Cavazza)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6Pgkp4qUoTmJIPn7ReaGxL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2VAnyOxzJuSAj7XIuEOT38" + }, + "href": "https://api.spotify.com/v1/artists/2VAnyOxzJuSAj7XIuEOT38", + "id": "2VAnyOxzJuSAj7XIuEOT38", + "name": "AlunaGeorge", + "type": "artist", + "uri": "spotify:artist:2VAnyOxzJuSAj7XIuEOT38" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 185454, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" + }, + "href": "https://api.spotify.com/v1/tracks/1vkXc8Tz3dZGNZoU2WF3la", + "id": "1vkXc8Tz3dZGNZoU2WF3la", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" + }, + "href": "https://api.spotify.com/v1/tracks/4lwSYcFSDeyY8jdSedZH4j", + "id": "4lwSYcFSDeyY8jdSedZH4j", + "type": "track", + "uri": "spotify:track:4lwSYcFSDeyY8jdSedZH4j" + }, + "name": "What Would I Change It To (feat. AlunaGeorge)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1vkXc8Tz3dZGNZoU2WF3la", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" + }, + "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", + "id": "5JYo7gm2dkyLLlWHjxS7Dy", + "name": "Sandro Cavazza", + "type": "artist", + "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 157152, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" + }, + "href": "https://api.spotify.com/v1/tracks/6i3WMnuvd8DtczaGIMJvwC", + "id": "6i3WMnuvd8DtczaGIMJvwC", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" + }, + "href": "https://api.spotify.com/v1/tracks/5VsJtruWxQBZ3DVD0LXPZn", + "id": "5VsJtruWxQBZ3DVD0LXPZn", + "type": "track", + "uri": "spotify:track:5VsJtruWxQBZ3DVD0LXPZn" + }, + "name": "So Much Better - Avicii Remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6i3WMnuvd8DtczaGIMJvwC", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/43Mb0MmXn8tCa2WFnuG8Ll", - "id": "43Mb0MmXn8tCa2WFnuG8Ll", - "type": "track", - "uri": "spotify:track:43Mb0MmXn8tCa2WFnuG8Ll" - }, - "name": "In Your Eyes", - "preview_url": "https://p.scdn.co/mp3-preview/b2a21634aa9b66245897f4ae194f1020a814bc72?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:3m4Lf46zw4hgNGJFjlgOJt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203705, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" - }, - "href": "https://api.spotify.com/v1/tracks/6fIOFyrzPiuI6lC12cpUYo", - "id": "6fIOFyrzPiuI6lC12cpUYo", - "linked_from": { + "copyrights": [ + { + "text": "\u00a9 2017 Avicii Music AB, under exclusive license to Universal Music AB", + "type": "C" + }, + { + "text": "\u2117 2017 Avicii Music AB, under exclusive license to Universal Music AB", + "type": "P" + } + ], + "external_ids": { "upc": "00602557906585" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 1 + } + }, + { + "added_at": "2017-05-23T10:38:32Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" + "spotify": "https://open.spotify.com/album/0gIYOk2pcLnZONGE0N9X5p" }, - "href": "https://api.spotify.com/v1/tracks/3WQGwy4LNHMmeeb2PDfgWo", - "id": "3WQGwy4LNHMmeeb2PDfgWo", - "type": "track", - "uri": "spotify:track:3WQGwy4LNHMmeeb2PDfgWo" - }, - "name": "Heat of the Moment", - "preview_url": "https://p.scdn.co/mp3-preview/4e34ad28d6029d05f6356db783cfa64871c4edee?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:6fIOFyrzPiuI6lC12cpUYo", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 245947, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" - }, - "href": "https://api.spotify.com/v1/tracks/1U4pwphUiDnEY1Zk8tB74O", - "id": "1U4pwphUiDnEY1Zk8tB74O", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" + "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p", + "id": "0gIYOk2pcLnZONGE0N9X5p", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273cfb930f506a0243b1f498a1a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02cfb930f506a0243b1f498a1a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851cfb930f506a0243b1f498a1a", + "height": 64, + "width": 64 + } + ], + "name": "Up Till Dawn (On The Move)", + "release_date": "2017-04-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0gIYOk2pcLnZONGE0N9X5p", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" + }, + "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", + "id": "5wwneIFdawNgQ7GvKK29Z3", + "name": "Lucas & Steve", + "type": "artist", + "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" + }, + "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", + "id": "5wwneIFdawNgQ7GvKK29Z3", + "name": "Lucas & Steve", + "type": "artist", + "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 186405, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" + }, + "href": "https://api.spotify.com/v1/tracks/6wefD5q8rXOg3xHTUZjyio", + "id": "6wefD5q8rXOg3xHTUZjyio", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" + }, + "href": "https://api.spotify.com/v1/tracks/6kZP5MRp51KZJYovS1xIVD", + "id": "6kZP5MRp51KZJYovS1xIVD", + "type": "track", + "uri": "spotify:track:6kZP5MRp51KZJYovS1xIVD" + }, + "name": "Up Till Dawn (On The Move)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6wefD5q8rXOg3xHTUZjyio", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/7fX3wR67GCCvVOAf3G8KRE", - "id": "7fX3wR67GCCvVOAf3G8KRE", - "type": "track", - "uri": "spotify:track:7fX3wR67GCCvVOAf3G8KRE" - }, - "name": "You Spin Me Round (Like a Record)", - "preview_url": "https://p.scdn.co/mp3-preview/3c5918b0d4b4e0502f2e1ecae59acbe27220f920?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:1U4pwphUiDnEY1Zk8tB74O", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 282929, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" - }, - "href": "https://api.spotify.com/v1/tracks/2B2dzEwWOilmaUXaUeN7uk", - "id": "2B2dzEwWOilmaUXaUeN7uk", - "linked_from": { + "copyrights": [ + { "text": "2017 SpinninRecords.com", "type": "C" }, + { "text": "2017 SpinninRecords.com", "type": "P" } + ], + "external_ids": { "upc": "8712944555196" }, + "genres": [], + "label": "Spinnin' Records", + "popularity": 0 + } + }, + { + "added_at": "2017-02-06T18:22:32Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" + "spotify": "https://open.spotify.com/album/3KzCJaaRVza9FnSsqtAFeO" }, - "href": "https://api.spotify.com/v1/tracks/1UJIy63m1gIRwG8pnlwOuA", - "id": "1UJIy63m1gIRwG8pnlwOuA", - "type": "track", - "uri": "spotify:track:1UJIy63m1gIRwG8pnlwOuA" - }, - "name": "Don't Lose My Number", - "preview_url": "https://p.scdn.co/mp3-preview/67c3708c6ea08c2cca29cd987e295da2a803c542?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:2B2dzEwWOilmaUXaUeN7uk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 205357, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" - }, - "href": "https://api.spotify.com/v1/tracks/7vqBLy4AKm9k437P0Gy7g6", - "id": "7vqBLy4AKm9k437P0Gy7g6", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" + "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO", + "id": "3KzCJaaRVza9FnSsqtAFeO", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273156aeddf54ed40b1d9d30c9f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02156aeddf54ed40b1d9d30c9f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851156aeddf54ed40b1d9d30c9f", + "height": 64, + "width": 64 + } + ], + "name": "Believer", + "release_date": "2017-01-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3KzCJaaRVza9FnSsqtAFeO", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" + }, + "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", + "id": "53XhwfbYqKCa1cC15pYq2q", + "name": "Imagine Dragons", + "type": "artist", + "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" + }, + "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", + "id": "53XhwfbYqKCa1cC15pYq2q", + "name": "Imagine Dragons", + "type": "artist", + "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203782, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" + }, + "href": "https://api.spotify.com/v1/tracks/0pqnGHJpmpxLKifKRmU6WP", + "id": "0pqnGHJpmpxLKifKRmU6WP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" + }, + "href": "https://api.spotify.com/v1/tracks/6VRghJeP6I0w1KxkdWFfIh", + "id": "6VRghJeP6I0w1KxkdWFfIh", + "type": "track", + "uri": "spotify:track:6VRghJeP6I0w1KxkdWFfIh" + }, + "name": "Believer", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0pqnGHJpmpxLKifKRmU6WP", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/6wgaV6DPkO3Gi2AmN1uYJn", - "id": "6wgaV6DPkO3Gi2AmN1uYJn", - "type": "track", - "uri": "spotify:track:6wgaV6DPkO3Gi2AmN1uYJn" - }, - "name": "I Wish", - "preview_url": "https://p.scdn.co/mp3-preview/38fee757c1a5d2c7125d4f87f62c6779d982e13b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:7vqBLy4AKm9k437P0Gy7g6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233167, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" - }, - "href": "https://api.spotify.com/v1/tracks/39GgQ44f6TBKV4EhLfwi4Z", - "id": "39GgQ44f6TBKV4EhLfwi4Z", - "linked_from": { + "copyrights": [ + { + "text": "\u00a9 2017 KIDinaKORNER/Interscope Records", + "type": "C" + }, + { + "text": "\u2117 2017 KIDinaKORNER/Interscope Records", + "type": "P" + } + ], + "external_ids": { "upc": "00602557443325" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2017-01-19T12:31:37Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" + "spotify": "https://open.spotify.com/album/64vx3cUb97lQGlgt8zozWL" }, - "href": "https://api.spotify.com/v1/tracks/3zWUeG4zGXdCrcHX5eGxId", - "id": "3zWUeG4zGXdCrcHX5eGxId", - "type": "track", - "uri": "spotify:track:3zWUeG4zGXdCrcHX5eGxId" - }, - "name": "Your Wildest Dreams", - "preview_url": "https://p.scdn.co/mp3-preview/36345fbb7dc4d617b8c680564e05b4564e1ad12a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:39GgQ44f6TBKV4EhLfwi4Z", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 250862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" - }, - "href": "https://api.spotify.com/v1/tracks/6xMWP3oKLuY2jkikQ54r4X", - "id": "6xMWP3oKLuY2jkikQ54r4X", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" + "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL", + "id": "64vx3cUb97lQGlgt8zozWL", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e9cb236aa581ad999b3a73b7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e9cb236aa581ad999b3a73b7", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e9cb236aa581ad999b3a73b7", + "height": 64, + "width": 64 + } + ], + "name": "Paris", + "release_date": "2017-01-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:64vx3cUb97lQGlgt8zozWL", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" + }, + "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", + "id": "69GGBxA162lTqCwzJG5jLp", + "name": "The Chainsmokers", + "type": "artist", + "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" + }, + "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", + "id": "69GGBxA162lTqCwzJG5jLp", + "name": "The Chainsmokers", + "type": "artist", + "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221509, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15vzANxN8G9wWfwAJLLMCg" + }, + "href": "https://api.spotify.com/v1/tracks/15vzANxN8G9wWfwAJLLMCg", + "id": "15vzANxN8G9wWfwAJLLMCg", + "name": "Paris", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:15vzANxN8G9wWfwAJLLMCg", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/3lH4ASiSIFbmyivT3WD6Tp", - "id": "3lH4ASiSIFbmyivT3WD6Tp", - "type": "track", - "uri": "spotify:track:3lH4ASiSIFbmyivT3WD6Tp" - }, - "name": "Rocket Man", - "preview_url": "https://p.scdn.co/mp3-preview/e87d4a418999ef44c20edf10ae514f78b8ef50c7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:6xMWP3oKLuY2jkikQ54r4X", - "is_local": false + "copyrights": [ + { + "text": "(P) 2017 Disruptor Records/Columbia Records", + "type": "P" + } + ], + "external_ids": { "upc": "886446299686" }, + "genres": [], + "label": "Disruptor Records/Columbia", + "popularity": 52 } - ] - }, - "copyrights": [ - { - "text": "2017 Ninja Sex Party", - "type": "C" - }, - { - "text": "2017 Ninja Sex Party", - "type": "P" - } - ], - "external_ids": { - "upc": "191924181712" - }, - "genres": [], - "label": "Ninja Sex Party", - "popularity": 0 - } - }, - { - "added_at": "2017-09-17T20:15:03Z", - "album": { - "album_type": "album", - "total_tracks": 15, - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/6cyUcKNdyK1NRBQ7vjEwVY" }, - "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY?locale=en-US%2Cen%3Bq%3D0.5", - "id": "6cyUcKNdyK1NRBQ7vjEwVY", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873", - "height": 64, - "width": 64 - } - ], - "name": "Wonderland (Deluxe)", - "release_date": "2017-03-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6cyUcKNdyK1NRBQ7vjEwVY", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 15, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 293266, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" - }, - "href": "https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F", - "id": "4BlCSLODDzs7WObKGS8v0F", - "linked_from": { + { + "added_at": "2017-01-17T19:01:16Z", + "album": { + "album_type": "single", + "total_tracks": 6, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" + "spotify": "https://open.spotify.com/album/0of0qWNbNmUck9ODJzBPA3" }, - "href": "https://api.spotify.com/v1/tracks/4KN1xC3IVZCA5c5h5yIHsH", - "id": "4KN1xC3IVZCA5c5h5yIHsH", - "type": "track", - "uri": "spotify:track:4KN1xC3IVZCA5c5h5yIHsH" - }, - "name": "Wonderland", - "preview_url": "https://p.scdn.co/mp3-preview/51ebd81fc4553555b6da98ccfa04d62c873d568d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4BlCSLODDzs7WObKGS8v0F", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233613, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" - }, - "href": "https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk", - "id": "0dhMVWyuExZRNEDcSaxcpk", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" + "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3", + "id": "0of0qWNbNmUck9ODJzBPA3", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731997f03aceb5147e33e550f8", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021997f03aceb5147e33e550f8", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511997f03aceb5147e33e550f8", + "height": 64, + "width": 64 + } + ], + "name": "Nerds by Nature - EP", + "release_date": "2017-01-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0of0qWNbNmUck9ODJzBPA3", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 6, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 249979, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" + }, + "href": "https://api.spotify.com/v1/tracks/6MXPrUXjd3i67WYsNmq61D", + "id": "6MXPrUXjd3i67WYsNmq61D", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" + }, + "href": "https://api.spotify.com/v1/tracks/2XRmB8LdCrvO0aCNcSxhHc", + "id": "2XRmB8LdCrvO0aCNcSxhHc", + "type": "track", + "uri": "spotify:track:2XRmB8LdCrvO0aCNcSxhHc" + }, + "name": "Speed of Light", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6MXPrUXjd3i67WYsNmq61D", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BeMe0yy4Sqo29rnqkZ1tc" + }, + "href": "https://api.spotify.com/v1/artists/1BeMe0yy4Sqo29rnqkZ1tc", + "id": "1BeMe0yy4Sqo29rnqkZ1tc", + "name": "Desir\u00e9e Dawson", + "type": "artist", + "uri": "spotify:artist:1BeMe0yy4Sqo29rnqkZ1tc" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 236198, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" + }, + "href": "https://api.spotify.com/v1/tracks/3ypAa7Vkji9z5GsoXaT5ic", + "id": "3ypAa7Vkji9z5GsoXaT5ic", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" + }, + "href": "https://api.spotify.com/v1/tracks/6x0GHgv2iCpXf8w9VsrZCi", + "id": "6x0GHgv2iCpXf8w9VsrZCi", + "type": "track", + "uri": "spotify:track:6x0GHgv2iCpXf8w9VsrZCi" + }, + "name": "Talk About It (feat. Desir\u00e9e Dawson)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3ypAa7Vkji9z5GsoXaT5ic", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 191349, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" + }, + "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", + "id": "6tfMPcat5tsLjiKt3wfM97", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" + }, + "href": "https://api.spotify.com/v1/tracks/3hQ6oIGy3YyFdtYf8mpIGp", + "id": "3hQ6oIGy3YyFdtYf8mpIGp", + "type": "track", + "uri": "spotify:track:3hQ6oIGy3YyFdtYf8mpIGp" + }, + "name": "Melodymania", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0MYmMGmRg8CFZPNZBAdjm1" + }, + "href": "https://api.spotify.com/v1/artists/0MYmMGmRg8CFZPNZBAdjm1", + "id": "0MYmMGmRg8CFZPNZBAdjm1", + "name": "Quiet Disorder", + "type": "artist", + "uri": "spotify:artist:0MYmMGmRg8CFZPNZBAdjm1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 207871, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" + }, + "href": "https://api.spotify.com/v1/tracks/5i4d6fgqkt0rKvkyj8J48F", + "id": "5i4d6fgqkt0rKvkyj8J48F", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" + }, + "href": "https://api.spotify.com/v1/tracks/0lsxdqZj5sVGWIKse0xETh", + "id": "0lsxdqZj5sVGWIKse0xETh", + "type": "track", + "uri": "spotify:track:0lsxdqZj5sVGWIKse0xETh" + }, + "name": "Go Berzerk", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5i4d6fgqkt0rKvkyj8J48F", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 239004, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" + }, + "href": "https://api.spotify.com/v1/tracks/73nWSc3002fGRPrnFDev8x", + "id": "73nWSc3002fGRPrnFDev8x", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" + }, + "href": "https://api.spotify.com/v1/tracks/0aSbmMTb9p7OaBcOYqVksr", + "id": "0aSbmMTb9p7OaBcOYqVksr", + "type": "track", + "uri": "spotify:track:0aSbmMTb9p7OaBcOYqVksr" + }, + "name": "BAMF", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:73nWSc3002fGRPrnFDev8x", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212323, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" + }, + "href": "https://api.spotify.com/v1/tracks/1rjMexUleyOewga9qRrEqb", + "id": "1rjMexUleyOewga9qRrEqb", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" + }, + "href": "https://api.spotify.com/v1/tracks/2oxbgAkN0nJhSz9ngSSXRL", + "id": "2oxbgAkN0nJhSz9ngSSXRL", + "type": "track", + "uri": "spotify:track:2oxbgAkN0nJhSz9ngSSXRL" + }, + "name": "Blackout", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1rjMexUleyOewga9qRrEqb", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/1GlyElASkmRfmPIEfxMlTC", - "id": "1GlyElASkmRfmPIEfxMlTC", - "type": "track", - "uri": "spotify:track:1GlyElASkmRfmPIEfxMlTC" - }, - "name": "Giants", - "preview_url": "https://p.scdn.co/mp3-preview/a6f4d3dc5b6fd32457815a75a318a864ad325f03?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:0dhMVWyuExZRNEDcSaxcpk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 209720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" - }, - "href": "https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs", - "id": "3V3zCg3kqfeag16CRxyOOs", - "linked_from": { + "copyrights": [ + { "text": "2017 Monstercat", "type": "C" }, + { "text": "2017 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "859718752356" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 + } + }, + { + "added_at": "2016-12-25T00:26:44Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" + "spotify": "https://open.spotify.com/album/5TOcXQ3t05FyNZPdWOWAn4" }, - "href": "https://api.spotify.com/v1/tracks/66W3clk73gnkw3E1aflNrP", - "id": "66W3clk73gnkw3E1aflNrP", - "type": "track", - "uri": "spotify:track:66W3clk73gnkw3E1aflNrP" - }, - "name": "New Day", - "preview_url": "https://p.scdn.co/mp3-preview/c2275350f678da47127e87a1a9a3ee654d30d89b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:3V3zCg3kqfeag16CRxyOOs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 209106, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" - }, - "href": "https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq", - "id": "38Uy1sMppejotYXJUqPUYq", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" + "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4", + "id": "5TOcXQ3t05FyNZPdWOWAn4", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736f555a58589dfb4504a320de", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026f555a58589dfb4504a320de", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516f555a58589dfb4504a320de", + "height": 64, + "width": 64 + } + ], + "name": "Brand New Friend at Christmas Time", + "release_date": "2017-01-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5TOcXQ3t05FyNZPdWOWAn4", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" + }, + "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", + "id": "2kQ4uyd7WPQI9xcmeZbI0G", + "name": "The Yogscast", + "type": "artist", + "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" + }, + "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", + "id": "2kQ4uyd7WPQI9xcmeZbI0G", + "name": "The Yogscast", + "type": "artist", + "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 187499, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lsqZRyqmntgpilnjdd6gm" + }, + "href": "https://api.spotify.com/v1/tracks/4lsqZRyqmntgpilnjdd6gm", + "id": "4lsqZRyqmntgpilnjdd6gm", + "name": "Brand New Friend at Christmas Time", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lsqZRyqmntgpilnjdd6gm", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/1F0ZBh5thKn3aL8oEk0eyJ", - "id": "1F0ZBh5thKn3aL8oEk0eyJ", - "type": "track", - "uri": "spotify:track:1F0ZBh5thKn3aL8oEk0eyJ" - }, - "name": "Lucky Stars", - "preview_url": "https://p.scdn.co/mp3-preview/f28b678011e8fabba52de97070e4c7157d8d7d2b?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:38Uy1sMppejotYXJUqPUYq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233906, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" - }, - "href": "https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16", - "id": "7437sm1u9zsNAtFmH1ZE16", - "linked_from": { + "copyrights": [ + { "text": "2017 YOGSCAST STUDIOS", "type": "C" }, + { "text": "2017 YOGSCAST STUDIOS", "type": "P" } + ], + "external_ids": { "upc": "5060330600436" }, + "genres": [], + "label": "YOGSCAST STUDIOS", + "popularity": 7 + } + }, + { + "added_at": "2016-12-08T18:00:51Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" + "spotify": "https://open.spotify.com/album/4ALxbRHMIs5DBtnUaE3hBG" }, - "href": "https://api.spotify.com/v1/tracks/2T2S4nzIZLr9wSiFbEntsW", - "id": "2T2S4nzIZLr9wSiFbEntsW", - "type": "track", - "uri": "spotify:track:2T2S4nzIZLr9wSiFbEntsW" - }, - "name": "And The Band Plays", - "preview_url": "https://p.scdn.co/mp3-preview/d364f597baef05394968934c23bc059b07f071c1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:7437sm1u9zsNAtFmH1ZE16", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 194106, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" - }, - "href": "https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36", - "id": "2kIqgQtq2yHCwkTKS4Vs36", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" + "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG", + "id": "4ALxbRHMIs5DBtnUaE3hBG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27311ce9419e0e9ac0a3c5b8fcf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0211ce9419e0e9ac0a3c5b8fcf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485111ce9419e0e9ac0a3c5b8fcf", + "height": 64, + "width": 64 + } + ], + "name": "Melodymania", + "release_date": "2016-12-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4ALxbRHMIs5DBtnUaE3hBG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 191349, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" + }, + "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", + "id": "6tfMPcat5tsLjiKt3wfM97", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" + }, + "href": "https://api.spotify.com/v1/tracks/6Cyc1MlJ85UKlEE1WYWmcF", + "id": "6Cyc1MlJ85UKlEE1WYWmcF", + "type": "track", + "uri": "spotify:track:6Cyc1MlJ85UKlEE1WYWmcF" + }, + "name": "Melodymania", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/4hIimoY7T2xMWkVIlBzE9i", - "id": "4hIimoY7T2xMWkVIlBzE9i", - "type": "track", - "uri": "spotify:track:4hIimoY7T2xMWkVIlBzE9i" - }, - "name": "Superstar", - "preview_url": "https://p.scdn.co/mp3-preview/4be590ebb82158a007f178ff6710f73095170963?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:2kIqgQtq2yHCwkTKS4Vs36", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 224800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" - }, - "href": "https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8", - "id": "1T5CW62fLSdOLsRT0BUir8", - "linked_from": { + "copyrights": [ + { "text": "2016 Monstercat", "type": "C" }, + { "text": "2016 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "859718914372" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 + } + }, + { + "added_at": "2015-03-02T17:21:06Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" + "spotify": "https://open.spotify.com/album/7MKwNQ5mBmm3GAYRZI6Zxe" }, - "href": "https://api.spotify.com/v1/tracks/5JTQ4h07j2UwgL32YFvkLf", - "id": "5JTQ4h07j2UwgL32YFvkLf", - "type": "track", - "uri": "spotify:track:5JTQ4h07j2UwgL32YFvkLf" - }, - "name": "Hope", - "preview_url": "https://p.scdn.co/mp3-preview/1d37766522829a1ac460e090b0ab3a35e5130d0f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 7, - "type": "track", - "uri": "spotify:track:1T5CW62fLSdOLsRT0BUir8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 175040, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" - }, - "href": "https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY", - "id": "51jxNWFFT5WUXIErQzwiUY", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" + "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe", + "id": "7MKwNQ5mBmm3GAYRZI6Zxe", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dd85489b03fc971554fad163", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dd85489b03fc971554fad163", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dd85489b03fc971554fad163", + "height": 64, + "width": 64 + } + ], + "name": "Rise Of A Digital Nation", + "release_date": "2012-01-01", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7MKwNQ5mBmm3GAYRZI6Zxe", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 294026, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" + }, + "href": "https://api.spotify.com/v1/tracks/5jAuvjSuxiZkuHIC06tcht", + "id": "5jAuvjSuxiZkuHIC06tcht", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" + }, + "href": "https://api.spotify.com/v1/tracks/1K4If2cg7WI8dUW8fDZxFT", + "id": "1K4If2cg7WI8dUW8fDZxFT", + "type": "track", + "uri": "spotify:track:1K4If2cg7WI8dUW8fDZxFT" + }, + "name": "All Of My Angels", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5jAuvjSuxiZkuHIC06tcht", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246706, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" + }, + "href": "https://api.spotify.com/v1/tracks/7y8U4mJI4LLxwE2Sw1wmwu", + "id": "7y8U4mJI4LLxwE2Sw1wmwu", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" + }, + "href": "https://api.spotify.com/v1/tracks/1xea5ZLbyQI7nvZlceYDPs", + "id": "1xea5ZLbyQI7nvZlceYDPs", + "type": "track", + "uri": "spotify:track:1xea5ZLbyQI7nvZlceYDPs" + }, + "name": "Laser Speed Force", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7y8U4mJI4LLxwE2Sw1wmwu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 248520, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" + }, + "href": "https://api.spotify.com/v1/tracks/64AEiTYzHycNe3CDI3rDWp", + "id": "64AEiTYzHycNe3CDI3rDWp", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" + }, + "href": "https://api.spotify.com/v1/tracks/2t18dmaytbJaEiqaeCFSnp", + "id": "2t18dmaytbJaEiqaeCFSnp", + "type": "track", + "uri": "spotify:track:2t18dmaytbJaEiqaeCFSnp" + }, + "name": "Transgenic", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:64AEiTYzHycNe3CDI3rDWp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 247600, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" + }, + "href": "https://api.spotify.com/v1/tracks/6dW047Jdz5KJIFKijonoYV", + "id": "6dW047Jdz5KJIFKijonoYV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" + }, + "href": "https://api.spotify.com/v1/tracks/5oRngkDPsoILRp4S1eVPDj", + "id": "5oRngkDPsoILRp4S1eVPDj", + "type": "track", + "uri": "spotify:track:5oRngkDPsoILRp4S1eVPDj" + }, + "name": "Rise Of A Digital Nation", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6dW047Jdz5KJIFKijonoYV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 256120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" + }, + "href": "https://api.spotify.com/v1/tracks/54GRGBhoT1E9bY4VFmCG02", + "id": "54GRGBhoT1E9bY4VFmCG02", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" + }, + "href": "https://api.spotify.com/v1/tracks/635esdfKGba2fGmfhz42Mo", + "id": "635esdfKGba2fGmfhz42Mo", + "type": "track", + "uri": "spotify:track:635esdfKGba2fGmfhz42Mo" + }, + "name": "Pieces", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:54GRGBhoT1E9bY4VFmCG02", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 86080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" + }, + "href": "https://api.spotify.com/v1/tracks/6lB2UMmpjL8BlXEtR7JLP6", + "id": "6lB2UMmpjL8BlXEtR7JLP6", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" + }, + "href": "https://api.spotify.com/v1/tracks/4uqGHMeB12sAXw9RxIHHK2", + "id": "4uqGHMeB12sAXw9RxIHHK2", + "type": "track", + "uri": "spotify:track:4uqGHMeB12sAXw9RxIHHK2" + }, + "name": "Cyber Warfare", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6lB2UMmpjL8BlXEtR7JLP6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 253760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" + }, + "href": "https://api.spotify.com/v1/tracks/2jgAMjoVW1T2BGgextCquW", + "id": "2jgAMjoVW1T2BGgextCquW", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" + }, + "href": "https://api.spotify.com/v1/tracks/1A59adkyVl8oQFOtqgEYa0", + "id": "1A59adkyVl8oQFOtqgEYa0", + "type": "track", + "uri": "spotify:track:1A59adkyVl8oQFOtqgEYa0" + }, + "name": "Republic Of Gamers", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2jgAMjoVW1T2BGgextCquW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 255920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" + }, + "href": "https://api.spotify.com/v1/tracks/5kLPMs5samTF1KHSCaubbw", + "id": "5kLPMs5samTF1KHSCaubbw", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" + }, + "href": "https://api.spotify.com/v1/tracks/0Sxfvfx8q4zm1dzU0cLVPs", + "id": "0Sxfvfx8q4zm1dzU0cLVPs", + "type": "track", + "uri": "spotify:track:0Sxfvfx8q4zm1dzU0cLVPs" + }, + "name": "Battlecry", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5kLPMs5samTF1KHSCaubbw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 325880, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" + }, + "href": "https://api.spotify.com/v1/tracks/2WRZHrs3PykkeNxSYYKtdy", + "id": "2WRZHrs3PykkeNxSYYKtdy", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" + }, + "href": "https://api.spotify.com/v1/tracks/1vI1NUDpscwiJaAkGXJT5M", + "id": "1vI1NUDpscwiJaAkGXJT5M", + "type": "track", + "uri": "spotify:track:1vI1NUDpscwiJaAkGXJT5M" + }, + "name": "99", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2WRZHrs3PykkeNxSYYKtdy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 323680, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" + }, + "href": "https://api.spotify.com/v1/tracks/54DNZAJaVrE0foL1dAZHRJ", + "id": "54DNZAJaVrE0foL1dAZHRJ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" + }, + "href": "https://api.spotify.com/v1/tracks/0SPL2TapEUaVsCikoLo8J2", + "id": "0SPL2TapEUaVsCikoLo8J2", + "type": "track", + "uri": "spotify:track:0SPL2TapEUaVsCikoLo8J2" + }, + "name": "Hero", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:54DNZAJaVrE0foL1dAZHRJ", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/1stKEQ8sgdcYGlasyTNFRx", - "id": "1stKEQ8sgdcYGlasyTNFRx", - "type": "track", - "uri": "spotify:track:1stKEQ8sgdcYGlasyTNFRx" - }, - "name": "River", - "preview_url": "https://p.scdn.co/mp3-preview/51a9d667be8b01ddaa6cf57824993c3ee0aba13a?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:51jxNWFFT5WUXIErQzwiUY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 196453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" - }, - "href": "https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm", - "id": "018jJKmcAvODfvyNuBfcjm", - "linked_from": { + "copyrights": [ + { "text": "(C) 2012 Spin-Farm Oy", "type": "C" }, + { "text": "(P) 2012 Spin-Farm Oy", "type": "P" } + ], + "external_ids": { "upc": "00602537172634" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2015-01-27T17:23:11Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], "external_urls": { - "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" + "spotify": "https://open.spotify.com/album/6kqOHnshP4RMTUWKrhm6Sy" }, - "href": "https://api.spotify.com/v1/tracks/4Agh7A8QEcK6ojtTTKONFK", - "id": "4Agh7A8QEcK6ojtTTKONFK", - "type": "track", - "uri": "spotify:track:4Agh7A8QEcK6ojtTTKONFK" - }, - "name": "The Last Poet", - "preview_url": "https://p.scdn.co/mp3-preview/59076106919b3fb9d44138cf6e78e4440cbaf6f0?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:018jJKmcAvODfvyNuBfcjm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 252760, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" - }, - "href": "https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J", - "id": "6RxdVdQS85HYIpXwJw1j6J", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" + "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy", + "id": "6kqOHnshP4RMTUWKrhm6Sy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732bc58e4de7c41e84aeacee40", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022bc58e4de7c41e84aeacee40", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512bc58e4de7c41e84aeacee40", + "height": 64, + "width": 64 + } + ], + "name": "Listen", + "release_date": "2014-01-01", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6kqOHnshP4RMTUWKrhm6Sy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 250692, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/36pHJ5lqNQTLLzGTy8G7xV" + }, + "href": "https://api.spotify.com/v1/tracks/36pHJ5lqNQTLLzGTy8G7xV", + "id": "36pHJ5lqNQTLLzGTy8G7xV", + "name": "Around Town", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:36pHJ5lqNQTLLzGTy8G7xV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 237248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2xxMXbsjhqPzTYAclUOQlI" + }, + "href": "https://api.spotify.com/v1/tracks/2xxMXbsjhqPzTYAclUOQlI", + "id": "2xxMXbsjhqPzTYAclUOQlI", + "name": "Forgive & Forget", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2xxMXbsjhqPzTYAclUOQlI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 210193, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5BtyHl1eRqip2PkHhFYzHG" + }, + "href": "https://api.spotify.com/v1/tracks/5BtyHl1eRqip2PkHhFYzHG", + "id": "5BtyHl1eRqip2PkHhFYzHG", + "name": "Westside", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5BtyHl1eRqip2PkHhFYzHG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 181026, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5iRNKJoGqjD8RG7RNwOWYb" + }, + "href": "https://api.spotify.com/v1/tracks/5iRNKJoGqjD8RG7RNwOWYb", + "id": "5iRNKJoGqjD8RG7RNwOWYb", + "name": "See Me Now", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5iRNKJoGqjD8RG7RNwOWYb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 193293, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6FeAfj1h12aakG9KqK7u3u" + }, + "href": "https://api.spotify.com/v1/tracks/6FeAfj1h12aakG9KqK7u3u", + "id": "6FeAfj1h12aakG9KqK7u3u", + "name": "It Was London", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6FeAfj1h12aakG9KqK7u3u", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 221413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3huV7eiNpaQlCB3LbZi9bB" + }, + "href": "https://api.spotify.com/v1/tracks/3huV7eiNpaQlCB3LbZi9bB", + "id": "3huV7eiNpaQlCB3LbZi9bB", + "name": "Bad Habit", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3huV7eiNpaQlCB3LbZi9bB", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 163733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0mkxwzF6TYJh8xIJ1MCpy1" + }, + "href": "https://api.spotify.com/v1/tracks/0mkxwzF6TYJh8xIJ1MCpy1", + "id": "0mkxwzF6TYJh8xIJ1MCpy1", + "name": "Down", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0mkxwzF6TYJh8xIJ1MCpy1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 180773, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PTEa5uZirN5C86dvq7vWt" + }, + "href": "https://api.spotify.com/v1/tracks/4PTEa5uZirN5C86dvq7vWt", + "id": "4PTEa5uZirN5C86dvq7vWt", + "name": "Dreams", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4PTEa5uZirN5C86dvq7vWt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 246106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/52xzfQXzhRFTcuXVIAdI7H" + }, + "href": "https://api.spotify.com/v1/tracks/52xzfQXzhRFTcuXVIAdI7H", + "id": "52xzfQXzhRFTcuXVIAdI7H", + "name": "Are We Electric", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:52xzfQXzhRFTcuXVIAdI7H", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 194613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15aMD4JcaPzoM9QKDYF42m" + }, + "href": "https://api.spotify.com/v1/tracks/15aMD4JcaPzoM9QKDYF42m", + "id": "15aMD4JcaPzoM9QKDYF42m", + "name": "Sunrise", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:15aMD4JcaPzoM9QKDYF42m", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 308569, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0hIGUS1PQbv5NIrHIf6Fza" + }, + "href": "https://api.spotify.com/v1/tracks/0hIGUS1PQbv5NIrHIf6Fza", + "id": "0hIGUS1PQbv5NIrHIf6Fza", + "name": "Sweet Emotion", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0hIGUS1PQbv5NIrHIf6Fza", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/0EiDO4qFMDbaKe4ETIz0ur", - "id": "0EiDO4qFMDbaKe4ETIz0ur", - "type": "track", - "uri": "spotify:track:0EiDO4qFMDbaKe4ETIz0ur" - }, - "name": "Every Revolution", - "preview_url": "https://p.scdn.co/mp3-preview/8593ebc51ddd57b0e3b941df9c135e05725bda40?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 10, - "type": "track", - "uri": "spotify:track:6RxdVdQS85HYIpXwJw1j6J", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 269466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" - }, - "href": "https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST", - "id": "0ONIdjj0gIWoA8vOPlM9ST", - "linked_from": { + "copyrights": [ + { + "text": "\u00a9 2014 Virgin Records Limited", + "type": "C" + }, + { + "text": "\u2117 2014 Virgin Records Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602537833573" }, + "genres": [], + "label": "Virgin Records Ltd", + "popularity": 57 + } + }, + { + "added_at": "2015-01-22T17:24:49Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" + "spotify": "https://open.spotify.com/album/1nLeRbHToiAF8icVAgzke6" }, - "href": "https://api.spotify.com/v1/tracks/4Lx8xU5DQOmnNNCpMOOaoz", - "id": "4Lx8xU5DQOmnNNCpMOOaoz", - "type": "track", - "uri": "spotify:track:4Lx8xU5DQOmnNNCpMOOaoz" - }, - "name": "It's All For You", - "preview_url": "https://p.scdn.co/mp3-preview/032131b43a938f51efc22ec0d70ff798fb0b62eb?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 11, - "type": "track", - "uri": "spotify:track:0ONIdjj0gIWoA8vOPlM9ST", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 199386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" - }, - "href": "https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9", - "id": "3eldJOi7FuF7LXoWRneab9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" + "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6", + "id": "1nLeRbHToiAF8icVAgzke6", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f1a22ddc7a2b07c8e006e623", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f1a22ddc7a2b07c8e006e623", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f1a22ddc7a2b07c8e006e623", + "height": 64, + "width": 64 + } + ], + "name": "Rains Of Fire", + "release_date": "2014-11-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1nLeRbHToiAF8icVAgzke6", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" + }, + "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", + "id": "7momuad2Twkv5O7MY3dODa", + "name": "Frontliner", + "type": "artist", + "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" + }, + "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", + "id": "320fB6pkVQ7vp95y2N9qkC", + "name": "SERi", + "type": "artist", + "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" + }, + "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", + "id": "7momuad2Twkv5O7MY3dODa", + "name": "Frontliner", + "type": "artist", + "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" + }, + "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", + "id": "320fB6pkVQ7vp95y2N9qkC", + "name": "SERi", + "type": "artist", + "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 277960, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" + }, + "href": "https://api.spotify.com/v1/tracks/7skiHghGcwtlFqaLMfiOuz", + "id": "7skiHghGcwtlFqaLMfiOuz", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" + }, + "href": "https://api.spotify.com/v1/tracks/1uUVtLpPVj5drd4b2mJgHs", + "id": "1uUVtLpPVj5drd4b2mJgHs", + "type": "track", + "uri": "spotify:track:1uUVtLpPVj5drd4b2mJgHs" + }, + "name": "Rains Of Fire", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7skiHghGcwtlFqaLMfiOuz", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/0Ucqe7Z74UP1DyNcGLiiEH", - "id": "0Ucqe7Z74UP1DyNcGLiiEH", - "type": "track", - "uri": "spotify:track:0Ucqe7Z74UP1DyNcGLiiEH" - }, - "name": "Don't Give Up On Me", - "preview_url": "https://p.scdn.co/mp3-preview/ebdeba5741eeffad9a160e48339a5103cb6d96f1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:3eldJOi7FuF7LXoWRneab9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 269733, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" - }, - "href": "https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva", - "id": "6yH5jYImETi3IZwAZY1gva", - "linked_from": { + "copyrights": [ + { "text": "2014 Be Yourself Catalogue B.V.", "type": "C" }, + { "text": "2014 Keep It Up", "type": "P" } + ], + "external_ids": { "upc": "8715576156083" }, + "genres": [], + "label": "Keep It Up Music", + "popularity": 0 + } + }, + { + "added_at": "2015-01-08T16:58:36Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" + "spotify": "https://open.spotify.com/album/1zzigYZU8igjHhCG24wBkm" + }, + "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm", + "id": "1zzigYZU8igjHhCG24wBkm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273b4b49b8dc3853e01eb8cecef", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02b4b49b8dc3853e01eb8cecef", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851b4b49b8dc3853e01eb8cecef", + "height": 64, + "width": 64 + } + ], + "name": "Centuries", + "release_date": "2014-09-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1zzigYZU8igjHhCG24wBkm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" + }, + "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", + "id": "4UXqAaa6dQYAk18Lv7PEgX", + "name": "Fall Out Boy", + "type": "artist", + "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" + }, + "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", + "id": "4UXqAaa6dQYAk18Lv7PEgX", + "name": "Fall Out Boy", + "type": "artist", + "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 231813, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" + }, + "href": "https://api.spotify.com/v1/tracks/04aAxqtGp5pv12UXAg4pkq", + "id": "04aAxqtGp5pv12UXAg4pkq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" + }, + "href": "https://api.spotify.com/v1/tracks/3r0NMcEl7lxAHkSlDk8b7U", + "id": "3r0NMcEl7lxAHkSlDk8b7U", + "type": "track", + "uri": "spotify:track:3r0NMcEl7lxAHkSlDk8b7U" + }, + "name": "Centuries", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:04aAxqtGp5pv12UXAg4pkq", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/1yu6lK4SPpvv1b9OtUZ50V", - "id": "1yu6lK4SPpvv1b9OtUZ50V", - "type": "track", - "uri": "spotify:track:1yu6lK4SPpvv1b9OtUZ50V" - }, - "name": "Up", - "preview_url": "https://p.scdn.co/mp3-preview/c61a24f21131cd683dc26ce8b307e20f173dd51e?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 13, - "type": "track", - "uri": "spotify:track:6yH5jYImETi3IZwAZY1gva", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 261440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" - }, - "href": "https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd", - "id": "0qStm2vt5sMGgzbp68dADd", - "linked_from": { + "copyrights": [ + { + "text": "(C) 2014 Island Records, a division of UMG Recordings, Inc.", + "type": "C" + }, + { + "text": "(P) 2014 Island Records, a division of UMG Recordings, Inc.", + "type": "P" + } + ], + "external_ids": { "upc": "00602547026392" }, + "genres": [], + "label": "Universal Music Ltd.", + "popularity": 0 + } + }, + { + "added_at": "2015-01-07T15:51:45Z", + "album": { + "album_type": "single", + "total_tracks": 3, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" + "spotify": "https://open.spotify.com/album/2zdCtvku47tZOXv6WYt5az" }, - "href": "https://api.spotify.com/v1/tracks/5cgPKFbHlpiC7OwNgRFp19", - "id": "5cgPKFbHlpiC7OwNgRFp19", - "type": "track", - "uri": "spotify:track:5cgPKFbHlpiC7OwNgRFp19" - }, - "name": "Come On Love", - "preview_url": "https://p.scdn.co/mp3-preview/4e235615bb5b9857e73b47d21a4c28d825c6adab?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:0qStm2vt5sMGgzbp68dADd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/01pKrlgPJhm5dB4lneYAqS" - }, - "href": "https://api.spotify.com/v1/artists/01pKrlgPJhm5dB4lneYAqS", - "id": "01pKrlgPJhm5dB4lneYAqS", - "name": "Sigma", - "type": "artist", - "uri": "spotify:artist:01pKrlgPJhm5dB4lneYAqS" + "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az", + "id": "2zdCtvku47tZOXv6WYt5az", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27323203f03e8f921b62c7037cc", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0223203f03e8f921b62c7037cc", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485123203f03e8f921b62c7037cc", + "height": 64, + "width": 64 + } + ], + "name": "Underline", + "release_date": "2014-11-03", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2zdCtvku47tZOXv6WYt5az", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 3, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 223346, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" + }, + "href": "https://api.spotify.com/v1/tracks/6uM8rQRRzPmRZNKGYqpEkd", + "id": "6uM8rQRRzPmRZNKGYqpEkd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" + }, + "href": "https://api.spotify.com/v1/tracks/0ejmqbo6mUuLT0DgCmj5kD", + "id": "0ejmqbo6mUuLT0DgCmj5kD", + "type": "track", + "uri": "spotify:track:0ejmqbo6mUuLT0DgCmj5kD" + }, + "name": "Are You Listening?", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6uM8rQRRzPmRZNKGYqpEkd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 279240, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" + }, + "href": "https://api.spotify.com/v1/tracks/5B2U6awRptWQ3l4OpjZdBG", + "id": "5B2U6awRptWQ3l4OpjZdBG", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" + }, + "href": "https://api.spotify.com/v1/tracks/3aO3XTdXMSjDSiG6vPxL7A", + "id": "3aO3XTdXMSjDSiG6vPxL7A", + "type": "track", + "uri": "spotify:track:3aO3XTdXMSjDSiG6vPxL7A" + }, + "name": "In the Blind", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5B2U6awRptWQ3l4OpjZdBG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 263466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" + }, + "href": "https://api.spotify.com/v1/tracks/3rftx1PF0BezDK29VE125h", + "id": "3rftx1PF0BezDK29VE125h", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" + }, + "href": "https://api.spotify.com/v1/tracks/7kWtci6hVeA31xTGtpBhWG", + "id": "7kWtci6hVeA31xTGtpBhWG", + "type": "track", + "uri": "spotify:track:7kWtci6hVeA31xTGtpBhWG" + }, + "name": "Override (A)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3rftx1PF0BezDK29VE125h", + "is_local": false + } + ] }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 197453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" - }, - "href": "https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth", - "id": "2ddfMbBXPXgq2gjWBe0Mth", - "linked_from": { + "copyrights": [ + { "text": "2014 Smihilism Records", "type": "C" }, + { "text": "2014 Smihilism Records", "type": "P" } + ], + "external_ids": { "upc": "5060416600008" }, + "genres": [], + "label": "Smihilism Records", + "popularity": 0 + } + }, + { + "added_at": "2015-01-03T12:49:56Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [], "external_urls": { - "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" + "spotify": "https://open.spotify.com/album/7H1iZSYcbOjGCjR8eW9Kx3" + }, + "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3", + "id": "7H1iZSYcbOjGCjR8eW9Kx3", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f50a1c8e82b7be0090914bb2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f50a1c8e82b7be0090914bb2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f50a1c8e82b7be0090914bb2", + "height": 64, + "width": 64 + } + ], + "name": "All the Lights in the Sky", + "release_date": "2013-01-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7H1iZSYcbOjGCjR8eW9Kx3", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 64213, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" + }, + "href": "https://api.spotify.com/v1/tracks/1Wn8W35A0VW3Tk2O1t3BNd", + "id": "1Wn8W35A0VW3Tk2O1t3BNd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" + }, + "href": "https://api.spotify.com/v1/tracks/1zuKsDdNRtcRyD7FtCLGHL", + "id": "1zuKsDdNRtcRyD7FtCLGHL", + "type": "track", + "uri": "spotify:track:1zuKsDdNRtcRyD7FtCLGHL" + }, + "name": "System;Start", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1Wn8W35A0VW3Tk2O1t3BNd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5gUhgCZwqSyspR7alzGTmL" + }, + "href": "https://api.spotify.com/v1/tracks/5gUhgCZwqSyspR7alzGTmL", + "id": "5gUhgCZwqSyspR7alzGTmL", + "restrictions": { "reason": "market" }, + "name": "Vectors", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5gUhgCZwqSyspR7alzGTmL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 220920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0A8gZrdgGCar7LYflX8R0h" + }, + "href": "https://api.spotify.com/v1/tracks/0A8gZrdgGCar7LYflX8R0h", + "id": "0A8gZrdgGCar7LYflX8R0h", + "restrictions": { "reason": "market" }, + "name": "Euphemia", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0A8gZrdgGCar7LYflX8R0h", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 204866, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" + }, + "href": "https://api.spotify.com/v1/tracks/7ICQJPECy8842wCa6AfwCK", + "id": "7ICQJPECy8842wCa6AfwCK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" + }, + "href": "https://api.spotify.com/v1/tracks/3YIYKUPQEs5r6DmDB6gkgw", + "id": "3YIYKUPQEs5r6DmDB6gkgw", + "type": "track", + "uri": "spotify:track:3YIYKUPQEs5r6DmDB6gkgw" + }, + "name": "Knightmare/Frame", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7ICQJPECy8842wCa6AfwCK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" + }, + "href": "https://api.spotify.com/v1/tracks/7cSMDMR2URe6p3qKcACXnm", + "id": "7cSMDMR2URe6p3qKcACXnm", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" + }, + "href": "https://api.spotify.com/v1/tracks/6p8GKeZPgHwTLr1IObpyzU", + "id": "6p8GKeZPgHwTLr1IObpyzU", + "type": "track", + "uri": "spotify:track:6p8GKeZPgHwTLr1IObpyzU" + }, + "name": "Tokyo House Party", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7cSMDMR2URe6p3qKcACXnm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/292ZlwqNqc8lbEvzYN82Ey" + }, + "href": "https://api.spotify.com/v1/artists/292ZlwqNqc8lbEvzYN82Ey", + "id": "292ZlwqNqc8lbEvzYN82Ey", + "name": "Beckii Cruel", + "type": "artist", + "uri": "spotify:artist:292ZlwqNqc8lbEvzYN82Ey" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" + }, + "href": "https://api.spotify.com/v1/tracks/028eHoODO39uXKd2UGYq4t", + "id": "028eHoODO39uXKd2UGYq4t", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" + }, + "href": "https://api.spotify.com/v1/tracks/50AN1KTNvK17fBMY4AX3jb", + "id": "50AN1KTNvK17fBMY4AX3jb", + "type": "track", + "uri": "spotify:track:50AN1KTNvK17fBMY4AX3jb" + }, + "name": "Shi No Barado (feat. Beckii Cruel)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:028eHoODO39uXKd2UGYq4t", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 201626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" + }, + "href": "https://api.spotify.com/v1/tracks/77L7IkqBv11gA6HNtY6Cka", + "id": "77L7IkqBv11gA6HNtY6Cka", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" + }, + "href": "https://api.spotify.com/v1/tracks/3ODBw0ljBRz0XPEgfSweVs", + "id": "3ODBw0ljBRz0XPEgfSweVs", + "type": "track", + "uri": "spotify:track:3ODBw0ljBRz0XPEgfSweVs" + }, + "name": "Cassandra (Pt II)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:77L7IkqBv11gA6HNtY6Cka", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" + }, + "href": "https://api.spotify.com/v1/tracks/0f6m0HRlcGLGveWg3de4zG", + "id": "0f6m0HRlcGLGveWg3de4zG", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" + }, + "href": "https://api.spotify.com/v1/tracks/0167vnxjkbw6iLSHJYU5a0", + "id": "0167vnxjkbw6iLSHJYU5a0", + "type": "track", + "uri": "spotify:track:0167vnxjkbw6iLSHJYU5a0" + }, + "name": "The Strays", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:0f6m0HRlcGLGveWg3de4zG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 234080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" + }, + "href": "https://api.spotify.com/v1/tracks/0BmV8OlrvNbLbu9ZmIpdvg", + "id": "0BmV8OlrvNbLbu9ZmIpdvg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" + }, + "href": "https://api.spotify.com/v1/tracks/2C0rKaUDiqWiLkyuGwZGsE", + "id": "2C0rKaUDiqWiLkyuGwZGsE", + "type": "track", + "uri": "spotify:track:2C0rKaUDiqWiLkyuGwZGsE" + }, + "name": "Dream & Reality", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0BmV8OlrvNbLbu9ZmIpdvg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 258613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" + }, + "href": "https://api.spotify.com/v1/tracks/2eG2Ey9FdvvVpinePpIlCV", + "id": "2eG2Ey9FdvvVpinePpIlCV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" + }, + "href": "https://api.spotify.com/v1/tracks/2pXDScNtImSgumK0gTJcaj", + "id": "2pXDScNtImSgumK0gTJcaj", + "type": "track", + "uri": "spotify:track:2pXDScNtImSgumK0gTJcaj" + }, + "name": "Heaven-Piercing Giga Drill", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2eG2Ey9FdvvVpinePpIlCV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 671160, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" + }, + "href": "https://api.spotify.com/v1/tracks/52vB77kTjHlxHc6utDMIMI", + "id": "52vB77kTjHlxHc6utDMIMI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" + }, + "href": "https://api.spotify.com/v1/tracks/2BurnsChUeXYkJnmrpEcPN", + "id": "2BurnsChUeXYkJnmrpEcPN", + "type": "track", + "uri": "spotify:track:2BurnsChUeXYkJnmrpEcPN" + }, + "name": "B\u014ds\u014dzoku Symphonic", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:52vB77kTjHlxHc6utDMIMI", + "is_local": false + } + ] }, - "href": "https://api.spotify.com/v1/tracks/4zJIKsSumCbZgcbWz1UNPL", - "id": "4zJIKsSumCbZgcbWz1UNPL", - "type": "track", - "uri": "spotify:track:4zJIKsSumCbZgcbWz1UNPL" - }, - "name": "Cry", - "preview_url": "https://p.scdn.co/mp3-preview/506b502946f17f4ea71b8ee3237036bf004520f8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 15, - "type": "track", - "uri": "spotify:track:2ddfMbBXPXgq2gjWBe0Mth", - "is_local": false + "copyrights": [ + { "text": "2013 Yogscast Studios", "type": "C" }, + { "text": "2013 Yogscast Studios", "type": "P" } + ], + "external_ids": { "upc": "5060330600030" }, + "genres": [], + "label": "Yogscast Studios", + "popularity": 0 } - ] }, - "copyrights": [ - { - "text": "© 2017 Polydor Ltd. (UK)", - "type": "C" - }, - { - "text": "℗ 2017 Polydor Ltd. (UK)", - "type": "P" - } - ], - "external_ids": { - "upc": "00602557441154" - }, - "genres": [], - "label": "Universal Music Group", - "popularity": 0 - } - }, - { - "added_at": "2017-08-26T22:34:42Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BT", - "BW", - "BF", - "CV", - "CW", - "FJ", - "GM", - "GE", - "GW", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0fMJhuTXyqcPEP0B864j8T" - }, - "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T?locale=en-US%2Cen%3Bq%3D0.5", - "id": "0fMJhuTXyqcPEP0B864j8T", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22", - "height": 64, - "width": 64 - } - ], - "name": "Here With You", - "release_date": "2017-06-30", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0fMJhuTXyqcPEP0B864j8T", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" - }, - "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", - "id": "7f5Zgnp2spUuuzKplmRkt7", - "name": "Lost Frequencies", - "type": "artist", - "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" - }, - "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", - "id": "5TgQ66WuWkoQ2xYxaSTnVP", - "name": "Netsky", - "type": "artist", - "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T/tracks?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" - }, - "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", - "id": "7f5Zgnp2spUuuzKplmRkt7", - "name": "Lost Frequencies", - "type": "artist", - "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" + { + "added_at": "1998-01-25T15:47:12Z", + "album": { + "album_type": "album", + "total_tracks": 18, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1sSoDKCPSMPQ8CMAWYUabB" }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" - }, - "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", - "id": "5TgQ66WuWkoQ2xYxaSTnVP", - "name": "Netsky", - "type": "artist", - "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" - } - ], - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BT", - "BW", - "BF", - "CV", - "CW", - "FJ", - "GM", - "GE", - "GW", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 159023, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F" - }, - "href": "https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F", - "id": "0u6KLyKbuqAe3aiol9UV8F", - "name": "Here With You", - "preview_url": "https://p.scdn.co/mp3-preview/d6f722489ae5c59acf94a69f9b013672a55fee35?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0u6KLyKbuqAe3aiol9UV8F", - "is_local": false + "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB", + "id": "1sSoDKCPSMPQ8CMAWYUabB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f21eb2f7f39a49ade2daca2c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f21eb2f7f39a49ade2daca2c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f21eb2f7f39a49ade2daca2c", + "height": 64, + "width": 64 + } + ], + "name": "USB", + "release_date": "2022-01-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1sSoDKCPSMPQ8CMAWYUabB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 18, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 165857, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" + }, + "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", + "id": "1lbNgoJ5iMrMluCyhI4OQP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" + }, + "href": "https://api.spotify.com/v1/tracks/1RraBERwdsmLqzrbXkGM0n", + "id": "1RraBERwdsmLqzrbXkGM0n", + "type": "track", + "uri": "spotify:track:1RraBERwdsmLqzrbXkGM0n" + }, + "name": "Victory Lap", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" + }, + "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", + "id": "0aIpJqqTLf683ojWREc5lg", + "name": "Joy Orbison", + "type": "artist", + "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" + }, + "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", + "id": "699OTQXzgjhIYAHMy9RyPD", + "name": "Playboi Carti", + "type": "artist", + "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246909, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" + }, + "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", + "id": "7qpZh0yIXeZzXZk3mE6Fj9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" + }, + "href": "https://api.spotify.com/v1/tracks/0sit6qzsa9l2ZQFCnwQiEj", + "id": "0sit6qzsa9l2ZQFCnwQiEj", + "type": "track", + "uri": "spotify:track:0sit6qzsa9l2ZQFCnwQiEj" + }, + "name": "flex fm (freddit)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" + }, + "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", + "id": "4VsVLz3Uw6d0fdM6gFtLfo", + "name": "MESSIE", + "type": "artist", + "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219310, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" + }, + "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", + "id": "73s1r3Jfn8pqXJv9ahKfNV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" + }, + "href": "https://api.spotify.com/v1/tracks/5e1uNQl4SoXGR5ynUKbxre", + "id": "5e1uNQl4SoXGR5ynUKbxre", + "type": "track", + "uri": "spotify:track:5e1uNQl4SoXGR5ynUKbxre" + }, + "name": "places to be - MESSIE remix", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" + }, + "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", + "id": "1fDV6gCETmlkCUugBxq59g", + "name": "Duoteque", + "type": "artist", + "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" + }, + "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", + "id": "2efrqekWSHlvhATD50AG3m", + "name": "Orion Sun", + "type": "artist", + "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 327508, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" + }, + "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", + "id": "2la8LWSxedRoulmz0UHE7o", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" + }, + "href": "https://api.spotify.com/v1/tracks/6Zg23hhTXwGszV8On0iA2v", + "id": "6Zg23hhTXwGszV8On0iA2v", + "type": "track", + "uri": "spotify:track:6Zg23hhTXwGszV8On0iA2v" + }, + "name": "ItsNotREEAALLLLLLLL", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" + }, + "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", + "id": "5zatdvej2AxogC5pbu2msR", + "name": "BERWYN", + "type": "artist", + "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 123607, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" + }, + "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", + "id": "59DFl0vh8FoBmmD43ruznv", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" + }, + "href": "https://api.spotify.com/v1/tracks/2tlq1Yt4OMFUVpxJS0hbVr", + "id": "2tlq1Yt4OMFUVpxJS0hbVr", + "type": "track", + "uri": "spotify:track:2tlq1Yt4OMFUVpxJS0hbVr" + }, + "name": "BerwynGesaffNeighbours", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" + }, + "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", + "id": "6b0TSaLAeLXilOPoId8udE", + "name": "CLIPZ", + "type": "artist", + "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 184827, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" + }, + "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", + "id": "4n4VUdx6tr7MylOySvDhPK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" + }, + "href": "https://api.spotify.com/v1/tracks/09EP4gcskOhFSTwpwordKY", + "id": "09EP4gcskOhFSTwpwordKY", + "type": "track", + "uri": "spotify:track:09EP4gcskOhFSTwpwordKY" + }, + "name": "places to be - CLIPZ remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" + }, + "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", + "id": "01PnN11ovfen6xUOHfNpn3", + "name": "Overmono", + "type": "artist", + "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" + }, + "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", + "id": "2iUMh8RrpUiakMnneanOPj", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" + }, + "href": "https://api.spotify.com/v1/tracks/3sXMf88N6T9JbpYPYUFYc5", + "id": "3sXMf88N6T9JbpYPYUFYc5", + "type": "track", + "uri": "spotify:track:3sXMf88N6T9JbpYPYUFYc5" + }, + "name": "stayinit", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222784, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", + "id": "2tSP95IyUkPv5Wj83xWh1c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "href": "https://api.spotify.com/v1/tracks/2vOjCXKZ5kcbmzOJ1ylT1h", + "id": "2vOjCXKZ5kcbmzOJ1ylT1h", + "type": "track", + "uri": "spotify:track:2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "name": "leavemealone", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319963, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" + }, + "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", + "id": "6EpIDF3GW1dRBujSp4bJxI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" + }, + "href": "https://api.spotify.com/v1/tracks/0Urc7TcTnxzy6Aw8mx0lLD", + "id": "0Urc7TcTnxzy6Aw8mx0lLD", + "type": "track", + "uri": "spotify:track:0Urc7TcTnxzy6Aw8mx0lLD" + }, + "name": "Baby again..", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" + }, + "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", + "id": "07CimrZi5vs9iEao47TNQ4", + "name": "Flowdan", + "type": "artist", + "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 146571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" + }, + "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", + "id": "74fmYjFwt9CqEFAh8ybeBD", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" + }, + "href": "https://api.spotify.com/v1/tracks/4adcBRu6omRjtTmxVJngTV", + "id": "4adcBRu6omRjtTmxVJngTV", + "type": "track", + "uri": "spotify:track:4adcBRu6omRjtTmxVJngTV" + }, + "name": "Rumble", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" + }, + "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", + "id": "1h6Cn3P4NGzXbaXidqURXs", + "name": "Swedish House Mafia", + "type": "artist", + "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", + "id": "2E6peXBRbjUmGkkR3dUNGe", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "href": "https://api.spotify.com/v1/tracks/0iBtXMkVYuPxz8Nhc0Ckv1", + "id": "0iBtXMkVYuPxz8Nhc0Ckv1", + "type": "track", + "uri": "spotify:track:0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "name": "Turn On The Lights again.. (feat. Future)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 198805, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" + }, + "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", + "id": "3BKkroNdTKfNijLG9oHW7c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" + }, + "href": "https://api.spotify.com/v1/tracks/5euk4pkU8wnBruWyVkOjBy", + "id": "5euk4pkU8wnBruWyVkOjBy", + "type": "track", + "uri": "spotify:track:5euk4pkU8wnBruWyVkOjBy" + }, + "name": "Jungle", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" + }, + "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", + "id": "5RMLpCv3ic2KtGnqJ7eMG4", + "name": "I. JORDAN", + "type": "artist", + "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 385074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" + }, + "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", + "id": "7c0DlxLjlEEK2VKQJIIU1Z", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" + }, + "href": "https://api.spotify.com/v1/tracks/3p6raxOehdqXB2tq1yCC6a", + "id": "3p6raxOehdqXB2tq1yCC6a", + "type": "track", + "uri": "spotify:track:3p6raxOehdqXB2tq1yCC6a" + }, + "name": "Admit It (u dont want 2)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" + }, + "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", + "id": "1RlBD9ays0WfNHSVzxHiKX", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" + }, + "href": "https://api.spotify.com/v1/tracks/001rjToxEiyZnMsZEVdu4R", + "id": "001rjToxEiyZnMsZEVdu4R", + "type": "track", + "uri": "spotify:track:001rjToxEiyZnMsZEVdu4R" + }, + "name": "Lights Out", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" + }, + "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", + "id": "6fxyWrfmjcbj5d12gXeiNV", + "name": "Denzel Curry", + "type": "artist", + "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" + }, + "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", + "id": "4nVa6XlBFlIkF6msW57PHp", + "name": "Hanumankind", + "type": "artist", + "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" + }, + "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", + "id": "3BAgmPNIK5IJl7zMK1wvMA", + "name": "That Mexican OT", + "type": "artist", + "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" + }, + "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", + "id": "6bwkMlweHsBCpI2a0C5nnN", + "name": "D Double E", + "type": "artist", + "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" + }, + "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", + "id": "7xqIp1044Z2vd9v9ZphjLa", + "name": "LYNY", + "type": "artist", + "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 344571, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" + }, + "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", + "id": "3bsAYGy83D6sl1a5otGuUg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" + }, + "href": "https://api.spotify.com/v1/tracks/7vV6MiU4BHLuNyu4P87z9k", + "id": "7vV6MiU4BHLuNyu4P87z9k", + "type": "track", + "uri": "spotify:track:7vV6MiU4BHLuNyu4P87z9k" + }, + "name": "Victory Lap Five", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" + }, + "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", + "id": "7BMR0fwtEvzGtK4rNGdoiQ", + "name": "Nia Archives", + "type": "artist", + "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179441, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" + }, + "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", + "id": "5u84pGbxFomiV66Uk2kOQK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" + }, + "href": "https://api.spotify.com/v1/tracks/6ufPi34IYHXG7BYyJR5NX5", + "id": "6ufPi34IYHXG7BYyJR5NX5", + "type": "track", + "uri": "spotify:track:6ufPi34IYHXG7BYyJR5NX5" + }, + "name": "leavemealone - Nia Archives Remix", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" + }, + "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", + "id": "2OaHYHb2XcFPvqL3VsyPzU", + "name": "Rico Nasty", + "type": "artist", + "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 213133, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" + }, + "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", + "id": "3ycgBFWvzxjLtY2YJuQMms", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" + }, + "href": "https://api.spotify.com/v1/tracks/51ZdiAjVcjhGGHO83nyYwv", + "id": "51ZdiAjVcjhGGHO83nyYwv", + "type": "track", + "uri": "spotify:track:51ZdiAjVcjhGGHO83nyYwv" + }, + "name": "Jungle - Rico Nasty Remix", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 375087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" + }, + "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", + "id": "5HZJuJphtUWc6wuTHt50oQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" + }, + "href": "https://api.spotify.com/v1/tracks/6998iKJwFYA9DyAC53Y8sA", + "id": "6998iKJwFYA9DyAC53Y8sA", + "type": "track", + "uri": "spotify:track:6998iKJwFYA9DyAC53Y8sA" + }, + "name": "Lights Out (feat. Fred again..) - HAAi Remix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "An Atlantic Records UK, \u00a9 2024 Warner Music UK Limited", + "type": "C" + }, + { + "text": "An Atlantic Records UK release Bar Track 1, 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2024 Warner Music UK Limited", + "type": "P" + } + ], + "external_ids": { "upc": "5021732887962" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 20 } - ] - }, - "copyrights": [ - { - "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", - "type": "C" - }, - { - "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", - "type": "P" - } - ], - "external_ids": { - "upc": "8718522152665" - }, - "genres": [], - "label": "Armada Music", - "popularity": 34 - } - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/me/albums?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 34 + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 45 } diff --git a/tests/fixtures/saved_audiobooks.json b/tests/fixtures/saved_audiobooks.json index 2ed7a89..2339348 100644 --- a/tests/fixtures/saved_audiobooks.json +++ b/tests/fixtures/saved_audiobooks.json @@ -1,253 +1,496 @@ { - "href": "https://api.spotify.com/v1/me/audiobooks?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "authors": [ + "href": "https://api.spotify.com/v1/me/audiobooks?offset=0&limit=48", + "items": [ { - "name": "Anya Niewierra" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra\nNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.

\n
\n

‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
\nHeleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
\nRob Cobben, cultuurverslaggever Dagblad De Limburger

", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p>
<p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p>
<p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p>
<p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p>
<br>
<p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>
Heleen Spanjaard, <i>Margriet</i></p>
<p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>
Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV?locale=en-US%2Cen%3Bq%3D0.5", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De nomade", - "narrators": [ - { - "name": "Nienke Brinkhuis" - }, - { - "name": "Cees van Ede" + "authors": [ + { + "name": "Anya Niewierra" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "narrators": [ + { + "name": "Nienke Brinkhuis" + }, + { + "name": "Cees van Ede" + }, + { + "name": "Mattijn Hartemink" + } + ], + "publisher": "Anya Niewierra", + "type": "audiobook", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV", + "total_chapters": 49 }, { - "name": "Mattijn Hartemink" + "authors": [ + { + "name": "Frank Herbert" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" + }, + "href": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe", + "id": "7iHfbu1YPACw6oZPAFJtqe", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Dune: Book One in the Dune Chronicles", + "narrators": [ + { + "name": "Scott Brick" + }, + { + "name": "Orlagh Cassidy" + }, + { + "name": "Euan Morton" + }, + { + "name": "Ilyana Kadushin" + }, + { + "name": "Simon Vance" + } + ], + "publisher": "Frank Herbert", + "type": "audiobook", + "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe", + "total_chapters": 52 } - ], - "publisher": "Anya Niewierra", - "type": "audiobook", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV", - "total_chapters": 49 - }, - null - ], - "limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total": 2 + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 2 } diff --git a/tests/fixtures/saved_episodes.json b/tests/fixtures/saved_episodes.json index 1d7bb3c..7212961 100644 --- a/tests/fixtures/saved_episodes.json +++ b/tests/fixtures/saved_episodes.json @@ -1,334 +1,326 @@ { - "href": "https://api.spotify.com/v1/me/episodes?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total": 2, - "items": [ - { - "added_at": "2024-06-07T15:08:30Z", - "episode": { - "audio_preview_url": null, - "description": null, - "duration_ms": null, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/null" - }, - "href": "https://api.spotify.com/v1/episodes/null", - "html_description": null, - "id": null, - "images": [], - "is_externally_hosted": null, - "language": null, - "languages": [ - null - ], - "name": null, - "release_date": "0000", - "release_date_precision": "year", - "resume_point": { - "fully_played": false, - "resume_position_ms": null - }, - "show": { - "copyrights": null, - "description": null, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/null" - }, - "href": "https://api.spotify.com/v1/shows/null", - "html_description": null, - "id": null, - "images": [], - "is_externally_hosted": null, - "languages": [ - null - ], - "media_type": null, - "name": null, - "publisher": null, - "total_episodes": null, - "type": "show", - "uri": null - }, - "type": "episode", - "uri": null - } - }, - { - "added_at": "2021-04-01T23:21:46Z", - "episode": { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3MPB6hmgIONz91Em6JfkAK/clip_0_60000.mp3", - "description": "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster For all your Taskmaster goodies visit www.taskmasterstore.com  Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", - "duration_ms": 3724303, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5" - }, - "href": "https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5", - "html_description": "

This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise.


You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.


Watch Taskmaster Bleeped on All 4


Get in touch with Ed and future guests:

taskmasterpodcast@gmail.com 


Visit the Taskmaster Youtube channel

www.youtube.com/taskmaster 


For all your Taskmaster goodies visit 

www.taskmasterstore.com  


Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd

", - "id": "0x25dVaCtjWMmcjDJyuMM5", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Ep 26. Katherine Parkinson - S11 Ep.3", - "release_date": "2021-04-01", - "release_date_precision": "day", - "resume_point": { - "fully_played": true, - "resume_position_ms": 301000 - }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" - }, - "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", - "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "id": "4BZc9sOdNilJJ8irsuOzdg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", - "width": 64 + "href": "https://api.spotify.com/v1/me/episodes?offset=0&limit=48", + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 2, + "items": [ + { + "added_at": "2024-06-07T15:08:30Z", + "episode": { + "audio_preview_url": null, + "description": null, + "duration_ms": null, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/null" + }, + "href": "https://api.spotify.com/v1/episodes/null", + "html_description": null, + "id": null, + "images": [], + "is_externally_hosted": null, + "language": null, + "languages": [null], + "name": null, + "release_date": "0000", + "release_date_precision": "year", + "resume_point": { + "fully_played": false, + "resume_position_ms": null + }, + "show": { + "copyrights": null, + "description": null, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/null" + }, + "href": "https://api.spotify.com/v1/shows/null", + "html_description": null, + "id": null, + "images": [], + "is_externally_hosted": null, + "languages": [null], + "media_type": null, + "name": null, + "publisher": null, + "total_episodes": null, + "type": "show", + "uri": null + }, + "type": "episode", + "uri": null } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Taskmaster The Podcast", - "publisher": "Avalon ", - "total_episodes": 200, - "type": "show", - "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" }, - "type": "episode", - "uri": "spotify:episode:0x25dVaCtjWMmcjDJyuMM5" - } - } - ] + { + "added_at": "2021-04-01T23:21:46Z", + "episode": { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3MPB6hmgIONz91Em6JfkAK/clip_0_60000.mp3", + "description": "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com\u00a0Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster\u00a0For all your Taskmaster goodies visit\u00a0www.taskmasterstore.com\u00a0\u00a0Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", + "duration_ms": 3724303, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5" + }, + "href": "https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5", + "html_description": "

This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise.


You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.


Watch Taskmaster Bleeped on All 4


Get in touch with Ed and future guests:

taskmasterpodcast@gmail.com\u00a0


Visit the Taskmaster Youtube channel

www.youtube.com/taskmaster\u00a0


For all your Taskmaster goodies visit\u00a0

www.taskmasterstore.com\u00a0\u00a0


Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd

", + "id": "0x25dVaCtjWMmcjDJyuMM5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en", + "languages": ["en"], + "name": "Ep 26. Katherine Parkinson - S11 Ep.3", + "release_date": "2021-04-01", + "release_date_precision": "day", + "resume_point": { + "fully_played": true, + "resume_position_ms": 20000 + }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" + }, + "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", + "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "id": "4BZc9sOdNilJJ8irsuOzdg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Taskmaster The Podcast", + "publisher": "Avalon ", + "total_episodes": 255, + "type": "show", + "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" + }, + "type": "episode", + "uri": "spotify:episode:0x25dVaCtjWMmcjDJyuMM5" + } + } + ] } diff --git a/tests/fixtures/saved_shows.json b/tests/fixtures/saved_shows.json index a1dc916..76015c2 100644 --- a/tests/fixtures/saved_shows.json +++ b/tests/fixtures/saved_shows.json @@ -1,2290 +1,2948 @@ { - "href": "https://api.spotify.com/v1/me/shows?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2023-08-10T08:17:09Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" + "href": "https://api.spotify.com/v1/me/shows?offset=0&limit=48", + "items": [ + { + "added_at": "2025-05-07T18:05:23Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/21YVDAzO2H21WCndbowuRk" + }, + "href": "https://api.spotify.com/v1/shows/21YVDAzO2H21WCndbowuRk", + "html_description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", + "id": "21YVDAzO2H21WCndbowuRk", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d1e0cd69bb20b9b3dfe26b37d", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f1e0cd69bb20b9b3dfe26b37d", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a1e0cd69bb20b9b3dfe26b37d", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Open Source Stories", + "publisher": "Open Source Stories", + "total_episodes": 29, + "type": "show", + "uri": "spotify:show:21YVDAzO2H21WCndbowuRk" + } }, - "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", - "html_description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5OzkclFjD6iAjtAuo7aIYt", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Toni and Ryan", - "publisher": "Toni Lodge and Ryan Jon", - "total_episodes": 741, - "type": "show", - "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" - } - }, - { - "added_at": "2022-09-15T23:48:23Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2" + { + "added_at": "2024-10-20T20:20:54Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "publisher": "Anya Niewierra", + "total_episodes": 49, + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + } }, - "href": "https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2", - "html_description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.

Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", - "id": "6XYRres0KZtnTqKcLavWR2", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "BLAST Push To Talk", - "publisher": "BLAST Premier", - "total_episodes": 19, - "type": "show", - "uri": "spotify:show:6XYRres0KZtnTqKcLavWR2" - } - }, - { - "added_at": "2022-08-14T11:59:06Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more. Get awesome rewards & support the show: patreon.com/falloutlorecast Watch live at youtube.com/c/robotsradio Advertise with us & business inquiries: robotsnetwork@gmail.comSponsored by:Unknown 9: Awakening releases on October 18, 2024 for PS4, PS5, Xbox One, Xbox Series X and S, and PC. Pre-order your copy today and learn more about the Unknown 9 universe at unknown9.com/{YOUR SHOW CODE}.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db" + { + "added_at": "2024-10-20T20:19:29Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" + }, + "href": "https://api.spotify.com/v1/shows/7iHfbu1YPACw6oZPAFJtqe", + "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "id": "7iHfbu1YPACw6oZPAFJtqe", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Dune: Book One in the Dune Chronicles", + "publisher": "Frank Herbert", + "total_episodes": 52, + "type": "show", + "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe" + } }, - "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db", - "html_description": "

In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.

Get awesome rewards & support the show: patreon.com/falloutlorecast

Watch live at youtube.com/c/robotsradio

Advertise with us & business inquiries: robotsnetwork@gmail.com

Sponsored by:

Unknown 9: Awakening releases on October 18, 2024 for PS4, PS5, Xbox One, Xbox Series X and S, and PC. Pre-order your copy today and learn more about the Unknown 9 universe at unknown9.com/{YOUR SHOW CODE}.

", - "id": "0e30iIgSffe6xJhFKe35Db", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d16322099db1ec89c2f6107b2", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f16322099db1ec89c2f6107b2", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a16322099db1ec89c2f6107b2", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Fallout Lorecast - The Fallout Video Game & TV Lore Podcast", - "publisher": "Robots Radio", - "total_episodes": 323, - "type": "show", - "uri": "spotify:show:0e30iIgSffe6xJhFKe35Db" - } - }, - { - "added_at": "2021-03-07T14:12:29Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" + { + "added_at": "2023-08-10T08:17:09Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.Join us everywhere: linktr.ee/ToniAndRyan Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" + }, + "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", + "html_description": "

We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Join us everywhere: linktr.ee/ToniAndRyan

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5OzkclFjD6iAjtAuo7aIYt", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Toni and Ryan", + "publisher": "Toni Lodge and Ryan Jon", + "total_episodes": 1036, + "type": "show", + "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" + } }, - "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", - "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "id": "4BZc9sOdNilJJ8irsuOzdg", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Taskmaster The Podcast", - "publisher": "Avalon ", - "total_episodes": 181, - "type": "show", - "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" - } - }, - { - "added_at": "2021-03-06T00:14:09Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq" + { + "added_at": "2022-09-15T23:48:23Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2" + }, + "href": "https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2", + "html_description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.

Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", + "id": "6XYRres0KZtnTqKcLavWR2", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "BLAST Push To Talk", + "publisher": "BLAST Premier", + "total_episodes": 19, + "type": "show", + "uri": "spotify:show:6XYRres0KZtnTqKcLavWR2" + } }, - "href": "https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq", - "html_description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu.

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "0azMejb7zrmAqctVsUSAdq", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Off Menu with Ed Gamble and James Acaster", - "publisher": "Plosive", - "total_episodes": 298, - "type": "show", - "uri": "spotify:show:0azMejb7zrmAqctVsUSAdq" - } - }, - { - "added_at": "2021-03-06T00:13:55Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV" + { + "added_at": "2022-08-14T11:59:06Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.Get awesome rewards & support the show: patreon.com/falloutlorecastWatch live at youtube.com/c/robotsradioCheck out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zEAdvertise with us & business inquiries: robotsnetwork@gmail.com", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db" + }, + "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db", + "html_description": "

Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!

In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.

Get awesome rewards & support the show: patreon.com/falloutlorecast

Watch live at youtube.com/c/robotsradio

Check out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zE

Advertise with us & business inquiries: robotsnetwork@gmail.com

", + "id": "0e30iIgSffe6xJhFKe35Db", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d29e54f611da80fb306bf5321", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f29e54f611da80fb306bf5321", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a29e54f611da80fb306bf5321", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Fallout Lorecast - The Fallout Video Game & TV Lore Podcast", + "publisher": "Robots Radio", + "total_episodes": 395, + "type": "show", + "uri": "spotify:show:0e30iIgSffe6xJhFKe35Db" + } }, - "href": "https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV", - "html_description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really.
It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience.
But it’s better than it sounds.", - "id": "4CNsZjGkK371UAnyQgX9jV", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Ed Gamble & Matthew Crosby on Radio X", - "publisher": "Global", - "total_episodes": 286, - "type": "show", - "uri": "spotify:show:4CNsZjGkK371UAnyQgX9jV" - } - }, - { - "added_at": "2020-12-29T01:21:38Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ" + { + "added_at": "2021-03-07T14:12:29Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" + }, + "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", + "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "id": "4BZc9sOdNilJJ8irsuOzdg", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Taskmaster The Podcast", + "publisher": "Avalon ", + "total_episodes": 255, + "type": "show", + "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" + } }, - "href": "https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ", - "html_description": "

We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!

", - "id": "6xglolTDhKYA8OKyM8IgZQ", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db30e55906de336b15c499308", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb30e55906de336b15c499308", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab30e55906de336b15c499308", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "You Can Sit With Us", - "publisher": "The Try Guys & Ramble", - "total_episodes": 222, - "type": "show", - "uri": "spotify:show:6xglolTDhKYA8OKyM8IgZQ" - } - }, - { - "added_at": "2020-12-29T01:21:21Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and risked their lives for their videos. In this weekly podcast they dissect their experiences as internet creators and best friends who have made a living failing upwards.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ" + { + "added_at": "2021-03-06T00:14:09Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq" + }, + "href": "https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq", + "html_description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu.

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "0azMejb7zrmAqctVsUSAdq", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Off Menu with Ed Gamble and James Acaster", + "publisher": "Plosive", + "total_episodes": 368, + "type": "show", + "uri": "spotify:show:0azMejb7zrmAqctVsUSAdq" + } }, - "href": "https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ", - "html_description": "

The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and risked their lives for their videos. In this weekly podcast they dissect their experiences as internet creators and best friends who have made a living failing upwards.

", - "id": "3qCNuzujMoeNsMHp8c79dJ", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68de7770dd365b1590f761809fe", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fe7770dd365b1590f761809fe", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ae7770dd365b1590f761809fe", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The TryPod", - "publisher": "The Try Guys & Ramble", - "total_episodes": 287, - "type": "show", - "uri": "spotify:show:3qCNuzujMoeNsMHp8c79dJ" - } - }, - { - "added_at": "2020-11-06T13:38:49Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA" + { + "added_at": "2021-03-06T00:13:55Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV" + }, + "href": "https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV", + "html_description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really.
It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience.
But it’s better than it sounds.", + "id": "4CNsZjGkK371UAnyQgX9jV", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Ed Gamble & Matthew Crosby on Radio X", + "publisher": "Global", + "total_episodes": 358, + "type": "show", + "uri": "spotify:show:4CNsZjGkK371UAnyQgX9jV" + } }, - "href": "https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA", - "html_description": "

The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.

", - "id": "3OHCFs84lqizjkL4C9bNTA", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db227bbd2d93a8882a8ebb1b0", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb227bbd2d93a8882a8ebb1b0", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab227bbd2d93a8882a8ebb1b0", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Office Ladies", - "publisher": "Audacy & Jenna Fischer and Angela Kinsey", - "total_episodes": 264, - "type": "show", - "uri": "spotify:show:3OHCFs84lqizjkL4C9bNTA" - } - }, - { - "added_at": "2020-08-20T06:52:51Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI" + { + "added_at": "2020-12-29T01:21:38Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ" + }, + "href": "https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ", + "html_description": "

We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!

", + "id": "6xglolTDhKYA8OKyM8IgZQ", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d59da2a4ed5cd8a5809f6904b", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f59da2a4ed5cd8a5809f6904b", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a59da2a4ed5cd8a5809f6904b", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "You Can Sit With Us", + "publisher": "The Try Guys & Ramble", + "total_episodes": 284, + "type": "show", + "uri": "spotify:show:6xglolTDhKYA8OKyM8IgZQ" + } }, - "href": "https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI", - "html_description": "

Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.

", - "id": "6AeemTu3AwFDGkM50OtnbI", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db94dc44503877dcac0a5df9f", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb94dc44503877dcac0a5df9f", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab94dc44503877dcac0a5df9f", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Wat een week!", - "publisher": "Maxim Hartman & Willem Treur", - "total_episodes": 404, - "type": "show", - "uri": "spotify:show:6AeemTu3AwFDGkM50OtnbI" - } - } - ], - "limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total": 10 + { + "added_at": "2020-12-29T01:21:21Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ" + }, + "href": "https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ", + "html_description": "

The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!

", + "id": "3qCNuzujMoeNsMHp8c79dJ", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d403fd54e9434b88f53bddab3", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f403fd54e9434b88f53bddab3", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a403fd54e9434b88f53bddab3", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "mixed", + "name": "The TryPod", + "publisher": "The Try Guys", + "total_episodes": 353, + "type": "show", + "uri": "spotify:show:3qCNuzujMoeNsMHp8c79dJ" + } + }, + { + "added_at": "2020-11-06T13:38:49Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA" + }, + "href": "https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA", + "html_description": "

The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.

", + "id": "3OHCFs84lqizjkL4C9bNTA", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dd106b2a18dc9fa6f52fef9b1", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fd106b2a18dc9fa6f52fef9b1", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ad106b2a18dc9fa6f52fef9b1", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Office Ladies", + "publisher": "Audacy & Jenna Fischer and Angela Kinsey", + "total_episodes": 423, + "type": "show", + "uri": "spotify:show:3OHCFs84lqizjkL4C9bNTA" + } + }, + { + "added_at": "2020-08-20T06:52:51Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI" + }, + "href": "https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI", + "html_description": "

Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.

", + "id": "6AeemTu3AwFDGkM50OtnbI", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d16a7cc88bc0bbef0aed05f4f", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f16a7cc88bc0bbef0aed05f4f", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a16a7cc88bc0bbef0aed05f4f", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "Wat een Week!", + "publisher": "Maxim Hartman & Willem Treur", + "total_episodes": 477, + "type": "show", + "uri": "spotify:show:6AeemTu3AwFDGkM50OtnbI" + } + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 13 } diff --git a/tests/fixtures/saved_tracks.json b/tests/fixtures/saved_tracks.json index 5716535..16414b0 100644 --- a/tests/fixtures/saved_tracks.json +++ b/tests/fixtures/saved_tracks.json @@ -1,9324 +1,21824 @@ { - "href": "https://api.spotify.com/v1/me/tracks?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2024-10-06T11:35:02Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vssQp6TyMHsx4mihKVAsC" - }, - "href": "https://api.spotify.com/v1/artists/5vssQp6TyMHsx4mihKVAsC", - "id": "5vssQp6TyMHsx4mihKVAsC", - "name": "Holly Walker", - "type": "artist", - "uri": "spotify:artist:5vssQp6TyMHsx4mihKVAsC" + "href": "https://api.spotify.com/v1/me/tracks?offset=0&limit=48", + "items": [ + { + "added_at": "2026-02-23T13:28:26Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" + }, + "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", + "id": "1X0ak6iQZOYqdVXzj8Tfbz", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d" + } + ], + "is_playable": true, + "name": "Cold Silver", + "release_date": "2025-10-08", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222242, + "explicit": true, + "external_ids": { "isrc": "USYFZ2565101" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" + }, + "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", + "id": "0Y0PdrwwWtYTFhCY5Kj0iv", + "is_local": false, + "is_playable": true, + "name": "Cold Silver", + "popularity": 36, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3BYf1IG8EqDbhzdpljcFWY" - }, - "href": "https://api.spotify.com/v1/albums/3BYf1IG8EqDbhzdpljcFWY", - "id": "3BYf1IG8EqDbhzdpljcFWY", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ac9dd449e38e5e8952fd22ad" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ac9dd449e38e5e8952fd22ad" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ac9dd449e38e5e8952fd22ad" - } - ], - "is_playable": true, - "name": "Otherside", - "release_date": "2024-10-02", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:3BYf1IG8EqDbhzdpljcFWY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vssQp6TyMHsx4mihKVAsC" - }, - "href": "https://api.spotify.com/v1/artists/5vssQp6TyMHsx4mihKVAsC", - "id": "5vssQp6TyMHsx4mihKVAsC", - "name": "Holly Walker", - "type": "artist", - "uri": "spotify:artist:5vssQp6TyMHsx4mihKVAsC" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 233211, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2300767" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2pj2A25YQK4uMxhZheNx7R" - }, - "href": "https://api.spotify.com/v1/tracks/2pj2A25YQK4uMxhZheNx7R", - "id": "2pj2A25YQK4uMxhZheNx7R", - "is_local": false, - "is_playable": true, - "name": "Otherside", - "popularity": 47, - "preview_url": "https://p.scdn.co/mp3-preview/f18011c5d9a973f85ed8dce6d698e6043efdcf60?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2pj2A25YQK4uMxhZheNx7R" - } - }, - { - "added_at": "2024-10-06T07:37:53Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0HHa7ZJZxUQlg5l2mB0N0f" - }, - "href": "https://api.spotify.com/v1/artists/0HHa7ZJZxUQlg5l2mB0N0f", - "id": "0HHa7ZJZxUQlg5l2mB0N0f", - "name": "Marlon Hoffstadt", - "type": "artist", - "uri": "spotify:artist:0HHa7ZJZxUQlg5l2mB0N0f" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68sTQgQtPe9e4Bb7OtoqET" - }, - "href": "https://api.spotify.com/v1/artists/68sTQgQtPe9e4Bb7OtoqET", - "id": "68sTQgQtPe9e4Bb7OtoqET", - "name": "Crybaby", - "type": "artist", - "uri": "spotify:artist:68sTQgQtPe9e4Bb7OtoqET" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4lBSzo2LS8asEzoePv6VLM" - }, - "href": "https://api.spotify.com/v1/artists/4lBSzo2LS8asEzoePv6VLM", - "id": "4lBSzo2LS8asEzoePv6VLM", - "name": "DJ Daddy Trance", - "type": "artist", - "uri": "spotify:artist:4lBSzo2LS8asEzoePv6VLM" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1ElP3WFqq5sgMcc3ScIR4l" - }, - "href": "https://api.spotify.com/v1/albums/1ElP3WFqq5sgMcc3ScIR4l", - "id": "1ElP3WFqq5sgMcc3ScIR4l", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733d710ab088ff797e80cc5aed" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023d710ab088ff797e80cc5aed" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048513d710ab088ff797e80cc5aed" + { + "added_at": "2026-02-18T23:33:21Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" + }, + "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", + "id": "2GgySUiN0AJwFJLdZCE9Ce", + "name": "Lolita KompleX", + "type": "artist", + "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6voJTR0ZT84lekqx3gyZ2M" + }, + "href": "https://api.spotify.com/v1/albums/6voJTR0ZT84lekqx3gyZ2M", + "id": "6voJTR0ZT84lekqx3gyZ2M", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737be5c309088b465e688dd4e5" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027be5c309088b465e688dd4e5" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517be5c309088b465e688dd4e5" + } + ], + "is_playable": true, + "name": "Escapism", + "release_date": "2019-07-05", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6voJTR0ZT84lekqx3gyZ2M" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" + }, + "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", + "id": "2GgySUiN0AJwFJLdZCE9Ce", + "name": "Lolita KompleX", + "type": "artist", + "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181039, + "explicit": false, + "external_ids": { "isrc": "FR2X41948396" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3TaqQSf0dmZNLen5ogqUH7" + }, + "href": "https://api.spotify.com/v1/tracks/3TaqQSf0dmZNLen5ogqUH7", + "id": "3TaqQSf0dmZNLen5ogqUH7", + "is_local": false, + "is_playable": true, + "name": "Dystopia", + "popularity": 21, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3TaqQSf0dmZNLen5ogqUH7" } - ], - "is_playable": true, - "name": "I Think I Need A DJ", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1ElP3WFqq5sgMcc3ScIR4l" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0HHa7ZJZxUQlg5l2mB0N0f" - }, - "href": "https://api.spotify.com/v1/artists/0HHa7ZJZxUQlg5l2mB0N0f", - "id": "0HHa7ZJZxUQlg5l2mB0N0f", - "name": "Marlon Hoffstadt", - "type": "artist", - "uri": "spotify:artist:0HHa7ZJZxUQlg5l2mB0N0f" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68sTQgQtPe9e4Bb7OtoqET" - }, - "href": "https://api.spotify.com/v1/artists/68sTQgQtPe9e4Bb7OtoqET", - "id": "68sTQgQtPe9e4Bb7OtoqET", - "name": "Crybaby", - "type": "artist", - "uri": "spotify:artist:68sTQgQtPe9e4Bb7OtoqET" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4lBSzo2LS8asEzoePv6VLM" - }, - "href": "https://api.spotify.com/v1/artists/4lBSzo2LS8asEzoePv6VLM", - "id": "4lBSzo2LS8asEzoePv6VLM", - "name": "DJ Daddy Trance", - "type": "artist", - "uri": "spotify:artist:4lBSzo2LS8asEzoePv6VLM" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 155000, - "explicit": false, - "external_ids": { - "isrc": "DEKF22400978" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2lKOI1nwP5qZtZC7TGQVY8" - }, - "href": "https://api.spotify.com/v1/tracks/2lKOI1nwP5qZtZC7TGQVY8", - "id": "2lKOI1nwP5qZtZC7TGQVY8", - "is_local": false, - "is_playable": true, - "name": "I Think I Need A DJ", - "popularity": 53, - "preview_url": "https://p.scdn.co/mp3-preview/ad1c9d47d0f5ed500118e9dfc2558bd77612cae3?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2lKOI1nwP5qZtZC7TGQVY8" - } - }, - { - "added_at": "2024-10-06T07:14:07Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0EdUwJSqkMmsH6Agg3G8Ls" - }, - "href": "https://api.spotify.com/v1/artists/0EdUwJSqkMmsH6Agg3G8Ls", - "id": "0EdUwJSqkMmsH6Agg3G8Ls", - "name": "Marten Hørger", - "type": "artist", - "uri": "spotify:artist:0EdUwJSqkMmsH6Agg3G8Ls" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2nm38smINjms1LtczR0Cei" - }, - "href": "https://api.spotify.com/v1/artists/2nm38smINjms1LtczR0Cei", - "id": "2nm38smINjms1LtczR0Cei", - "name": "Goodboys", - "type": "artist", - "uri": "spotify:artist:2nm38smINjms1LtczR0Cei" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + { + "added_at": "2026-02-17T11:44:29Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" + }, + "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", + "id": "3CjlHNtplJyTf9npxaPl5w", + "name": "CHVRCHES", + "type": "artist", + "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Qabstvdx4TfWujTzy5Gee" + }, + "href": "https://api.spotify.com/v1/albums/3Qabstvdx4TfWujTzy5Gee", + "id": "3Qabstvdx4TfWujTzy5Gee", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a425e7a03d90b49694716fba" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a425e7a03d90b49694716fba" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a425e7a03d90b49694716fba" + } + ], + "is_playable": true, + "name": "Such Great Heights [From \"Tell Me Lies (Season 3)\"]", + "release_date": "2026-02-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3Qabstvdx4TfWujTzy5Gee" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" + }, + "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", + "id": "3CjlHNtplJyTf9npxaPl5w", + "name": "CHVRCHES", + "type": "artist", + "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267976, + "explicit": false, + "external_ids": { "isrc": "USHR12552506" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2UJ5jlXlRkBx4dyVGIEGc0" + }, + "href": "https://api.spotify.com/v1/tracks/2UJ5jlXlRkBx4dyVGIEGc0", + "id": "2UJ5jlXlRkBx4dyVGIEGc0", + "is_local": false, + "is_playable": true, + "name": "Such Great Heights - From \"Tell Me Lies (Season 3)\"", + "popularity": 54, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2UJ5jlXlRkBx4dyVGIEGc0" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5aKEa6uPolubhdjPpBujA4" - }, - "href": "https://api.spotify.com/v1/albums/5aKEa6uPolubhdjPpBujA4", - "id": "5aKEa6uPolubhdjPpBujA4", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ab8c14282c2b7335f647f714" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ab8c14282c2b7335f647f714" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ab8c14282c2b7335f647f714" - } - ], - "is_playable": true, - "name": "Keep On Pushing", - "release_date": "2024-10-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5aKEa6uPolubhdjPpBujA4" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0EdUwJSqkMmsH6Agg3G8Ls" - }, - "href": "https://api.spotify.com/v1/artists/0EdUwJSqkMmsH6Agg3G8Ls", - "id": "0EdUwJSqkMmsH6Agg3G8Ls", - "name": "Marten Hørger", - "type": "artist", - "uri": "spotify:artist:0EdUwJSqkMmsH6Agg3G8Ls" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2nm38smINjms1LtczR0Cei" - }, - "href": "https://api.spotify.com/v1/artists/2nm38smINjms1LtczR0Cei", - "id": "2nm38smINjms1LtczR0Cei", - "name": "Goodboys", - "type": "artist", - "uri": "spotify:artist:2nm38smINjms1LtczR0Cei" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191818, - "explicit": false, - "external_ids": { - "isrc": "BE5KW2400598" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3hxESOoUq0tc9NrI3yfKaE" - }, - "href": "https://api.spotify.com/v1/tracks/3hxESOoUq0tc9NrI3yfKaE", - "id": "3hxESOoUq0tc9NrI3yfKaE", - "is_local": false, - "is_playable": true, - "name": "Keep On Pushing", - "popularity": 31, - "preview_url": "https://p.scdn.co/mp3-preview/84a700d1d5be644ab3e74b058c83dbe545e615d1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3hxESOoUq0tc9NrI3yfKaE" - } - }, - { - "added_at": "2024-10-05T12:38:37Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" - }, - "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", - "id": "17IDrizGUiveZm4P77Kkio", - "name": "Icarus", - "type": "artist", - "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6F5RA03n6HZYIWB7SsqCtI" - }, - "href": "https://api.spotify.com/v1/artists/6F5RA03n6HZYIWB7SsqCtI", - "id": "6F5RA03n6HZYIWB7SsqCtI", - "name": "Quelle T", - "type": "artist", - "uri": "spotify:artist:6F5RA03n6HZYIWB7SsqCtI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1fIhC9q6hrlU3TUIKcUEVD" - }, - "href": "https://api.spotify.com/v1/albums/1fIhC9q6hrlU3TUIKcUEVD", - "id": "1fIhC9q6hrlU3TUIKcUEVD", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737b49ecd18eb7dbe560b64fae" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027b49ecd18eb7dbe560b64fae" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048517b49ecd18eb7dbe560b64fae" + { + "added_at": "2026-02-16T22:56:14Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" + }, + "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", + "id": "4EvbQBS99RXzFGGimAS3i9", + "name": "Blood Stain Child", + "type": "artist", + "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4TQyTokknRMto3WhTdodZK" + }, + "href": "https://api.spotify.com/v1/albums/4TQyTokknRMto3WhTdodZK", + "id": "4TQyTokknRMto3WhTdodZK", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d396dcff123c425a196ac2f1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d396dcff123c425a196ac2f1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d396dcff123c425a196ac2f1" + } + ], + "is_playable": true, + "name": "Epsilon", + "release_date": "2011-06-30", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4TQyTokknRMto3WhTdodZK" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" + }, + "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", + "id": "4EvbQBS99RXzFGGimAS3i9", + "name": "Blood Stain Child", + "type": "artist", + "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261013, + "explicit": false, + "external_ids": { "isrc": "ITY101114003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0YyBaPhV9rGcDhs3dS7V6q" + }, + "href": "https://api.spotify.com/v1/tracks/0YyBaPhV9rGcDhs3dS7V6q", + "id": "0YyBaPhV9rGcDhs3dS7V6q", + "is_local": false, + "is_playable": true, + "name": "Stargazer", + "popularity": 31, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0YyBaPhV9rGcDhs3dS7V6q" } - ], - "is_playable": true, - "name": "Gravity", - "release_date": "2024-09-17", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:1fIhC9q6hrlU3TUIKcUEVD" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" - }, - "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", - "id": "17IDrizGUiveZm4P77Kkio", - "name": "Icarus", - "type": "artist", - "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6F5RA03n6HZYIWB7SsqCtI" - }, - "href": "https://api.spotify.com/v1/artists/6F5RA03n6HZYIWB7SsqCtI", - "id": "6F5RA03n6HZYIWB7SsqCtI", - "name": "Quelle T", - "type": "artist", - "uri": "spotify:artist:6F5RA03n6HZYIWB7SsqCtI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 192129, - "explicit": false, - "external_ids": { - "isrc": "IL6652409586" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4ikKo7qGunFFuTKhWNQm8f" }, - "href": "https://api.spotify.com/v1/tracks/4ikKo7qGunFFuTKhWNQm8f", - "id": "4ikKo7qGunFFuTKhWNQm8f", - "is_local": false, - "is_playable": true, - "name": "Gravity", - "popularity": 18, - "preview_url": "https://p.scdn.co/mp3-preview/6e82ae15df51487d701a25662963090dbe170037?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:4ikKo7qGunFFuTKhWNQm8f" - } - }, - { - "added_at": "2024-10-01T11:23:15Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7uGeDBa1LJ7T1X4fpl8mwk" - }, - "href": "https://api.spotify.com/v1/artists/7uGeDBa1LJ7T1X4fpl8mwk", - "id": "7uGeDBa1LJ7T1X4fpl8mwk", - "name": "Bad Computer", - "type": "artist", - "uri": "spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/22TzutcnmM3B1e7mWLY0f7" - }, - "href": "https://api.spotify.com/v1/artists/22TzutcnmM3B1e7mWLY0f7", - "id": "22TzutcnmM3B1e7mWLY0f7", - "name": "Ryan Coss", - "type": "artist", - "uri": "spotify:artist:22TzutcnmM3B1e7mWLY0f7" + { + "added_at": "2026-02-16T22:27:42Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" + }, + "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", + "id": "6VoutwXXcQBDbcZlmlYbxc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" + } + ], + "is_playable": true, + "name": "Pins And Needles", + "release_date": "2010-09-14", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229600, + "explicit": false, + "external_ids": { "isrc": "US57M1068010" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7Gfg6IiBYzsq1XG9dm1oRG" + }, + "href": "https://api.spotify.com/v1/tracks/7Gfg6IiBYzsq1XG9dm1oRG", + "id": "7Gfg6IiBYzsq1XG9dm1oRG", + "is_local": false, + "is_playable": true, + "name": "Sleepwalking", + "popularity": 42, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7Gfg6IiBYzsq1XG9dm1oRG" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7dPYE1Uoic9mBMFgwcqPaR" - }, - "href": "https://api.spotify.com/v1/albums/7dPYE1Uoic9mBMFgwcqPaR", - "id": "7dPYE1Uoic9mBMFgwcqPaR", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b53ceefc28ae70e4189fbcdc" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b53ceefc28ae70e4189fbcdc" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b53ceefc28ae70e4189fbcdc" - } - ], - "is_playable": true, - "name": "4D", - "release_date": "2024-01-08", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:7dPYE1Uoic9mBMFgwcqPaR" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7uGeDBa1LJ7T1X4fpl8mwk" - }, - "href": "https://api.spotify.com/v1/artists/7uGeDBa1LJ7T1X4fpl8mwk", - "id": "7uGeDBa1LJ7T1X4fpl8mwk", - "name": "Bad Computer", - "type": "artist", - "uri": "spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/22TzutcnmM3B1e7mWLY0f7" - }, - "href": "https://api.spotify.com/v1/artists/22TzutcnmM3B1e7mWLY0f7", - "id": "22TzutcnmM3B1e7mWLY0f7", - "name": "Ryan Coss", - "type": "artist", - "uri": "spotify:artist:22TzutcnmM3B1e7mWLY0f7" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176250, - "explicit": false, - "external_ids": { - "isrc": "CA6D22300484" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2v4bGopODBEOQqWzg31R2s" - }, - "href": "https://api.spotify.com/v1/tracks/2v4bGopODBEOQqWzg31R2s", - "id": "2v4bGopODBEOQqWzg31R2s", - "is_local": false, - "is_playable": true, - "name": "4D", - "popularity": 35, - "preview_url": "https://p.scdn.co/mp3-preview/d6866197316d3ccef455e07a0af5c77fb1764f85?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2v4bGopODBEOQqWzg31R2s" - } - }, - { - "added_at": "2024-09-29T09:59:34Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2oAPxiUkLs3EdFAtYX4Qr5" - }, - "href": "https://api.spotify.com/v1/artists/2oAPxiUkLs3EdFAtYX4Qr5", - "id": "2oAPxiUkLs3EdFAtYX4Qr5", - "name": "Clarke 99", - "type": "artist", - "uri": "spotify:artist:2oAPxiUkLs3EdFAtYX4Qr5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0aUMVkR8QV0LSdv9VZOATn" - }, - "href": "https://api.spotify.com/v1/artists/0aUMVkR8QV0LSdv9VZOATn", - "id": "0aUMVkR8QV0LSdv9VZOATn", - "name": "TEKKNO", - "type": "artist", - "uri": "spotify:artist:0aUMVkR8QV0LSdv9VZOATn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6V1NUr8mrDpCPNinJeyNfZ" - }, - "href": "https://api.spotify.com/v1/albums/6V1NUr8mrDpCPNinJeyNfZ", - "id": "6V1NUr8mrDpCPNinJeyNfZ", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ef63fb7204e1c55217b8a74c" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ef63fb7204e1c55217b8a74c" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ef63fb7204e1c55217b8a74c" + { + "added_at": "2026-02-16T21:15:43Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" + }, + "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", + "id": "6VoutwXXcQBDbcZlmlYbxc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" + } + ], + "is_playable": true, + "name": "Pins And Needles", + "release_date": "2010-09-14", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200266, + "explicit": false, + "external_ids": { "isrc": "US57M1068004" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wRnCFOePoaifD2SmZ7K7B" + }, + "href": "https://api.spotify.com/v1/tracks/6wRnCFOePoaifD2SmZ7K7B", + "id": "6wRnCFOePoaifD2SmZ7K7B", + "is_local": false, + "is_playable": true, + "name": "Control", + "popularity": 35, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6wRnCFOePoaifD2SmZ7K7B" } - ], - "is_playable": true, - "name": "ART DECO - TEKKNO", - "release_date": "2024-04-16", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6V1NUr8mrDpCPNinJeyNfZ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2oAPxiUkLs3EdFAtYX4Qr5" - }, - "href": "https://api.spotify.com/v1/artists/2oAPxiUkLs3EdFAtYX4Qr5", - "id": "2oAPxiUkLs3EdFAtYX4Qr5", - "name": "Clarke 99", - "type": "artist", - "uri": "spotify:artist:2oAPxiUkLs3EdFAtYX4Qr5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0aUMVkR8QV0LSdv9VZOATn" - }, - "href": "https://api.spotify.com/v1/artists/0aUMVkR8QV0LSdv9VZOATn", - "id": "0aUMVkR8QV0LSdv9VZOATn", - "name": "TEKKNO", - "type": "artist", - "uri": "spotify:artist:0aUMVkR8QV0LSdv9VZOATn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198400, - "explicit": false, - "external_ids": { - "isrc": "GX4R52363441" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5wr2qcL5WxTMQyiEzQvANe" - }, - "href": "https://api.spotify.com/v1/tracks/5wr2qcL5WxTMQyiEzQvANe", - "id": "5wr2qcL5WxTMQyiEzQvANe", - "is_local": false, - "is_playable": true, - "name": "ART DECO - (TEKKNO)", - "popularity": 61, - "preview_url": "https://p.scdn.co/mp3-preview/f7791a7541115e2114cf87669931cd2857d1c7d9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:5wr2qcL5WxTMQyiEzQvANe" - } - }, - { - "added_at": "2024-09-24T17:32:09Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/33KABng8GO42ojFJVcABxQ" - }, - "href": "https://api.spotify.com/v1/artists/33KABng8GO42ojFJVcABxQ", - "id": "33KABng8GO42ojFJVcABxQ", - "name": "Eefje de Visser", - "type": "artist", - "uri": "spotify:artist:33KABng8GO42ojFJVcABxQ" + { + "added_at": "2026-02-13T10:59:08Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" + }, + "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", + "id": "1HGrQZLhmqlEuACUnQY7yy", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945" + } + ], + "is_playable": true, + "name": "FATE of ALL", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244360, + "explicit": false, + "external_ids": { "isrc": "QZHN52659492" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" + }, + "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", + "id": "29DpW469MK56dBqxSfzwDs", + "is_local": false, + "is_playable": true, + "name": "FATE of ALL", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6IgSZ5VJ7m1dP5zeaWBUWh" - }, - "href": "https://api.spotify.com/v1/albums/6IgSZ5VJ7m1dP5zeaWBUWh", - "id": "6IgSZ5VJ7m1dP5zeaWBUWh", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27350a44227286817c71bb97caa" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0250a44227286817c71bb97caa" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485150a44227286817c71bb97caa" - } - ], - "is_playable": true, - "name": "Heimwee", - "release_date": "2024-09-13", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:6IgSZ5VJ7m1dP5zeaWBUWh" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/33KABng8GO42ojFJVcABxQ" - }, - "href": "https://api.spotify.com/v1/artists/33KABng8GO42ojFJVcABxQ", - "id": "33KABng8GO42ojFJVcABxQ", - "name": "Eefje de Visser", - "type": "artist", - "uri": "spotify:artist:33KABng8GO42ojFJVcABxQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 224341, - "explicit": false, - "external_ids": { - "isrc": "NLP762400050" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5vs5pCSQ8tzS94nsTwKcrL" - }, - "href": "https://api.spotify.com/v1/tracks/5vs5pCSQ8tzS94nsTwKcrL", - "id": "5vs5pCSQ8tzS94nsTwKcrL", - "is_local": false, - "is_playable": true, - "name": "Weekenden", - "popularity": 45, - "preview_url": "https://p.scdn.co/mp3-preview/cfae7926a6ff0c2c69ba900039b95faeee8e7aa8?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:5vs5pCSQ8tzS94nsTwKcrL" - } - }, - { - "added_at": "2024-09-24T15:30:27Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/59oA5WbbQvomJz2BuRG071" - }, - "href": "https://api.spotify.com/v1/artists/59oA5WbbQvomJz2BuRG071", - "id": "59oA5WbbQvomJz2BuRG071", - "name": "Jungle", - "type": "artist", - "uri": "spotify:artist:59oA5WbbQvomJz2BuRG071" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7CRD6yQGeaAmA5AVXluBul" - }, - "href": "https://api.spotify.com/v1/albums/7CRD6yQGeaAmA5AVXluBul", - "id": "7CRD6yQGeaAmA5AVXluBul", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27315ecd6926b2b357a546b02fc" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0215ecd6926b2b357a546b02fc" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485115ecd6926b2b357a546b02fc" + { + "added_at": "2026-02-11T21:37:52Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" + }, + "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", + "id": "4G9NDjRyZFDlJKMRL8hx3S", + "name": "sombr", + "type": "artist", + "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7mvXPtV4jvA1hp5Wx2FAJA" + }, + "href": "https://api.spotify.com/v1/albums/7mvXPtV4jvA1hp5Wx2FAJA", + "id": "7mvXPtV4jvA1hp5Wx2FAJA", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734229702de91cb3d3a4383302" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024229702de91cb3d3a4383302" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048514229702de91cb3d3a4383302" + } + ], + "is_playable": true, + "name": "I Barely Know Her", + "release_date": "2025-08-22", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:7mvXPtV4jvA1hp5Wx2FAJA" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" + }, + "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", + "id": "4G9NDjRyZFDlJKMRL8hx3S", + "name": "sombr", + "type": "artist", + "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 242903, + "explicit": false, + "external_ids": { "isrc": "USWB12502453" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/05od2qm2MTSKCHxy1GBp5W" + }, + "href": "https://api.spotify.com/v1/tracks/05od2qm2MTSKCHxy1GBp5W", + "id": "05od2qm2MTSKCHxy1GBp5W", + "is_local": false, + "is_playable": true, + "name": "12 to 12", + "popularity": 90, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:05od2qm2MTSKCHxy1GBp5W" } - ], - "is_playable": true, - "name": "Let's Go Back", - "release_date": "2024-09-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:7CRD6yQGeaAmA5AVXluBul" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/59oA5WbbQvomJz2BuRG071" - }, - "href": "https://api.spotify.com/v1/artists/59oA5WbbQvomJz2BuRG071", - "id": "59oA5WbbQvomJz2BuRG071", - "name": "Jungle", - "type": "artist", - "uri": "spotify:artist:59oA5WbbQvomJz2BuRG071" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 169651, - "explicit": false, - "external_ids": { - "isrc": "QM7282461058" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3fvZo45Y28ly1QBo05pujJ" }, - "href": "https://api.spotify.com/v1/tracks/3fvZo45Y28ly1QBo05pujJ", - "id": "3fvZo45Y28ly1QBo05pujJ", - "is_local": false, - "is_playable": true, - "name": "Let's Go Back", - "popularity": 76, - "preview_url": "https://p.scdn.co/mp3-preview/b5a0904c9134b50145b27ab218148c3072db011d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3fvZo45Y28ly1QBo05pujJ" - } - }, - { - "added_at": "2024-09-23T20:29:47Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" - }, - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "name": "Purple Disco Machine", - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" + { + "added_at": "2026-02-10T22:19:19Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" + }, + "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", + "id": "7zt6Af78CalxaPDqORfw8L", + "name": "Annie", + "type": "artist", + "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1dMkUqXlm5b3JxSzBmVIX5" + }, + "href": "https://api.spotify.com/v1/albums/1dMkUqXlm5b3JxSzBmVIX5", + "id": "1dMkUqXlm5b3JxSzBmVIX5", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730570e34fef3c011c35486001" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020570e34fef3c011c35486001" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048510570e34fef3c011c35486001" + } + ], + "is_playable": true, + "name": "Dark Hearts", + "release_date": "2020-10-16", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:1dMkUqXlm5b3JxSzBmVIX5" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" + }, + "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", + "id": "7zt6Af78CalxaPDqORfw8L", + "name": "Annie", + "type": "artist", + "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226869, + "explicit": false, + "external_ids": { "isrc": "NOQVR2001070" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7t1C2Z5kYtmhZGMs5mIFz2" + }, + "href": "https://api.spotify.com/v1/tracks/7t1C2Z5kYtmhZGMs5mIFz2", + "id": "7t1C2Z5kYtmhZGMs5mIFz2", + "is_local": false, + "is_playable": true, + "name": "American Cars", + "popularity": 47, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:7t1C2Z5kYtmhZGMs5mIFz2" } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1jWcipGHDLJ94RMB2XUhgK" - }, - "href": "https://api.spotify.com/v1/albums/1jWcipGHDLJ94RMB2XUhgK", - "id": "1jWcipGHDLJ94RMB2XUhgK", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273fffecb767fcfa6c02c6987f3" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02fffecb767fcfa6c02c6987f3" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851fffecb767fcfa6c02c6987f3" - } - ], - "is_playable": true, - "name": "Paradise", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 15, - "type": "album", - "uri": "spotify:album:1jWcipGHDLJ94RMB2XUhgK" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" - }, - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "name": "Purple Disco Machine", - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4WUGQykLBGFfsl0Qjl6TDM" - }, - "href": "https://api.spotify.com/v1/artists/4WUGQykLBGFfsl0Qjl6TDM", - "id": "4WUGQykLBGFfsl0Qjl6TDM", - "name": "The Magician", - "type": "artist", - "uri": "spotify:artist:4WUGQykLBGFfsl0Qjl6TDM" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202935, - "explicit": false, - "external_ids": { - "isrc": "DEE862401009" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6NOlVkuAFtqTiBInHuqlrs" - }, - "href": "https://api.spotify.com/v1/tracks/6NOlVkuAFtqTiBInHuqlrs", - "id": "6NOlVkuAFtqTiBInHuqlrs", - "is_local": false, - "is_playable": true, - "name": "All My Life", - "popularity": 62, - "preview_url": "https://p.scdn.co/mp3-preview/51596c6f73e467cf866b7759c483f54eedbdc0d1?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 14, - "type": "track", - "uri": "spotify:track:6NOlVkuAFtqTiBInHuqlrs" - } - }, - { - "added_at": "2024-09-19T15:55:57Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0bUZrFj7rstq07E4iAJHgZ" - }, - "href": "https://api.spotify.com/v1/artists/0bUZrFj7rstq07E4iAJHgZ", - "id": "0bUZrFj7rstq07E4iAJHgZ", - "name": "KC Lights", - "type": "artist", - "uri": "spotify:artist:0bUZrFj7rstq07E4iAJHgZ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hlzEVQyBgze0kLOLwTV2r" - }, - "href": "https://api.spotify.com/v1/artists/4hlzEVQyBgze0kLOLwTV2r", - "id": "4hlzEVQyBgze0kLOLwTV2r", - "name": "Welt", - "type": "artist", - "uri": "spotify:artist:4hlzEVQyBgze0kLOLwTV2r" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3NusFNH0u0wmIiKZqoHt6p" - }, - "href": "https://api.spotify.com/v1/albums/3NusFNH0u0wmIiKZqoHt6p", - "id": "3NusFNH0u0wmIiKZqoHt6p", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f792f45a66a0193016e5843f" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f792f45a66a0193016e5843f" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f792f45a66a0193016e5843f" + { + "added_at": "2026-02-10T21:44:05Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" + }, + "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", + "id": "0JXwYf8x27ZfMO2gGuh6HO", + "name": "Brooke Combe", + "type": "artist", + "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7kz0Hn6RArQSJVQfyIqaxp" + }, + "href": "https://api.spotify.com/v1/albums/7kz0Hn6RArQSJVQfyIqaxp", + "id": "7kz0Hn6RArQSJVQfyIqaxp", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27347bda116b82088a2a40fb9c0" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0247bda116b82088a2a40fb9c0" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485147bda116b82088a2a40fb9c0" + } + ], + "is_playable": true, + "name": "Black Is The New Gold", + "release_date": "2023-04-21", + "release_date_precision": "day", + "total_tracks": 8, + "type": "album", + "uri": "spotify:album:7kz0Hn6RArQSJVQfyIqaxp" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" + }, + "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", + "id": "0JXwYf8x27ZfMO2gGuh6HO", + "name": "Brooke Combe", + "type": "artist", + "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 179354, + "explicit": false, + "external_ids": { "isrc": "GBUM72200009" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6xXx3GFDuZe2kaLRbyNqqa" + }, + "href": "https://api.spotify.com/v1/tracks/6xXx3GFDuZe2kaLRbyNqqa", + "id": "6xXx3GFDuZe2kaLRbyNqqa", + "is_local": false, + "is_playable": true, + "name": "Miss Me Now", + "popularity": 36, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6xXx3GFDuZe2kaLRbyNqqa" } - ], - "is_playable": true, - "name": "Fly", - "release_date": "2024-07-12", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:3NusFNH0u0wmIiKZqoHt6p" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0bUZrFj7rstq07E4iAJHgZ" - }, - "href": "https://api.spotify.com/v1/artists/0bUZrFj7rstq07E4iAJHgZ", - "id": "0bUZrFj7rstq07E4iAJHgZ", - "name": "KC Lights", - "type": "artist", - "uri": "spotify:artist:0bUZrFj7rstq07E4iAJHgZ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hlzEVQyBgze0kLOLwTV2r" - }, - "href": "https://api.spotify.com/v1/artists/4hlzEVQyBgze0kLOLwTV2r", - "id": "4hlzEVQyBgze0kLOLwTV2r", - "name": "Welt", - "type": "artist", - "uri": "spotify:artist:4hlzEVQyBgze0kLOLwTV2r" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 168189, - "explicit": false, - "external_ids": { - "isrc": "GBJAJ2400869" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4hB6Riwyg06VWFVgOTiKWz" - }, - "href": "https://api.spotify.com/v1/tracks/4hB6Riwyg06VWFVgOTiKWz", - "id": "4hB6Riwyg06VWFVgOTiKWz", - "is_local": false, - "is_playable": true, - "name": "Fly", - "popularity": 40, - "preview_url": "https://p.scdn.co/mp3-preview/6f6cdaacd5c84d294ff1e70ce6d27328311ec218?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4hB6Riwyg06VWFVgOTiKWz" - } - }, - { - "added_at": "2024-09-14T15:19:51Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M2wZ9GZgrQXHCFfjv46we" - }, - "href": "https://api.spotify.com/v1/artists/6M2wZ9GZgrQXHCFfjv46we", - "id": "6M2wZ9GZgrQXHCFfjv46we", - "name": "Dua Lipa", - "type": "artist", - "uri": "spotify:artist:6M2wZ9GZgrQXHCFfjv46we" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1Mo92916G2mmG7ajpmSVrc" - }, - "href": "https://api.spotify.com/v1/albums/1Mo92916G2mmG7ajpmSVrc", - "id": "1Mo92916G2mmG7ajpmSVrc", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273778c1e4660aa23f6728b32a1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02778c1e4660aa23f6728b32a1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851778c1e4660aa23f6728b32a1" + { + "added_at": "2026-02-10T21:44:04Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7gnf1UNA18n7SThlTZa3CS" + }, + "href": "https://api.spotify.com/v1/albums/7gnf1UNA18n7SThlTZa3CS", + "id": "7gnf1UNA18n7SThlTZa3CS", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acd4f105323904b6cc1cf4e1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acd4f105323904b6cc1cf4e1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acd4f105323904b6cc1cf4e1" + } + ], + "is_playable": true, + "name": "Angel", + "release_date": "2025-02-19", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:7gnf1UNA18n7SThlTZa3CS" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202593, + "explicit": false, + "external_ids": { "isrc": "GBFB92500003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/04GhEfWKEragdPIlf1s8hd" + }, + "href": "https://api.spotify.com/v1/tracks/04GhEfWKEragdPIlf1s8hd", + "id": "04GhEfWKEragdPIlf1s8hd", + "is_local": false, + "is_playable": true, + "name": "Angel", + "popularity": 35, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:04GhEfWKEragdPIlf1s8hd" } - ], - "is_playable": true, - "name": "Radical Optimism", - "release_date": "2024-05-03", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:1Mo92916G2mmG7ajpmSVrc" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M2wZ9GZgrQXHCFfjv46we" - }, - "href": "https://api.spotify.com/v1/artists/6M2wZ9GZgrQXHCFfjv46we", - "id": "6M2wZ9GZgrQXHCFfjv46we", - "name": "Dua Lipa", - "type": "artist", - "uri": "spotify:artist:6M2wZ9GZgrQXHCFfjv46we" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198198, - "explicit": false, - "external_ids": { - "isrc": "GBAHT2400112" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6bAkr9wkQyPM4IDrP4tuwR" - }, - "href": "https://api.spotify.com/v1/tracks/6bAkr9wkQyPM4IDrP4tuwR", - "id": "6bAkr9wkQyPM4IDrP4tuwR", - "is_local": false, - "is_playable": true, - "name": "Whatcha Doing", - "popularity": 64, - "preview_url": "https://p.scdn.co/mp3-preview/96d11a6904d7f10a244425290696c3b85930d3bf?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 5, - "type": "track", - "uri": "spotify:track:6bAkr9wkQyPM4IDrP4tuwR" - } - }, - { - "added_at": "2024-09-13T13:08:40Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l9d7B8W0IHy3LqWsxP2SH" - }, - "href": "https://api.spotify.com/v1/artists/1l9d7B8W0IHy3LqWsxP2SH", - "id": "1l9d7B8W0IHy3LqWsxP2SH", - "name": "Phantogram", - "type": "artist", - "uri": "spotify:artist:1l9d7B8W0IHy3LqWsxP2SH" + { + "added_at": "2026-02-08T21:58:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" + }, + "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", + "id": "05U0USUzKB8vLfdOWggfqC", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491" + } + ], + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217243, + "explicit": true, + "external_ids": { "isrc": "USUG12508483" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" + }, + "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", + "id": "55QDC1UHFcqlnH0xSvvB7T", + "is_local": false, + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "popularity": 63, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4wCx7hQCIOVtuN3DkNGhYm" - }, - "href": "https://api.spotify.com/v1/albums/4wCx7hQCIOVtuN3DkNGhYm", - "id": "4wCx7hQCIOVtuN3DkNGhYm", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27356f72c3ee8aca5233000f7b0" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0256f72c3ee8aca5233000f7b0" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485156f72c3ee8aca5233000f7b0" + }, + { + "added_at": "2026-02-05T23:55:38Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5sq7TecbA0bzgELXZmlXgg" + }, + "href": "https://api.spotify.com/v1/albums/5sq7TecbA0bzgELXZmlXgg", + "id": "5sq7TecbA0bzgELXZmlXgg", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273614f462559ae5b794074f12e" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02614f462559ae5b794074f12e" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851614f462559ae5b794074f12e" + } + ], + "is_playable": true, + "name": "Under the Covers, Vol. II", + "release_date": "2017-10-27", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:5sq7TecbA0bzgELXZmlXgg" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250862, + "explicit": false, + "external_ids": { "isrc": "USHM21773619" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6UbGGbBpSfmFDyG17OFuId" + }, + "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", + "id": "6UbGGbBpSfmFDyG17OFuId", + "is_local": false, + "is_playable": true, + "name": "Rocket Man", + "popularity": 35, + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId" } - ], - "is_playable": true, - "name": "Come Alive", - "release_date": "2024-08-23", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4wCx7hQCIOVtuN3DkNGhYm" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l9d7B8W0IHy3LqWsxP2SH" - }, - "href": "https://api.spotify.com/v1/artists/1l9d7B8W0IHy3LqWsxP2SH", - "id": "1l9d7B8W0IHy3LqWsxP2SH", - "name": "Phantogram", - "type": "artist", - "uri": "spotify:artist:1l9d7B8W0IHy3LqWsxP2SH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 253698, - "explicit": false, - "external_ids": { - "isrc": "USA2P2450378" + { + "added_at": "2026-02-04T19:13:21Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" + }, + "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", + "id": "5R8aSm8lobxbG7h2AjmKAW", + "name": "KROMEA", + "type": "artist", + "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4B5d3LOYzvyPtv8zfFBV9N" + }, + "href": "https://api.spotify.com/v1/albums/4B5d3LOYzvyPtv8zfFBV9N", + "id": "4B5d3LOYzvyPtv8zfFBV9N", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273164b1c0ca47cfe70d742f526" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02164b1c0ca47cfe70d742f526" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851164b1c0ca47cfe70d742f526" + } + ], + "is_playable": true, + "name": "Overtake EP", + "release_date": "2018-05-25", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:4B5d3LOYzvyPtv8zfFBV9N" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" + }, + "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", + "id": "5R8aSm8lobxbG7h2AjmKAW", + "name": "KROMEA", + "type": "artist", + "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222546, + "explicit": false, + "external_ids": { "isrc": "FIVIG1800013" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5KGbSUW1wwV5nOq359erDf" + }, + "href": "https://api.spotify.com/v1/tracks/5KGbSUW1wwV5nOq359erDf", + "id": "5KGbSUW1wwV5nOq359erDf", + "is_local": false, + "is_playable": true, + "name": "Planets", + "popularity": 34, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5KGbSUW1wwV5nOq359erDf" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2TvwhdrUqEDUg0Z7LOmUOd" + { + "added_at": "2026-02-02T14:23:23Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" + }, + "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", + "id": "0JseT2AZzVMKsBlrAywFcO", + "name": "Anavae", + "type": "artist", + "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" + } + ], + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4GO80k3K2QDOrSCeC2ASCn" + }, + "href": "https://api.spotify.com/v1/albums/4GO80k3K2QDOrSCeC2ASCn", + "id": "4GO80k3K2QDOrSCeC2ASCn", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737a2e6ff1c77488da072fbddb" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027a2e6ff1c77488da072fbddb" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517a2e6ff1c77488da072fbddb" + } + ], + "is_playable": true, + "name": "45", + "release_date": "2019-11-01", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4GO80k3K2QDOrSCeC2ASCn" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" + }, + "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", + "id": "0JseT2AZzVMKsBlrAywFcO", + "name": "Anavae", + "type": "artist", + "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" + } + ], + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216823, + "explicit": false, + "external_ids": { "isrc": "GBAJC1900443" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3dOgdq9C19ZyOJCV2qGwWm" + }, + "href": "https://api.spotify.com/v1/tracks/3dOgdq9C19ZyOJCV2qGwWm", + "id": "3dOgdq9C19ZyOJCV2qGwWm", + "is_local": false, + "is_playable": true, + "name": "Human", + "popularity": 38, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3dOgdq9C19ZyOJCV2qGwWm" + } }, - "href": "https://api.spotify.com/v1/tracks/2TvwhdrUqEDUg0Z7LOmUOd", - "id": "2TvwhdrUqEDUg0Z7LOmUOd", - "is_local": false, - "is_playable": true, - "name": "Come Alive", - "popularity": 53, - "preview_url": "https://p.scdn.co/mp3-preview/2b353bcf39bcf8eae6bee6c098c874a8299b5e48?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2TvwhdrUqEDUg0Z7LOmUOd" - } - }, - { - "added_at": "2024-09-09T20:10:14Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7dupCiguCFkYZRisA3foPu" - }, - "href": "https://api.spotify.com/v1/artists/7dupCiguCFkYZRisA3foPu", - "id": "7dupCiguCFkYZRisA3foPu", - "name": "Monie Love", - "type": "artist", - "uri": "spotify:artist:7dupCiguCFkYZRisA3foPu" + { + "added_at": "2026-02-02T13:49:13Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "DJ", + "ZM", + "CG", + "TJ", + "VE", + "ET" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6LuMBvlwocn2SFOE6GcawL" + }, + "href": "https://api.spotify.com/v1/albums/6LuMBvlwocn2SFOE6GcawL", + "id": "6LuMBvlwocn2SFOE6GcawL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e46418c0c40f94f033ad3d73" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e46418c0c40f94f033ad3d73" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e46418c0c40f94f033ad3d73" + } + ], + "is_playable": true, + "name": "Japanese Rooms", + "release_date": "2019-04-19", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:6LuMBvlwocn2SFOE6GcawL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "DJ", + "ZM", + "CG", + "TJ", + "VE", + "ET" + ], + "disc_number": 1, + "duration_ms": 227366, + "explicit": false, + "external_ids": { "isrc": "TCAED1987311" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ikMCoZog1nUFApExQFgo2" + }, + "href": "https://api.spotify.com/v1/tracks/2ikMCoZog1nUFApExQFgo2", + "id": "2ikMCoZog1nUFApExQFgo2", + "is_local": false, + "is_playable": true, + "name": "Far from Heaven", + "popularity": 23, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2ikMCoZog1nUFApExQFgo2" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3QcgmERUy859oM1YDj9hAT" - }, - "href": "https://api.spotify.com/v1/albums/3QcgmERUy859oM1YDj9hAT", - "id": "3QcgmERUy859oM1YDj9hAT", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27320729e6b97543c7aff4545b0" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0220729e6b97543c7aff4545b0" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485120729e6b97543c7aff4545b0" + }, + { + "added_at": "2026-01-30T08:57:30Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2S3PYJxfbcMMxaHOwWXjAq" + }, + "href": "https://api.spotify.com/v1/albums/2S3PYJxfbcMMxaHOwWXjAq", + "id": "2S3PYJxfbcMMxaHOwWXjAq", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d43ddbd12bfe5f282cdb4d2d" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d43ddbd12bfe5f282cdb4d2d" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d43ddbd12bfe5f282cdb4d2d" + } + ], + "is_playable": true, + "name": "21st Century (Digital Boy)", + "release_date": "2026-01-27", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2S3PYJxfbcMMxaHOwWXjAq" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 165282, + "explicit": false, + "external_ids": { "isrc": "USYFZ2677305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/62CvzSF6JMfrNY317ZiNZc" + }, + "href": "https://api.spotify.com/v1/tracks/62CvzSF6JMfrNY317ZiNZc", + "id": "62CvzSF6JMfrNY317ZiNZc", + "is_local": false, + "is_playable": true, + "name": "21st Century (Digital Boy)", + "popularity": 35, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:62CvzSF6JMfrNY317ZiNZc" } - ], - "is_playable": true, - "name": "Down to Earth", - "release_date": "1990-10-20", - "release_date_precision": "day", - "total_tracks": 18, - "type": "album", - "uri": "spotify:album:3QcgmERUy859oM1YDj9hAT" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7dupCiguCFkYZRisA3foPu" - }, - "href": "https://api.spotify.com/v1/artists/7dupCiguCFkYZRisA3foPu", - "id": "7dupCiguCFkYZRisA3foPu", - "name": "Monie Love", - "type": "artist", - "uri": "spotify:artist:7dupCiguCFkYZRisA3foPu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5rWgwZwzlVQb3Ltn6NnIVj" - }, - "href": "https://api.spotify.com/v1/artists/5rWgwZwzlVQb3Ltn6NnIVj", - "id": "5rWgwZwzlVQb3Ltn6NnIVj", - "name": "True Image", - "type": "artist", - "uri": "spotify:artist:5rWgwZwzlVQb3Ltn6NnIVj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222840, - "explicit": false, - "external_ids": { - "isrc": "GBAYK9000063" + { + "added_at": "2026-01-20T22:35:35Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" + }, + "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", + "id": "3vV6kgqJHi1rg46i4Iwzr1", + "name": "Masters of Prophecy", + "type": "artist", + "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4IY5p6bgi73zzEOjKBIXmL" + }, + "href": "https://api.spotify.com/v1/albums/4IY5p6bgi73zzEOjKBIXmL", + "id": "4IY5p6bgi73zzEOjKBIXmL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273235800a8fcf394b99855abac" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02235800a8fcf394b99855abac" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851235800a8fcf394b99855abac" + } + ], + "is_playable": true, + "name": "Liquid Lightning", + "release_date": "2025-11-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4IY5p6bgi73zzEOjKBIXmL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" + }, + "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", + "id": "3vV6kgqJHi1rg46i4Iwzr1", + "name": "Masters of Prophecy", + "type": "artist", + "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 256437, + "explicit": false, + "external_ids": { "isrc": "CBF8B2547992" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1jcctkKfRKJoYNjEKA2k42" + }, + "href": "https://api.spotify.com/v1/tracks/1jcctkKfRKJoYNjEKA2k42", + "id": "1jcctkKfRKJoYNjEKA2k42", + "is_local": false, + "is_playable": true, + "name": "Liquid Lightning", + "popularity": 47, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1jcctkKfRKJoYNjEKA2k42" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6ir6C7AHGMVLGQN7hv7gTA" + { + "added_at": "2026-01-19T09:42:31Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" + }, + "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", + "id": "2ZYmViriDHQS2bzBohrLXj", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe" + } + ], + "is_playable": true, + "name": "Ones And Zeros", + "release_date": "2015-02-18", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 224213, + "explicit": false, + "external_ids": { "isrc": "GBUM71406930" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" + }, + "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", + "id": "0QSMTHdo8JRa7PazhGrbIK", + "is_local": false, + "is_playable": true, + "name": "I Want Out", + "popularity": 29, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + } }, - "href": "https://api.spotify.com/v1/tracks/6ir6C7AHGMVLGQN7hv7gTA", - "id": "6ir6C7AHGMVLGQN7hv7gTA", - "is_local": false, - "is_playable": true, - "name": "It's a Shame (My Sister)", - "popularity": 45, - "preview_url": "https://p.scdn.co/mp3-preview/942547eb03547c24b75f75341c11c273840f6a72?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:6ir6C7AHGMVLGQN7hv7gTA" - } - }, - { - "added_at": "2024-09-08T14:24:25Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2CpLIMBoE2ZzyY3ZBCRZ7j" - }, - "href": "https://api.spotify.com/v1/artists/2CpLIMBoE2ZzyY3ZBCRZ7j", - "id": "2CpLIMBoE2ZzyY3ZBCRZ7j", - "name": "BUNT.", - "type": "artist", - "uri": "spotify:artist:2CpLIMBoE2ZzyY3ZBCRZ7j" + { + "added_at": "2026-01-19T09:37:47Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" + }, + "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", + "id": "10VNoWgGKiAas5dWkpCUHL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0" + } + ], + "is_playable": true, + "name": "Light Back In (Special Metal version)", + "release_date": "2025-08-01", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202805, + "explicit": false, + "external_ids": { "isrc": "DEA372013916" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" + }, + "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", + "id": "34vearIqjyFqWWPZKPPxvH", + "is_local": false, + "is_playable": true, + "name": "Light Back In - Special Metal Version - Radio Edit", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7Gsu8XlxWUsQbFZGajdxdC" - }, - "href": "https://api.spotify.com/v1/albums/7Gsu8XlxWUsQbFZGajdxdC", - "id": "7Gsu8XlxWUsQbFZGajdxdC", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273de9b66fc971d8d7d2fea4fb2" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02de9b66fc971d8d7d2fea4fb2" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851de9b66fc971d8d7d2fea4fb2" + }, + { + "added_at": "2026-01-19T09:05:04Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" + }, + "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", + "id": "5ySYeIhqg4Rfs5tjteVMz3", + "name": "Blondfire", + "type": "artist", + "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0UulNUxyPHQ2Dcnc2fuak7" + }, + "href": "https://api.spotify.com/v1/albums/0UulNUxyPHQ2Dcnc2fuak7", + "id": "0UulNUxyPHQ2Dcnc2fuak7", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737a591fe36aa65157f11de048" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027a591fe36aa65157f11de048" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517a591fe36aa65157f11de048" + } + ], + "is_playable": true, + "name": "True Confessions", + "release_date": "2016-02-05", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:0UulNUxyPHQ2Dcnc2fuak7" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" + }, + "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", + "id": "5ySYeIhqg4Rfs5tjteVMz3", + "name": "Blondfire", + "type": "artist", + "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217708, + "explicit": false, + "external_ids": { "isrc": "TCACL1620223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Th9qF4aR9PJRrSyukyGLx" + }, + "href": "https://api.spotify.com/v1/tracks/5Th9qF4aR9PJRrSyukyGLx", + "id": "5Th9qF4aR9PJRrSyukyGLx", + "is_local": false, + "is_playable": true, + "name": "True Confessions", + "popularity": 29, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5Th9qF4aR9PJRrSyukyGLx" } - ], - "is_playable": true, - "name": "Crown", - "release_date": "2024-08-30", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:7Gsu8XlxWUsQbFZGajdxdC" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2CpLIMBoE2ZzyY3ZBCRZ7j" - }, - "href": "https://api.spotify.com/v1/artists/2CpLIMBoE2ZzyY3ZBCRZ7j", - "id": "2CpLIMBoE2ZzyY3ZBCRZ7j", - "name": "BUNT.", - "type": "artist", - "uri": "spotify:artist:2CpLIMBoE2ZzyY3ZBCRZ7j" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 240937, - "explicit": false, - "external_ids": { - "isrc": "USAR12400253" + { + "added_at": "2026-01-10T10:37:48Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" + }, + "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", + "id": "1jmVSpWhzD8vciWg2Qtd5V", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae" + } + ], + "is_playable": true, + "name": "Think About Us", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178148, + "explicit": false, + "external_ids": { "isrc": "US39N2510213" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" + }, + "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", + "id": "0lRnxwJeUOxwEvWMw4uQKj", + "is_local": false, + "is_playable": true, + "name": "Think About Us", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/48HjuSOCti5mGKg6rUjAfB" + { + "added_at": "2026-01-08T23:48:41Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" + }, + "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", + "id": "3nL6S2DQUe71FicS2UpJ4b", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487" + } + ], + "is_playable": true, + "name": "The Fate of Ophelia - Rock", + "release_date": "2025-10-15", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267697, + "explicit": false, + "external_ids": { "isrc": "MXA3V2454127" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" + }, + "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", + "id": "7sa0Obv4Y9y7rpIYhudEu7", + "is_local": false, + "is_playable": true, + "name": "The Fate of Ophelia", + "popularity": 56, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" + } }, - "href": "https://api.spotify.com/v1/tracks/48HjuSOCti5mGKg6rUjAfB", - "id": "48HjuSOCti5mGKg6rUjAfB", - "is_local": false, - "is_playable": true, - "name": "Crown", - "popularity": 62, - "preview_url": "https://p.scdn.co/mp3-preview/1f63dc93e8dece0be4f8e24f58830edd19805252?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:48HjuSOCti5mGKg6rUjAfB" - } - }, - { - "added_at": "2024-09-08T14:06:07Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + { + "added_at": "2026-01-08T23:30:42Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3oj49xNyRWGKpWXI6I8p8U" + }, + "href": "https://api.spotify.com/v1/albums/3oj49xNyRWGKpWXI6I8p8U", + "id": "3oj49xNyRWGKpWXI6I8p8U", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731980c65519ce49d2471700e6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021980c65519ce49d2471700e6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048511980c65519ce49d2471700e6" + } + ], + "is_playable": true, + "name": "Somebody Else", + "release_date": "2025-12-03", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:3oj49xNyRWGKpWXI6I8p8U" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225085, + "explicit": true, + "external_ids": { "isrc": "USYFZ2572602" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4YpWdFAPE72zuMkQe2bE47" + }, + "href": "https://api.spotify.com/v1/tracks/4YpWdFAPE72zuMkQe2bE47", + "id": "4YpWdFAPE72zuMkQe2bE47", + "is_local": false, + "is_playable": true, + "name": "Somebody Else", + "popularity": 33, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4YpWdFAPE72zuMkQe2bE47" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5mBSawja8ThkqKHqMagoCk" - }, - "href": "https://api.spotify.com/v1/albums/5mBSawja8ThkqKHqMagoCk", - "id": "5mBSawja8ThkqKHqMagoCk", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736d59f0706b0e4a8fbc0908fe" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026d59f0706b0e4a8fbc0908fe" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048516d59f0706b0e4a8fbc0908fe" + }, + { + "added_at": "2026-01-06T14:23:27Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" + }, + "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", + "id": "4DWnSG0RYPAds8EIKY26q3", + "name": "Blue Stahli", + "type": "artist", + "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6wZ6bHs81VeaqrAP7LYax1" + }, + "href": "https://api.spotify.com/v1/albums/6wZ6bHs81VeaqrAP7LYax1", + "id": "6wZ6bHs81VeaqrAP7LYax1", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27320d06426954869610e4a052f" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0220d06426954869610e4a052f" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485120d06426954869610e4a052f" + } + ], + "is_playable": true, + "name": "The Devil (Deluxe Edition)", + "release_date": "2015-10-02", + "release_date_precision": "day", + "total_tracks": 23, + "type": "album", + "uri": "spotify:album:6wZ6bHs81VeaqrAP7LYax1" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" + }, + "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", + "id": "4DWnSG0RYPAds8EIKY26q3", + "name": "Blue Stahli", + "type": "artist", + "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227386, + "explicit": false, + "external_ids": { "isrc": "QMDA71333541" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6roRQM5LLinr2ScyOh1ZHw" + }, + "href": "https://api.spotify.com/v1/tracks/6roRQM5LLinr2ScyOh1ZHw", + "id": "6roRQM5LLinr2ScyOh1ZHw", + "is_local": false, + "is_playable": true, + "name": "The Fall", + "popularity": 40, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6roRQM5LLinr2ScyOh1ZHw" } - ], - "is_playable": true, - "name": "All You Children", - "release_date": "2024-07-30", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:5mBSawja8ThkqKHqMagoCk" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" - }, - "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", - "id": "3C8RpaI3Go0yFF9whvKoED", - "name": "The Avalanches", - "type": "artist", - "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 254142, - "explicit": false, - "external_ids": { - "isrc": "UK7MC2400057" + { + "added_at": "2026-01-05T21:54:42Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", + "id": "3ZdwtiZ6iYOtkRtFq2tmO9", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75" + } + ], + "is_playable": true, + "name": "The Gospel of Nil - Revised Standard Version", + "release_date": "2016-10-06", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194085, + "explicit": false, + "external_ids": { "isrc": "TCACP1623532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" + }, + "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", + "id": "6vy64DzPmsCUNue0FpmM6r", + "is_local": false, + "is_playable": true, + "name": "Mono Heart", + "popularity": 29, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1zYuc5YFYlFfSSq6IslHVY" + { + "added_at": "2026-01-05T21:22:46Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" + }, + "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", + "id": "54apQNp3ruFrK20sYZvmdf", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95" + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 1", + "release_date": "2025-09-24", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_ids": { "isrc": "QT3F22572862" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" + }, + "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", + "id": "0f56nfzpUaXE6t5E3oza3q", + "is_local": false, + "is_playable": true, + "name": "Arrow splitter", + "popularity": 37, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + } }, - "href": "https://api.spotify.com/v1/tracks/1zYuc5YFYlFfSSq6IslHVY", - "id": "1zYuc5YFYlFfSSq6IslHVY", - "is_local": false, - "is_playable": true, - "name": "All You Children", - "popularity": 62, - "preview_url": "https://p.scdn.co/mp3-preview/ff3fc064f340e47347d4677332daf6da8155ae38?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1zYuc5YFYlFfSSq6IslHVY" - } - }, - { - "added_at": "2024-09-08T13:24:33Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + { + "added_at": "2026-01-05T10:41:32Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" + }, + "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", + "id": "4Xv90HE4uhD2e71SV7gSEZ", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813" + } + ], + "is_playable": true, + "name": "Home Arcade", + "release_date": "2025-05-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176280, + "explicit": false, + "external_ids": { "isrc": "QT3TB2405473" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" + }, + "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", + "id": "0qvDlGZL5TnvV80AMH3lYf", + "is_local": false, + "is_playable": true, + "name": "Touching the Sky", + "popularity": 34, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3DQueEd1Ft9PHWgovDzPKh" - }, - "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh", - "id": "3DQueEd1Ft9PHWgovDzPKh", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736b8a4828e057b7dc1c4a4d39" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026b8a4828e057b7dc1c4a4d39" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048516b8a4828e057b7dc1c4a4d39" + }, + { + "added_at": "2026-01-05T10:35:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" + }, + "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", + "id": "3Wcyta3gkOdQ4TfY0WyZpu", + "name": "YONAKA", + "type": "artist", + "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3PO0IfUeN5wVemwQlYSIVa" + }, + "href": "https://api.spotify.com/v1/albums/3PO0IfUeN5wVemwQlYSIVa", + "id": "3PO0IfUeN5wVemwQlYSIVa", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273903ede5546f4ef01bf4240ef" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02903ede5546f4ef01bf4240ef" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851903ede5546f4ef01bf4240ef" + } + ], + "is_playable": true, + "name": "CREATURE", + "release_date": "2018-11-16", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3PO0IfUeN5wVemwQlYSIVa" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" + }, + "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", + "id": "3Wcyta3gkOdQ4TfY0WyZpu", + "name": "YONAKA", + "type": "artist", + "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190206, + "explicit": false, + "external_ids": { "isrc": "GBAHS1800707" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ldVaFbdm2axVLe6TQox6H" + }, + "href": "https://api.spotify.com/v1/tracks/1ldVaFbdm2axVLe6TQox6H", + "id": "1ldVaFbdm2axVLe6TQox6H", + "is_local": false, + "is_playable": true, + "name": "Death By Love", + "popularity": 34, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1ldVaFbdm2axVLe6TQox6H" } - ], - "is_playable": true, - "name": "ten days", - "release_date": "2024-09-06", - "release_date_precision": "day", - "total_tracks": 20, - "type": "album", - "uri": "spotify:album:3DQueEd1Ft9PHWgovDzPKh" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3IunaFjvNKj98JW89JYv9u" - }, - "href": "https://api.spotify.com/v1/artists/3IunaFjvNKj98JW89JYv9u", - "id": "3IunaFjvNKj98JW89JYv9u", - "name": "The Japanese House", - "type": "artist", - "uri": "spotify:artist:3IunaFjvNKj98JW89JYv9u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M98IZJK2tx6x2YVyHua9K" - }, - "href": "https://api.spotify.com/v1/artists/6M98IZJK2tx6x2YVyHua9K", - "id": "6M98IZJK2tx6x2YVyHua9K", - "name": "Scott Hardkiss", - "type": "artist", - "uri": "spotify:artist:6M98IZJK2tx6x2YVyHua9K" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 314007, - "explicit": false, - "external_ids": { - "isrc": "GBAHS2400524" + { + "added_at": "2026-01-03T22:26:12Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" + }, + "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", + "id": "4enJurkJhWYJxokouQ02ky", + "name": "Paperwater", + "type": "artist", + "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7i4Kb4tSmsvXWTM399KKct" + }, + "href": "https://api.spotify.com/v1/albums/7i4Kb4tSmsvXWTM399KKct", + "id": "7i4Kb4tSmsvXWTM399KKct", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f73aa7e970746c696069a52f" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f73aa7e970746c696069a52f" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f73aa7e970746c696069a52f" + } + ], + "is_playable": true, + "name": "GIRL I WANT YOU", + "release_date": "2025-09-11", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:7i4Kb4tSmsvXWTM399KKct" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" + }, + "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", + "id": "4enJurkJhWYJxokouQ02ky", + "name": "Paperwater", + "type": "artist", + "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211653, + "explicit": false, + "external_ids": { "isrc": "USLD91782518" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5ocaIFjQEcuZni3guyHoHl" + }, + "href": "https://api.spotify.com/v1/tracks/5ocaIFjQEcuZni3guyHoHl", + "id": "5ocaIFjQEcuZni3guyHoHl", + "is_local": false, + "is_playable": true, + "name": "GIRL I WANT YOU", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5ocaIFjQEcuZni3guyHoHl" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO" + { + "added_at": "2026-01-02T22:02:50Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" + }, + "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", + "id": "2729tzbbE6CeRuFmbGOUry", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c" + } + ], + "is_playable": true, + "name": "Steelbound", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230786, + "explicit": false, + "external_ids": { "isrc": "DED832500343" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" + }, + "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", + "id": "5CEM8PzhisIOQAr8TmG79e", + "is_local": false, + "is_playable": true, + "name": "Riders Of The Storm", + "popularity": 45, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" + } }, - "href": "https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO", - "id": "61pyjiweMDS1h930OgS0XO", - "is_local": false, - "is_playable": true, - "name": "backseat", - "popularity": 66, - "preview_url": "https://p.scdn.co/mp3-preview/f14667711679c1f2c09e356ed12f1a1fad7464ac?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 20, - "type": "track", - "uri": "spotify:track:61pyjiweMDS1h930OgS0XO" - } - }, - { - "added_at": "2024-09-08T13:06:11Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1np8xozf7ATJZDi9JX8Dx5" - }, - "href": "https://api.spotify.com/v1/artists/1np8xozf7ATJZDi9JX8Dx5", - "id": "1np8xozf7ATJZDi9JX8Dx5", - "name": "salute", - "type": "artist", - "uri": "spotify:artist:1np8xozf7ATJZDi9JX8Dx5" + { + "added_at": "2026-01-02T18:49:02Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/301WuaWtWbDOlsAih6cITQ" + }, + "href": "https://api.spotify.com/v1/albums/301WuaWtWbDOlsAih6cITQ", + "id": "301WuaWtWbDOlsAih6cITQ", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a39a5a7a9213a9b107c716ac" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a39a5a7a9213a9b107c716ac" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a39a5a7a9213a9b107c716ac" + } + ], + "is_playable": true, + "name": "Raveyard", + "release_date": "2025-09-03", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:301WuaWtWbDOlsAih6cITQ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6LkMGN0t3HDNL8hIvma70r" + }, + "href": "https://api.spotify.com/v1/artists/6LkMGN0t3HDNL8hIvma70r", + "id": "6LkMGN0t3HDNL8hIvma70r", + "name": "K\u00e4\u00e4rij\u00e4", + "type": "artist", + "uri": "spotify:artist:6LkMGN0t3HDNL8hIvma70r" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225307, + "explicit": false, + "external_ids": { "isrc": "ATN262540305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2GJVCzNulP71igNkJtJ9ZO" + }, + "href": "https://api.spotify.com/v1/tracks/2GJVCzNulP71igNkJtJ9ZO", + "id": "2GJVCzNulP71igNkJtJ9ZO", + "is_local": false, + "is_playable": true, + "name": "Raveyard (feat. K\u00e4\u00e4rij\u00e4)", + "popularity": 41, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2GJVCzNulP71igNkJtJ9ZO" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0K7hOcNhAGs54ANFnXw6uM" - }, - "href": "https://api.spotify.com/v1/albums/0K7hOcNhAGs54ANFnXw6uM", - "id": "0K7hOcNhAGs54ANFnXw6uM", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f38ea35a4cbce6ef51f2a176" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f38ea35a4cbce6ef51f2a176" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f38ea35a4cbce6ef51f2a176" + }, + { + "added_at": "2026-01-02T18:30:43Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" + }, + "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", + "id": "4pQN0GB0fNEEOfQCaWotsY", + "name": "Helloween", + "type": "artist", + "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MO", + "MR", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5oFAGk4EQNN5uEah2C5HWI" + }, + "href": "https://api.spotify.com/v1/albums/5oFAGk4EQNN5uEah2C5HWI", + "id": "5oFAGk4EQNN5uEah2C5HWI", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273399785f2588d4b348a1b246c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02399785f2588d4b348a1b246c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851399785f2588d4b348a1b246c" + } + ], + "is_playable": true, + "name": "Giants & Monsters", + "release_date": "2025-08-29", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5oFAGk4EQNN5uEah2C5HWI" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" + }, + "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", + "id": "4pQN0GB0fNEEOfQCaWotsY", + "name": "Helloween", + "type": "artist", + "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MO", + "MR", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 210253, + "explicit": true, + "external_ids": { "isrc": "DE1KY2506517" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4uFUalyidCKsnJbFCzRmhs" + }, + "href": "https://api.spotify.com/v1/tracks/4uFUalyidCKsnJbFCzRmhs", + "id": "4uFUalyidCKsnJbFCzRmhs", + "is_local": false, + "is_playable": true, + "name": "A Little Is A Little Too Much", + "popularity": 48, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4uFUalyidCKsnJbFCzRmhs" } - ], - "is_playable": true, - "name": "TRUE MAGIC", - "release_date": "2024-07-12", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:0K7hOcNhAGs54ANFnXw6uM" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1np8xozf7ATJZDi9JX8Dx5" - }, - "href": "https://api.spotify.com/v1/artists/1np8xozf7ATJZDi9JX8Dx5", - "id": "1np8xozf7ATJZDi9JX8Dx5", - "name": "salute", - "type": "artist", - "uri": "spotify:artist:1np8xozf7ATJZDi9JX8Dx5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KEqzdPS7M5YwGmiuPTdr5" - }, - "href": "https://api.spotify.com/v1/artists/2KEqzdPS7M5YwGmiuPTdr5", - "id": "2KEqzdPS7M5YwGmiuPTdr5", - "name": "Rina Sawayama", - "type": "artist", - "uri": "spotify:artist:2KEqzdPS7M5YwGmiuPTdr5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 210785, - "explicit": false, - "external_ids": { - "isrc": "GBCFB2400153" + { + "added_at": "2025-12-29T20:40:58Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" + }, + "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", + "id": "3iCJOi5YKh247eutgCyLFe", + "name": "I See Stars", + "type": "artist", + "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0wk685JsrY5zGqCjXtcLBv" + }, + "href": "https://api.spotify.com/v1/albums/0wk685JsrY5zGqCjXtcLBv", + "id": "0wk685JsrY5zGqCjXtcLBv", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27339e218ccf7e285fa70e18ea2" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0239e218ccf7e285fa70e18ea2" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485139e218ccf7e285fa70e18ea2" + } + ], + "is_playable": true, + "name": "THE WHEEL", + "release_date": "2025-09-12", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:0wk685JsrY5zGqCjXtcLBv" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" + }, + "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", + "id": "3iCJOi5YKh247eutgCyLFe", + "name": "I See Stars", + "type": "artist", + "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209000, + "explicit": false, + "external_ids": { "isrc": "USYFZ2554003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lkPcWWGuj2q9YHox1GWZE" + }, + "href": "https://api.spotify.com/v1/tracks/0lkPcWWGuj2q9YHox1GWZE", + "id": "0lkPcWWGuj2q9YHox1GWZE", + "is_local": false, + "is_playable": true, + "name": "Eliminator", + "popularity": 37, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0lkPcWWGuj2q9YHox1GWZE" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5s54Ts1rJwUwaxQqoTC4jQ" + { + "added_at": "2025-12-27T19:39:06Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" + }, + "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", + "id": "6KpFTQPwkK9hY39Tl7Wggv", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9" + } + ], + "is_playable": true, + "name": "Otherside", + "release_date": "2025-12-19", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 192000, + "explicit": false, + "external_ids": { "isrc": "DEH742537818" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" + }, + "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", + "id": "07Zj558j9j9TWq7HIcTFZn", + "is_local": false, + "is_playable": true, + "name": "Otherside", + "popularity": 44, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" + } }, - "href": "https://api.spotify.com/v1/tracks/5s54Ts1rJwUwaxQqoTC4jQ", - "id": "5s54Ts1rJwUwaxQqoTC4jQ", - "is_local": false, - "is_playable": true, - "name": "saving flowers", - "popularity": 49, - "preview_url": "https://p.scdn.co/mp3-preview/fc28938fecde443cc99a8a3f9b4f09674414a7ce?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:5s54Ts1rJwUwaxQqoTC4jQ" - } - }, - { - "added_at": "2024-09-08T11:56:12Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nki7yRhxgM509M5ADlN1p" - }, - "href": "https://api.spotify.com/v1/artists/5nki7yRhxgM509M5ADlN1p", - "id": "5nki7yRhxgM509M5ADlN1p", - "name": "Oliver Heldens", - "type": "artist", - "uri": "spotify:artist:5nki7yRhxgM509M5ADlN1p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" - }, - "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", - "id": "1Cs0zKBU1kc0i8ypK3B9ai", - "name": "David Guetta", - "type": "artist", - "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/56Qz2XwGj7FxnNKrfkWjnb" - }, - "href": "https://api.spotify.com/v1/artists/56Qz2XwGj7FxnNKrfkWjnb", - "id": "56Qz2XwGj7FxnNKrfkWjnb", - "name": "FAST BOY", - "type": "artist", - "uri": "spotify:artist:56Qz2XwGj7FxnNKrfkWjnb" + { + "added_at": "2025-12-23T21:27:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" + }, + "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", + "id": "2OMCroH113OoIxVbMUwtSY", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647" + } + ], + "is_playable": true, + "name": "Beg For More", + "release_date": "2020-07-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203586, + "explicit": false, + "external_ids": { "isrc": "GBKQU2075409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" + }, + "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", + "id": "6DEsqinq33fSFFMj6MoEH3", + "is_local": false, + "is_playable": true, + "name": "Beg For More", + "popularity": 31, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5D3qYKt4IFBEQENqzzlh1Y" - }, - "href": "https://api.spotify.com/v1/albums/5D3qYKt4IFBEQENqzzlh1Y", - "id": "5D3qYKt4IFBEQENqzzlh1Y", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a37595d03e9df79b71a9640f" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a37595d03e9df79b71a9640f" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a37595d03e9df79b71a9640f" + }, + { + "added_at": "2025-12-23T20:55:47Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" + }, + "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", + "id": "0V8zk3mDbTH54fs1bdqx8y", + "name": "Ari Mason", + "type": "artist", + "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/58JgOCCyTnvjCq08A0Cl2Q" + }, + "href": "https://api.spotify.com/v1/albums/58JgOCCyTnvjCq08A0Cl2Q", + "id": "58JgOCCyTnvjCq08A0Cl2Q", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ab0eef579685053904e2328c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ab0eef579685053904e2328c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ab0eef579685053904e2328c" + } + ], + "is_playable": true, + "name": "Creatures", + "release_date": "2016-03-25", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:58JgOCCyTnvjCq08A0Cl2Q" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" + }, + "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", + "id": "0V8zk3mDbTH54fs1bdqx8y", + "name": "Ari Mason", + "type": "artist", + "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206535, + "explicit": false, + "external_ids": { "isrc": "USY251636239" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6cRk4120UqIZziStFd0Ma3" + }, + "href": "https://api.spotify.com/v1/tracks/6cRk4120UqIZziStFd0Ma3", + "id": "6cRk4120UqIZziStFd0Ma3", + "is_local": false, + "is_playable": true, + "name": "Beasts Tonight", + "popularity": 43, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6cRk4120UqIZziStFd0Ma3" } - ], - "is_playable": true, - "name": "Chills (Feel My Love)", - "release_date": "2024-07-26", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5D3qYKt4IFBEQENqzzlh1Y" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nki7yRhxgM509M5ADlN1p" - }, - "href": "https://api.spotify.com/v1/artists/5nki7yRhxgM509M5ADlN1p", - "id": "5nki7yRhxgM509M5ADlN1p", - "name": "Oliver Heldens", - "type": "artist", - "uri": "spotify:artist:5nki7yRhxgM509M5ADlN1p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" - }, - "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", - "id": "1Cs0zKBU1kc0i8ypK3B9ai", - "name": "David Guetta", - "type": "artist", - "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/56Qz2XwGj7FxnNKrfkWjnb" - }, - "href": "https://api.spotify.com/v1/artists/56Qz2XwGj7FxnNKrfkWjnb", - "id": "56Qz2XwGj7FxnNKrfkWjnb", - "name": "FAST BOY", - "type": "artist", - "uri": "spotify:artist:56Qz2XwGj7FxnNKrfkWjnb" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 163399, - "explicit": false, - "external_ids": { - "isrc": "GBCEN2400145" + { + "added_at": "2025-12-23T20:32:48Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" + }, + "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", + "id": "3gjygQY5Q2P3b5F1ZIP0Dj", + "name": "BLACKBOOK", + "type": "artist", + "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7y3DJ8V7R0MbyhbxLL0qvr" + }, + "href": "https://api.spotify.com/v1/albums/7y3DJ8V7R0MbyhbxLL0qvr", + "id": "7y3DJ8V7R0MbyhbxLL0qvr", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27367da077ab4a88a567edb4713" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0267da077ab4a88a567edb4713" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485167da077ab4a88a567edb4713" + } + ], + "is_playable": true, + "name": "Wait Until Midnight", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:7y3DJ8V7R0MbyhbxLL0qvr" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" + }, + "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", + "id": "3gjygQY5Q2P3b5F1ZIP0Dj", + "name": "BLACKBOOK", + "type": "artist", + "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197760, + "explicit": false, + "external_ids": { "isrc": "DEWG82500207" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/72rDdFFIDIu7QsBUoSYKim" + }, + "href": "https://api.spotify.com/v1/tracks/72rDdFFIDIu7QsBUoSYKim", + "id": "72rDdFFIDIu7QsBUoSYKim", + "is_local": false, + "is_playable": true, + "name": "Wait Until Midnight", + "popularity": 28, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:72rDdFFIDIu7QsBUoSYKim" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0jjE8w7Rtu3NCImWhKKX8x" + { + "added_at": "2025-12-23T20:10:24Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" + }, + "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", + "id": "28NEaGWW9MKwryzTsFX8ko", + "name": "Arctis", + "type": "artist", + "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0dEhAHwtBRfkm3kFvlA4de" + }, + "href": "https://api.spotify.com/v1/albums/0dEhAHwtBRfkm3kFvlA4de", + "id": "0dEhAHwtBRfkm3kFvlA4de", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737b5803a0b230a775fa79f322" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027b5803a0b230a775fa79f322" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517b5803a0b230a775fa79f322" + } + ], + "is_playable": true, + "name": "Arctis", + "release_date": "2024-11-01", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:0dEhAHwtBRfkm3kFvlA4de" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" + }, + "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", + "id": "28NEaGWW9MKwryzTsFX8ko", + "name": "Arctis", + "type": "artist", + "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_ids": { "isrc": "ATN262435001" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3JygLXJ44lWW4PgwFJHnef" + }, + "href": "https://api.spotify.com/v1/tracks/3JygLXJ44lWW4PgwFJHnef", + "id": "3JygLXJ44lWW4PgwFJHnef", + "is_local": false, + "is_playable": true, + "name": "I'll Give You Hell", + "popularity": 28, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3JygLXJ44lWW4PgwFJHnef" + } }, - "href": "https://api.spotify.com/v1/tracks/0jjE8w7Rtu3NCImWhKKX8x", - "id": "0jjE8w7Rtu3NCImWhKKX8x", - "is_local": false, - "is_playable": true, - "name": "Chills (Feel My Love)", - "popularity": 68, - "preview_url": "https://p.scdn.co/mp3-preview/d4745399babdc6b7f6abb7229d5fa618d43eb96f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0jjE8w7Rtu3NCImWhKKX8x" - } - }, - { - "added_at": "2024-09-08T11:22:23Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/67hb7towEyKvt5Z8Bx306c" - }, - "href": "https://api.spotify.com/v1/artists/67hb7towEyKvt5Z8Bx306c", - "id": "67hb7towEyKvt5Z8Bx306c", - "name": "Empire Of The Sun", - "type": "artist", - "uri": "spotify:artist:67hb7towEyKvt5Z8Bx306c" + { + "added_at": "2025-12-22T00:08:16Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" + }, + "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", + "id": "586uxXMyD5ObPuzjtrzO1Q", + "name": "SOFI TUKKER", + "type": "artist", + "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2yYylDKJUY5NCfv4YsZpZW" + }, + "href": "https://api.spotify.com/v1/albums/2yYylDKJUY5NCfv4YsZpZW", + "id": "2yYylDKJUY5NCfv4YsZpZW", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27347ce7985d84e6715a97cecd8" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0247ce7985d84e6715a97cecd8" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485147ce7985d84e6715a97cecd8" + } + ], + "is_playable": true, + "name": "One On One", + "release_date": "2023-12-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2yYylDKJUY5NCfv4YsZpZW" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" + }, + "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", + "id": "586uxXMyD5ObPuzjtrzO1Q", + "name": "SOFI TUKKER", + "type": "artist", + "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212252, + "explicit": false, + "external_ids": { "isrc": "QM37X2300009" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2xmlpRPQUA3lR6HYaeYv7g" + }, + "href": "https://api.spotify.com/v1/tracks/2xmlpRPQUA3lR6HYaeYv7g", + "id": "2xmlpRPQUA3lR6HYaeYv7g", + "is_local": false, + "is_playable": true, + "name": "One On One", + "popularity": 51, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2xmlpRPQUA3lR6HYaeYv7g" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5iEtQfZATfimid3Ogvce5m" - }, - "href": "https://api.spotify.com/v1/albums/5iEtQfZATfimid3Ogvce5m", - "id": "5iEtQfZATfimid3Ogvce5m", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273539b85bf093856207373e138" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02539b85bf093856207373e138" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851539b85bf093856207373e138" + }, + { + "added_at": "2025-12-20T23:34:26Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" + }, + "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", + "id": "2MdFJmUQf3ckA99IhFF9my", + "name": "Ely Oaks", + "type": "artist", + "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/45DVKreI7RJd1QX49dRJOS" + }, + "href": "https://api.spotify.com/v1/albums/45DVKreI7RJd1QX49dRJOS", + "id": "45DVKreI7RJd1QX49dRJOS", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27372b1caa2ab6a5f2221b555ca" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0272b1caa2ab6a5f2221b555ca" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485172b1caa2ab6a5f2221b555ca" + } + ], + "is_playable": true, + "name": "Breakin' Dishes", + "release_date": "2025-09-12", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:45DVKreI7RJd1QX49dRJOS" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" + }, + "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", + "id": "2MdFJmUQf3ckA99IhFF9my", + "name": "Ely Oaks", + "type": "artist", + "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 133517, + "explicit": false, + "external_ids": { "isrc": "DE1N22500077" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rTvXpSq6fDU1PitJlmnhm" + }, + "href": "https://api.spotify.com/v1/tracks/3rTvXpSq6fDU1PitJlmnhm", + "id": "3rTvXpSq6fDU1PitJlmnhm", + "is_local": false, + "is_playable": true, + "name": "Breakin' Dishes", + "popularity": 64, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rTvXpSq6fDU1PitJlmnhm" } - ], - "is_playable": true, - "name": "Ask That God", - "release_date": "2024-07-26", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:5iEtQfZATfimid3Ogvce5m" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/67hb7towEyKvt5Z8Bx306c" - }, - "href": "https://api.spotify.com/v1/artists/67hb7towEyKvt5Z8Bx306c", - "id": "67hb7towEyKvt5Z8Bx306c", - "name": "Empire Of The Sun", - "type": "artist", - "uri": "spotify:artist:67hb7towEyKvt5Z8Bx306c" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207587, - "explicit": false, - "external_ids": { - "isrc": "AU2DY2400111" + { + "added_at": "2025-12-19T22:42:45Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0PrVmVD88Xk509v7BOT6a2" + }, + "href": "https://api.spotify.com/v1/albums/0PrVmVD88Xk509v7BOT6a2", + "id": "0PrVmVD88Xk509v7BOT6a2", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c62cf08cee6bff48127078ea" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c62cf08cee6bff48127078ea" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c62cf08cee6bff48127078ea" + } + ], + "is_playable": true, + "name": "Bitters\u00fc\u00df", + "release_date": "2025-02-14", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:0PrVmVD88Xk509v7BOT6a2" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183893, + "explicit": false, + "external_ids": { "isrc": "DEE862401925" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1H92AxiNEizRr0crbIJRGo" + }, + "href": "https://api.spotify.com/v1/tracks/1H92AxiNEizRr0crbIJRGo", + "id": "1H92AxiNEizRr0crbIJRGo", + "is_local": false, + "is_playable": true, + "name": "Winnetou", + "popularity": 39, + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1H92AxiNEizRr0crbIJRGo" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7eqIZPAPLQhkjSVTzBT7UR" + { + "added_at": "2025-12-18T21:39:07Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" + }, + "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", + "id": "6pIRdCtSE5hLFfIfcTAicI", + "name": "Delain", + "type": "artist", + "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4cGfPdyycjpZp07DbCJtbY" + }, + "href": "https://api.spotify.com/v1/albums/4cGfPdyycjpZp07DbCJtbY", + "id": "4cGfPdyycjpZp07DbCJtbY", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738e13be833e2f32f132a1a27b" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028e13be833e2f32f132a1a27b" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518e13be833e2f32f132a1a27b" + } + ], + "is_playable": true, + "name": "We Are The Others", + "release_date": "2012-06-01", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4cGfPdyycjpZp07DbCJtbY" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" + }, + "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", + "id": "6pIRdCtSE5hLFfIfcTAicI", + "name": "Delain", + "type": "artist", + "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 199280, + "explicit": false, + "external_ids": { "isrc": "NLA241208409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6uKvnGeg6xgzPTH3QSPTB6" + }, + "href": "https://api.spotify.com/v1/tracks/6uKvnGeg6xgzPTH3QSPTB6", + "id": "6uKvnGeg6xgzPTH3QSPTB6", + "is_local": false, + "is_playable": true, + "name": "We Are The Others", + "popularity": 44, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6uKvnGeg6xgzPTH3QSPTB6" + } }, - "href": "https://api.spotify.com/v1/tracks/7eqIZPAPLQhkjSVTzBT7UR", - "id": "7eqIZPAPLQhkjSVTzBT7UR", - "is_local": false, - "is_playable": true, - "name": "Cherry Blossom", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/9eab68d73c5b0d8f6b6d69c1b07af4d0539935cd?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:7eqIZPAPLQhkjSVTzBT7UR" - } - }, - { - "added_at": "2024-09-06T20:46:53Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4MVyzYMgTwdP7Z49wAZHx0" - }, - "href": "https://api.spotify.com/v1/artists/4MVyzYMgTwdP7Z49wAZHx0", - "id": "4MVyzYMgTwdP7Z49wAZHx0", - "name": "Lynyrd Skynyrd", - "type": "artist", - "uri": "spotify:artist:4MVyzYMgTwdP7Z49wAZHx0" + { + "added_at": "2025-12-18T21:15:33Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3cyWbMuXwDiHTOzkydUWwN" + }, + "href": "https://api.spotify.com/v1/albums/3cyWbMuXwDiHTOzkydUWwN", + "id": "3cyWbMuXwDiHTOzkydUWwN", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d07c5fb903eb78c45840ffd3" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d07c5fb903eb78c45840ffd3" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d07c5fb903eb78c45840ffd3" + } + ], + "is_playable": true, + "name": "Like A Witch", + "release_date": "2025-12-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3cyWbMuXwDiHTOzkydUWwN" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 188522, + "explicit": false, + "external_ids": { "isrc": "ITG272600036" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4BRNp7hCB6HXAT4Pmjs20q" + }, + "href": "https://api.spotify.com/v1/tracks/4BRNp7hCB6HXAT4Pmjs20q", + "id": "4BRNp7hCB6HXAT4Pmjs20q", + "is_local": false, + "is_playable": true, + "name": "Like A Witch", + "popularity": 13, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4BRNp7hCB6HXAT4Pmjs20q" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6DExt1eX4lflLacVjHHbOs" - }, - "href": "https://api.spotify.com/v1/albums/6DExt1eX4lflLacVjHHbOs", - "id": "6DExt1eX4lflLacVjHHbOs", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02128450651c9f0442780d8eb8" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851128450651c9f0442780d8eb8" + }, + { + "added_at": "2025-12-18T18:27:31Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" + }, + "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", + "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", + "name": "ORDO M'ERA LUNA", + "type": "artist", + "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6x0GKK1wLHJpQlRg9NViiB" + }, + "href": "https://api.spotify.com/v1/albums/6x0GKK1wLHJpQlRg9NViiB", + "id": "6x0GKK1wLHJpQlRg9NViiB", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273283ac365388db9cf8f6533cc" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02283ac365388db9cf8f6533cc" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851283ac365388db9cf8f6533cc" + } + ], + "is_playable": true, + "name": "Dark Heart Of The Moon", + "release_date": "2025-05-09", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6x0GKK1wLHJpQlRg9NViiB" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" + }, + "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", + "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", + "name": "ORDO M'ERA LUNA", + "type": "artist", + "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214093, + "explicit": false, + "external_ids": { "isrc": "DEBZ72500118" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0kqIcYezyGQTiXeQFEbJ4m" + }, + "href": "https://api.spotify.com/v1/tracks/0kqIcYezyGQTiXeQFEbJ4m", + "id": "0kqIcYezyGQTiXeQFEbJ4m", + "is_local": false, + "is_playable": true, + "name": "Dark Heart Of The Moon", + "popularity": 38, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0kqIcYezyGQTiXeQFEbJ4m" } - ], - "is_playable": true, - "name": "Pronounced' Leh-'Nerd 'Skin-'Nerd", - "release_date": "1973-01-01", - "release_date_precision": "day", - "total_tracks": 8, - "type": "album", - "uri": "spotify:album:6DExt1eX4lflLacVjHHbOs" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4MVyzYMgTwdP7Z49wAZHx0" - }, - "href": "https://api.spotify.com/v1/artists/4MVyzYMgTwdP7Z49wAZHx0", - "id": "4MVyzYMgTwdP7Z49wAZHx0", - "name": "Lynyrd Skynyrd", - "type": "artist", - "uri": "spotify:artist:4MVyzYMgTwdP7Z49wAZHx0" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 547106, - "explicit": false, - "external_ids": { - "isrc": "USMC17301722" + { + "added_at": "2025-12-15T22:57:12Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" + }, + "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", + "id": "6gePAokYlEquPQ4LDVc1ri", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099" + } + ], + "is_playable": true, + "name": "I Run", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 129565, + "explicit": false, + "external_ids": { "isrc": "CA5KR2603887" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" + }, + "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", + "id": "1WwQ714xuznu44tEnkem2g", + "is_local": false, + "is_playable": true, + "name": "I Run", + "popularity": 86, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" + } }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5EWPGh7jbTNO2wakv8LjUI" + { + "added_at": "2025-12-15T22:51:25Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" + }, + "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", + "id": "1iEczV3pKJ9MPmRvYGB9bz", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381" + } + ], + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 120578, + "explicit": false, + "external_ids": { "isrc": "GBUM72504512" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" + }, + "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", + "id": "1OcV53oesLQw3VTW9I3uD3", + "is_local": false, + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" + } }, - "href": "https://api.spotify.com/v1/tracks/5EWPGh7jbTNO2wakv8LjUI", - "id": "5EWPGh7jbTNO2wakv8LjUI", - "is_local": false, - "is_playable": true, - "name": "Free Bird", - "popularity": 76, - "preview_url": "https://p.scdn.co/mp3-preview/52d7f7506e9ac5e3fc059183c2db33f0dfd9b8e4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:5EWPGh7jbTNO2wakv8LjUI" - } - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/me/tracks?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 4816 + { + "added_at": "2025-12-15T22:51:17Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4MkZ4elzb1iHTMmzyYh1Jc" + }, + "href": "https://api.spotify.com/v1/albums/4MkZ4elzb1iHTMmzyYh1Jc", + "id": "4MkZ4elzb1iHTMmzyYh1Jc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c49f59a5fb56e49d55b36558" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c49f59a5fb56e49d55b36558" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c49f59a5fb56e49d55b36558" + } + ], + "is_playable": true, + "name": "On & On", + "release_date": "2025-03-14", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4MkZ4elzb1iHTMmzyYh1Jc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 184827, + "explicit": false, + "external_ids": { "isrc": "GBUM72500754" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2B0xsnWUjm7cPLs9gGoepp" + }, + "href": "https://api.spotify.com/v1/tracks/2B0xsnWUjm7cPLs9gGoepp", + "id": "2B0xsnWUjm7cPLs9gGoepp", + "is_local": false, + "is_playable": true, + "name": "On & On", + "popularity": 61, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2B0xsnWUjm7cPLs9gGoepp" + } + } + ], + "limit": 48, + "next": "https://api.spotify.com/v1/me/tracks?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 5320 } diff --git a/tests/fixtures/search.json b/tests/fixtures/search.json index ae08e95..cecc154 100644 --- a/tests/fixtures/search.json +++ b/tests/fixtures/search.json @@ -1,24981 +1,2253 @@ { - "tracks": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=track&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=track&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 112, - "items": [ - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7jVv8c5Fj3E9VhNjxT4snq" - }, - "href": "https://api.spotify.com/v1/artists/7jVv8c5Fj3E9VhNjxT4snq", - "id": "7jVv8c5Fj3E9VhNjxT4snq", - "name": "Lil Nas X", - "type": "artist", - "uri": "spotify:artist:7jVv8c5Fj3E9VhNjxT4snq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4IRiXE5NROxknUSAUSjMoO" - }, - "href": "https://api.spotify.com/v1/albums/4IRiXE5NROxknUSAUSjMoO", - "id": "4IRiXE5NROxknUSAUSjMoO", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736239187793c9e492e687db01" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026239187793c9e492e687db01" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048516239187793c9e492e687db01" - } - ], - "is_playable": true, - "name": "7", - "release_date": "2019-06-21", - "release_date_precision": "day", - "total_tracks": 8, - "type": "album", - "uri": "spotify:album:4IRiXE5NROxknUSAUSjMoO" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7jVv8c5Fj3E9VhNjxT4snq" - }, - "href": "https://api.spotify.com/v1/artists/7jVv8c5Fj3E9VhNjxT4snq", - "id": "7jVv8c5Fj3E9VhNjxT4snq", - "name": "Lil Nas X", - "type": "artist", - "uri": "spotify:artist:7jVv8c5Fj3E9VhNjxT4snq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60rpJ9SgigSd16DOAG7GSa" - }, - "href": "https://api.spotify.com/v1/artists/60rpJ9SgigSd16DOAG7GSa", - "id": "60rpJ9SgigSd16DOAG7GSa", - "name": "Billy Ray Cyrus", - "type": "artist", - "uri": "spotify:artist:60rpJ9SgigSd16DOAG7GSa" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157066, - "explicit": false, - "external_ids": { - "isrc": "USSM11902498" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2YpeDb67231RjR0MgVLzsG" - }, - "href": "https://api.spotify.com/v1/tracks/2YpeDb67231RjR0MgVLzsG", - "id": "2YpeDb67231RjR0MgVLzsG", - "is_local": false, - "is_playable": true, - "name": "Old Town Road (feat. Billy Ray Cyrus) - Remix", - "popularity": 71, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2YpeDb67231RjR0MgVLzsG" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iqEVZEav7vIiv1HStr6Gx" - }, - "href": "https://api.spotify.com/v1/artists/4iqEVZEav7vIiv1HStr6Gx", - "id": "4iqEVZEav7vIiv1HStr6Gx", - "name": "Detailed", - "type": "artist", - "uri": "spotify:artist:4iqEVZEav7vIiv1HStr6Gx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iH754eigCrs80sQ08MFAx" - }, - "href": "https://api.spotify.com/v1/artists/7iH754eigCrs80sQ08MFAx", - "id": "7iH754eigCrs80sQ08MFAx", - "name": "Damaxy", - "type": "artist", - "uri": "spotify:artist:7iH754eigCrs80sQ08MFAx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/02XORqPIterIIxAtmd0vAv" - }, - "href": "https://api.spotify.com/v1/albums/02XORqPIterIIxAtmd0vAv", - "id": "02XORqPIterIIxAtmd0vAv", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731338ff43064f5569b688d84e" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021338ff43064f5569b688d84e" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048511338ff43064f5569b688d84e" - } - ], - "is_playable": true, - "name": "Oldschool", - "release_date": "2025-01-23", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:02XORqPIterIIxAtmd0vAv" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iqEVZEav7vIiv1HStr6Gx" - }, - "href": "https://api.spotify.com/v1/artists/4iqEVZEav7vIiv1HStr6Gx", - "id": "4iqEVZEav7vIiv1HStr6Gx", - "name": "Detailed", - "type": "artist", - "uri": "spotify:artist:4iqEVZEav7vIiv1HStr6Gx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iH754eigCrs80sQ08MFAx" - }, - "href": "https://api.spotify.com/v1/artists/7iH754eigCrs80sQ08MFAx", - "id": "7iH754eigCrs80sQ08MFAx", - "name": "Damaxy", - "type": "artist", - "uri": "spotify:artist:7iH754eigCrs80sQ08MFAx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 142863, - "explicit": false, - "external_ids": { - "isrc": "GBKQU2505333" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0aQx9BI4PXvBt570HA18LF" - }, - "href": "https://api.spotify.com/v1/tracks/0aQx9BI4PXvBt570HA18LF", - "id": "0aQx9BI4PXvBt570HA18LF", - "is_local": false, - "is_playable": true, - "name": "Oldschool", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0aQx9BI4PXvBt570HA18LF" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm" - }, - "href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm", - "id": "6v8FB84lnmJs434UJf2Mrm", - "name": "Neil Young", - "type": "artist", - "uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2l3QxNo4QubBNmVKxLeum0" - }, - "href": "https://api.spotify.com/v1/albums/2l3QxNo4QubBNmVKxLeum0", - "id": "2l3QxNo4QubBNmVKxLeum0", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27340007250b3b5624f2c63d050" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0240007250b3b5624f2c63d050" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485140007250b3b5624f2c63d050" - } - ], - "is_playable": true, - "name": "Harvest (2009 Remaster)", - "release_date": "1972-02-14", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:2l3QxNo4QubBNmVKxLeum0" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm" - }, - "href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm", - "id": "6v8FB84lnmJs434UJf2Mrm", - "name": "Neil Young", - "type": "artist", - "uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202146, - "explicit": false, - "external_ids": { - "isrc": "USRE10900203" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/16XeptMdlJTWWeIrwEAOvv" - }, - "href": "https://api.spotify.com/v1/tracks/16XeptMdlJTWWeIrwEAOvv", - "id": "16XeptMdlJTWWeIrwEAOvv", - "is_local": false, - "is_playable": true, - "name": "Old Man - 2009 Remaster", - "popularity": 56, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:16XeptMdlJTWWeIrwEAOvv" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/485uL27bPomh29R4JmQehQ" - }, - "href": "https://api.spotify.com/v1/artists/485uL27bPomh29R4JmQehQ", - "id": "485uL27bPomh29R4JmQehQ", - "name": "Bob Seger", - "type": "artist", - "uri": "spotify:artist:485uL27bPomh29R4JmQehQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1vhib5WLHRVdOpRjiTHk15" - }, - "href": "https://api.spotify.com/v1/albums/1vhib5WLHRVdOpRjiTHk15", - "id": "1vhib5WLHRVdOpRjiTHk15", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ef063cb80508c55eb443a671" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ef063cb80508c55eb443a671" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ef063cb80508c55eb443a671" - } - ], - "is_playable": true, - "name": "Stranger In Town", - "release_date": "1978-05-05", - "release_date_precision": "day", - "total_tracks": 9, - "type": "album", - "uri": "spotify:album:1vhib5WLHRVdOpRjiTHk15" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/485uL27bPomh29R4JmQehQ" - }, - "href": "https://api.spotify.com/v1/artists/485uL27bPomh29R4JmQehQ", - "id": "485uL27bPomh29R4JmQehQ", - "name": "Bob Seger", - "type": "artist", - "uri": "spotify:artist:485uL27bPomh29R4JmQehQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194146, - "explicit": false, - "external_ids": { - "isrc": "USCA28600270" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5EOoMWIB9iK4ZpcSex9Ec7" - }, - "href": "https://api.spotify.com/v1/tracks/5EOoMWIB9iK4ZpcSex9Ec7", - "id": "5EOoMWIB9iK4ZpcSex9Ec7", - "is_local": false, - "is_playable": true, - "name": "Old Time Rock & Roll", - "popularity": 73, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5EOoMWIB9iK4ZpcSex9Ec7" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2m62cc253Xvd9qYQ8d2X3d" - }, - "href": "https://api.spotify.com/v1/artists/2m62cc253Xvd9qYQ8d2X3d", - "id": "2m62cc253Xvd9qYQ8d2X3d", - "name": "The Alan Parsons Project", - "type": "artist", - "uri": "spotify:artist:2m62cc253Xvd9qYQ8d2X3d" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/71Y6kburF8k1qyHycovHy8" - }, - "href": "https://api.spotify.com/v1/albums/71Y6kburF8k1qyHycovHy8", - "id": "71Y6kburF8k1qyHycovHy8", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27353e0b5a9dc6df5dbc1b9fa4c" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0253e0b5a9dc6df5dbc1b9fa4c" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485153e0b5a9dc6df5dbc1b9fa4c" - } - ], - "is_playable": true, - "name": "Eye In The Sky", - "release_date": "1982-06-01", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:71Y6kburF8k1qyHycovHy8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2m62cc253Xvd9qYQ8d2X3d" - }, - "href": "https://api.spotify.com/v1/artists/2m62cc253Xvd9qYQ8d2X3d", - "id": "2m62cc253Xvd9qYQ8d2X3d", - "name": "The Alan Parsons Project", - "type": "artist", - "uri": "spotify:artist:2m62cc253Xvd9qYQ8d2X3d" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 295253, - "explicit": false, - "external_ids": { - "isrc": "USAR19700022" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5qdlMWYpCtJFsHey3rXYms" - }, - "href": "https://api.spotify.com/v1/tracks/5qdlMWYpCtJFsHey3rXYms", - "id": "5qdlMWYpCtJFsHey3rXYms", - "is_local": false, - "is_playable": true, - "name": "Old and Wise", - "popularity": 53, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:5qdlMWYpCtJFsHey3rXYms" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/38GSybQjdc6sxptciOkxMq" - }, - "href": "https://api.spotify.com/v1/artists/38GSybQjdc6sxptciOkxMq", - "id": "38GSybQjdc6sxptciOkxMq", - "name": "Zaho de Sagazan", - "type": "artist", - "uri": "spotify:artist:38GSybQjdc6sxptciOkxMq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2txHhyCwHjUEpJjWrEyqyX" - }, - "href": "https://api.spotify.com/v1/artists/2txHhyCwHjUEpJjWrEyqyX", - "id": "2txHhyCwHjUEpJjWrEyqyX", - "name": "Tom Odell", - "type": "artist", - "uri": "spotify:artist:2txHhyCwHjUEpJjWrEyqyX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0CpNzhfwbhpNppmpHO8aRg" - }, - "href": "https://api.spotify.com/v1/albums/0CpNzhfwbhpNppmpHO8aRg", - "id": "0CpNzhfwbhpNppmpHO8aRg", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735759ec9338c8174f283ed9e8" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025759ec9338c8174f283ed9e8" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048515759ec9338c8174f283ed9e8" - } - ], - "is_playable": true, - "name": "Old Friend", - "release_date": "2024-10-22", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:0CpNzhfwbhpNppmpHO8aRg" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/38GSybQjdc6sxptciOkxMq" - }, - "href": "https://api.spotify.com/v1/artists/38GSybQjdc6sxptciOkxMq", - "id": "38GSybQjdc6sxptciOkxMq", - "name": "Zaho de Sagazan", - "type": "artist", - "uri": "spotify:artist:38GSybQjdc6sxptciOkxMq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2txHhyCwHjUEpJjWrEyqyX" - }, - "href": "https://api.spotify.com/v1/artists/2txHhyCwHjUEpJjWrEyqyX", - "id": "2txHhyCwHjUEpJjWrEyqyX", - "name": "Tom Odell", - "type": "artist", - "uri": "spotify:artist:2txHhyCwHjUEpJjWrEyqyX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157491, - "explicit": false, - "external_ids": { - "isrc": "FR9W12446114" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4h5wTcOMYy6cw47yYoFqNq" - }, - "href": "https://api.spotify.com/v1/tracks/4h5wTcOMYy6cw47yYoFqNq", - "id": "4h5wTcOMYy6cw47yYoFqNq", - "is_local": false, - "is_playable": true, - "name": "Old Friend", - "popularity": 55, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4h5wTcOMYy6cw47yYoFqNq" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1ZPGzmbFTn8GRjqTqnLiFE" - }, - "href": "https://api.spotify.com/v1/artists/1ZPGzmbFTn8GRjqTqnLiFE", - "id": "1ZPGzmbFTn8GRjqTqnLiFE", - "name": "Niklas Dee", - "type": "artist", - "uri": "spotify:artist:1ZPGzmbFTn8GRjqTqnLiFE" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v2YWK8EvCyut0QtBcAypu" - }, - "href": "https://api.spotify.com/v1/artists/6v2YWK8EvCyut0QtBcAypu", - "id": "6v2YWK8EvCyut0QtBcAypu", - "name": "Old Jim", - "type": "artist", - "uri": "spotify:artist:6v2YWK8EvCyut0QtBcAypu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61PUjJm9JH5ck3LxD6RypE" - }, - "href": "https://api.spotify.com/v1/artists/61PUjJm9JH5ck3LxD6RypE", - "id": "61PUjJm9JH5ck3LxD6RypE", - "name": "Enny-Mae", - "type": "artist", - "uri": "spotify:artist:61PUjJm9JH5ck3LxD6RypE" - } - ], - "available_markets": [ - "BE", - "CW", - "GB", - "IE", - "LU", - "NL" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1AZMsxk3pIuRbzZ4mH5N9f" - }, - "href": "https://api.spotify.com/v1/albums/1AZMsxk3pIuRbzZ4mH5N9f", - "id": "1AZMsxk3pIuRbzZ4mH5N9f", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273d061f5bfae8d38558f3698c1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851d061f5bfae8d38558f3698c1" - } - ], - "is_playable": true, - "name": "Not Fair", - "release_date": "2023-06-02", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1AZMsxk3pIuRbzZ4mH5N9f" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1ZPGzmbFTn8GRjqTqnLiFE" - }, - "href": "https://api.spotify.com/v1/artists/1ZPGzmbFTn8GRjqTqnLiFE", - "id": "1ZPGzmbFTn8GRjqTqnLiFE", - "name": "Niklas Dee", - "type": "artist", - "uri": "spotify:artist:1ZPGzmbFTn8GRjqTqnLiFE" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v2YWK8EvCyut0QtBcAypu" - }, - "href": "https://api.spotify.com/v1/artists/6v2YWK8EvCyut0QtBcAypu", - "id": "6v2YWK8EvCyut0QtBcAypu", - "name": "Old Jim", - "type": "artist", - "uri": "spotify:artist:6v2YWK8EvCyut0QtBcAypu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61PUjJm9JH5ck3LxD6RypE" - }, - "href": "https://api.spotify.com/v1/artists/61PUjJm9JH5ck3LxD6RypE", - "id": "61PUjJm9JH5ck3LxD6RypE", - "name": "Enny-Mae", - "type": "artist", - "uri": "spotify:artist:61PUjJm9JH5ck3LxD6RypE" - } - ], - "available_markets": [ - "BE", - "CW", - "GB", - "IE", - "LU", - "NL" - ], - "disc_number": 1, - "duration_ms": 163034, - "explicit": false, - "external_ids": { - "isrc": "DEN062300306" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5rL9LobdwAwFch2J8CiosG" - }, - "href": "https://api.spotify.com/v1/tracks/5rL9LobdwAwFch2J8CiosG", - "id": "5rL9LobdwAwFch2J8CiosG", - "is_local": false, - "is_playable": true, - "name": "Not Fair", - "popularity": 62, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5rL9LobdwAwFch2J8CiosG" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm" - }, - "href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm", - "id": "6v8FB84lnmJs434UJf2Mrm", - "name": "Neil Young", - "type": "artist", - "uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm" + "tracks": { + "href": "https://api.spotify.com/v1/search?offset=0&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", + "limit": 5, + "next": "https://api.spotify.com/v1/search?offset=5&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", + "offset": 0, + "previous": null, + "total": 16, + "items": [ + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" + }, + "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", + "id": "0gxyHStUsqpMadRV0Di1Qt", + "name": "Rick Astley", + "type": "artist", + "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6eUW0wxWtzkFdaEFsTJto6" + }, + "href": "https://api.spotify.com/v1/albums/6eUW0wxWtzkFdaEFsTJto6", + "id": "6eUW0wxWtzkFdaEFsTJto6", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27315ebbedaacef61af244262a8" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0215ebbedaacef61af244262a8" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485115ebbedaacef61af244262a8" + } + ], + "is_playable": true, + "name": "Whenever You Need Somebody", + "release_date": "1987-11-12", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:6eUW0wxWtzkFdaEFsTJto6" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" + }, + "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", + "id": "0gxyHStUsqpMadRV0Di1Qt", + "name": "Rick Astley", + "type": "artist", + "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 213573, + "explicit": false, + "external_ids": { "isrc": "GBARL9300135" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8" + }, + "href": "https://api.spotify.com/v1/tracks/4PTG3Z6ehGkBFwjybzWkR8", + "id": "4PTG3Z6ehGkBFwjybzWkR8", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 78, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4PTG3Z6ehGkBFwjybzWkR8" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" + }, + "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", + "id": "1mYgKcXdbklH5RwjU6XA8c", + "name": "Sekou", + "type": "artist", + "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1yXHaolBuecNtg6qZllfno" + }, + "href": "https://api.spotify.com/v1/albums/1yXHaolBuecNtg6qZllfno", + "id": "1yXHaolBuecNtg6qZllfno", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27360ea77d78d3d377266a216de" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0260ea77d78d3d377266a216de" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485160ea77d78d3d377266a216de" + } + ], + "is_playable": true, + "name": "Never Gunna Give You Up", + "release_date": "2025-10-03", + "release_date_precision": "day", + "total_tracks": 2, + "type": "album", + "uri": "spotify:album:1yXHaolBuecNtg6qZllfno" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" + }, + "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", + "id": "1mYgKcXdbklH5RwjU6XA8c", + "name": "Sekou", + "type": "artist", + "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 165315, + "explicit": false, + "external_ids": { "isrc": "GBUM72505545" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5juAS6AmOceMjFnlUaJQr2" + }, + "href": "https://api.spotify.com/v1/tracks/5juAS6AmOceMjFnlUaJQr2", + "id": "5juAS6AmOceMjFnlUaJQr2", + "is_local": false, + "is_playable": true, + "name": "Never Gunna Give You Up", + "popularity": 58, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5juAS6AmOceMjFnlUaJQr2" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" + }, + "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", + "id": "1K8Sk2nWCEIqOsGPT1cV9Q", + "name": "Harlem Dance Club", + "type": "artist", + "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2cGYid81TxVdEc4UPo3h9x" + }, + "href": "https://api.spotify.com/v1/albums/2cGYid81TxVdEc4UPo3h9x", + "id": "2cGYid81TxVdEc4UPo3h9x", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273135d2ae166774541e2630370" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02135d2ae166774541e2630370" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851135d2ae166774541e2630370" + } + ], + "is_playable": true, + "name": "Never Gonna Give You Up", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2cGYid81TxVdEc4UPo3h9x" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" + }, + "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", + "id": "1K8Sk2nWCEIqOsGPT1cV9Q", + "name": "Harlem Dance Club", + "type": "artist", + "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 193231, + "explicit": false, + "external_ids": { "isrc": "QZHNC2668731" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0EuQ4KOfNmQX9RQt8BN9gG" + }, + "href": "https://api.spotify.com/v1/tracks/0EuQ4KOfNmQX9RQt8BN9gG", + "id": "0EuQ4KOfNmQX9RQt8BN9gG", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 20, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0EuQ4KOfNmQX9RQt8BN9gG" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4y32ym1lHG1X3sahnZqOkF" + }, + "href": "https://api.spotify.com/v1/albums/4y32ym1lHG1X3sahnZqOkF", + "id": "4y32ym1lHG1X3sahnZqOkF", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ea165b51f57f46cb58bd7ac2" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ea165b51f57f46cb58bd7ac2" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ea165b51f57f46cb58bd7ac2" + } + ], + "is_playable": true, + "name": "Kapena and More!", + "release_date": "1990-11-14", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:4y32ym1lHG1X3sahnZqOkF" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191796, + "explicit": false, + "external_ids": { "isrc": "USX9P1306179" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0PAiAlK1oyPeWvet3ZVmfE" + }, + "href": "https://api.spotify.com/v1/tracks/0PAiAlK1oyPeWvet3ZVmfE", + "id": "0PAiAlK1oyPeWvet3ZVmfE", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 36, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0PAiAlK1oyPeWvet3ZVmfE" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7jcahaVnc8W0Yf4cog7Lho" + }, + "href": "https://api.spotify.com/v1/albums/7jcahaVnc8W0Yf4cog7Lho", + "id": "7jcahaVnc8W0Yf4cog7Lho", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f857e22fae01830dda2d96fe" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f857e22fae01830dda2d96fe" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f857e22fae01830dda2d96fe" + } + ], + "is_playable": true, + "name": "30", + "release_date": "2015-12-28", + "release_date_precision": "day", + "total_tracks": 30, + "type": "album", + "uri": "spotify:album:7jcahaVnc8W0Yf4cog7Lho" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191053, + "explicit": false, + "external_ids": { "isrc": "USCGJ1621993" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3XQsHKA5zyxVkavbQ5d79m" + }, + "href": "https://api.spotify.com/v1/tracks/3XQsHKA5zyxVkavbQ5d79m", + "id": "3XQsHKA5zyxVkavbQ5d79m", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 1, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3XQsHKA5zyxVkavbQ5d79m" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2LOpi63tYGh0Suy8eLJDVQ" - }, - "href": "https://api.spotify.com/v1/albums/2LOpi63tYGh0Suy8eLJDVQ", - "id": "2LOpi63tYGh0Suy8eLJDVQ", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730940e6b24f977f68b5fc35d1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020940e6b24f977f68b5fc35d1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048510940e6b24f977f68b5fc35d1" - } - ], - "is_playable": true, - "name": "Harvest (50th Anniversary Edition)", - "release_date": "1972-02-01", - "release_date_precision": "day", - "total_tracks": 27, - "type": "album", - "uri": "spotify:album:2LOpi63tYGh0Suy8eLJDVQ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm" - }, - "href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm", - "id": "6v8FB84lnmJs434UJf2Mrm", - "name": "Neil Young", - "type": "artist", - "uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204779, - "explicit": false, - "external_ids": { - "isrc": "USRE12200588" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6grFWYpLQul3nAHjzzPKT8" - }, - "href": "https://api.spotify.com/v1/tracks/6grFWYpLQul3nAHjzzPKT8", - "id": "6grFWYpLQul3nAHjzzPKT8", - "is_local": false, - "is_playable": true, - "name": "Old Man", - "popularity": 62, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6grFWYpLQul3nAHjzzPKT8" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5schNIzWdI9gJ1QRK8SBnc" - }, - "href": "https://api.spotify.com/v1/artists/5schNIzWdI9gJ1QRK8SBnc", - "id": "5schNIzWdI9gJ1QRK8SBnc", - "name": "Ben Howard", - "type": "artist", - "uri": "spotify:artist:5schNIzWdI9gJ1QRK8SBnc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "LI", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57PgT4iuDurzlJnkYjrpce" - }, - "href": "https://api.spotify.com/v1/albums/57PgT4iuDurzlJnkYjrpce", - "id": "57PgT4iuDurzlJnkYjrpce", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27325d10f813fd1114b2bb9e39a" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0225d10f813fd1114b2bb9e39a" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485125d10f813fd1114b2bb9e39a" - } - ], - "is_playable": true, - "name": "Every Kingdom", - "release_date": "2011-01-01", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:57PgT4iuDurzlJnkYjrpce" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5schNIzWdI9gJ1QRK8SBnc" - }, - "href": "https://api.spotify.com/v1/artists/5schNIzWdI9gJ1QRK8SBnc", - "id": "5schNIzWdI9gJ1QRK8SBnc", - "name": "Ben Howard", - "type": "artist", - "uri": "spotify:artist:5schNIzWdI9gJ1QRK8SBnc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "LI", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 328506, - "explicit": false, - "external_ids": { - "isrc": "GBUM71106250" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3CAX47TnPqTujLIQTw8nwI" - }, - "href": "https://api.spotify.com/v1/tracks/3CAX47TnPqTujLIQTw8nwI", - "id": "3CAX47TnPqTujLIQTw8nwI", - "is_local": false, - "is_playable": true, - "name": "Old Pine", - "popularity": 63, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3CAX47TnPqTujLIQTw8nwI" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7vk5e3vY1uw9plTHJAMwjN" - }, - "href": "https://api.spotify.com/v1/artists/7vk5e3vY1uw9plTHJAMwjN", - "id": "7vk5e3vY1uw9plTHJAMwjN", - "name": "Alan Walker", - "type": "artist", - "uri": "spotify:artist:7vk5e3vY1uw9plTHJAMwjN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2NNRWnLkPkqmVXQbvlBlkw" - }, - "href": "https://api.spotify.com/v1/albums/2NNRWnLkPkqmVXQbvlBlkw", - "id": "2NNRWnLkPkqmVXQbvlBlkw", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732e04d93da2b657c0eaa29f58" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022e04d93da2b657c0eaa29f58" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048512e04d93da2b657c0eaa29f58" - } - ], - "is_playable": true, - "name": "Walkerworld 2.0", - "release_date": "2025-01-10", - "release_date_precision": "day", - "total_tracks": 23, - "type": "album", - "uri": "spotify:album:2NNRWnLkPkqmVXQbvlBlkw" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7vk5e3vY1uw9plTHJAMwjN" - }, - "href": "https://api.spotify.com/v1/artists/7vk5e3vY1uw9plTHJAMwjN", - "id": "7vk5e3vY1uw9plTHJAMwjN", - "name": "Alan Walker", - "type": "artist", - "uri": "spotify:artist:7vk5e3vY1uw9plTHJAMwjN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 168311, - "explicit": false, - "external_ids": { - "isrc": "NOG842501010" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3BtgnlJ7MqpKOHArBbo0QF" - }, - "href": "https://api.spotify.com/v1/tracks/3BtgnlJ7MqpKOHArBbo0QF", - "id": "3BtgnlJ7MqpKOHArBbo0QF", - "is_local": false, - "is_playable": true, - "name": "Old Habits - Instrumental", - "popularity": 52, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3BtgnlJ7MqpKOHArBbo0QF" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7LTI9KZLhnMbrDojlJK7Li" - }, - "href": "https://api.spotify.com/v1/artists/7LTI9KZLhnMbrDojlJK7Li", - "id": "7LTI9KZLhnMbrDojlJK7Li", - "name": "Jacqueline Govaert", - "type": "artist", - "uri": "spotify:artist:7LTI9KZLhnMbrDojlJK7Li" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7CmleVCoYlCAF2RHDBorhO" - }, - "href": "https://api.spotify.com/v1/albums/7CmleVCoYlCAF2RHDBorhO", - "id": "7CmleVCoYlCAF2RHDBorhO", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e76c586900b54a5825d01278" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e76c586900b54a5825d01278" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e76c586900b54a5825d01278" - } - ], - "is_playable": true, - "name": "Old Records", - "release_date": "2017-10-06", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:7CmleVCoYlCAF2RHDBorhO" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7LTI9KZLhnMbrDojlJK7Li" - }, - "href": "https://api.spotify.com/v1/artists/7LTI9KZLhnMbrDojlJK7Li", - "id": "7LTI9KZLhnMbrDojlJK7Li", - "name": "Jacqueline Govaert", - "type": "artist", - "uri": "spotify:artist:7LTI9KZLhnMbrDojlJK7Li" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197718, - "explicit": false, - "external_ids": { - "isrc": "NLF4B1700012" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1bD85vOr7SEKdZiRduesfb" - }, - "href": "https://api.spotify.com/v1/tracks/1bD85vOr7SEKdZiRduesfb", - "id": "1bD85vOr7SEKdZiRduesfb", - "is_local": false, - "is_playable": true, - "name": "Old Records - Acoustic", - "popularity": 44, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:1bD85vOr7SEKdZiRduesfb" - }, - { - "album": { - "album_type": "compilation", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2m62cc253Xvd9qYQ8d2X3d" - }, - "href": "https://api.spotify.com/v1/artists/2m62cc253Xvd9qYQ8d2X3d", - "id": "2m62cc253Xvd9qYQ8d2X3d", - "name": "The Alan Parsons Project", - "type": "artist", - "uri": "spotify:artist:2m62cc253Xvd9qYQ8d2X3d" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3CM2TjRCh8jWgVJPvKxHR9" - }, - "href": "https://api.spotify.com/v1/albums/3CM2TjRCh8jWgVJPvKxHR9", - "id": "3CM2TjRCh8jWgVJPvKxHR9", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27325aff903281a33023aa308d3" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0225aff903281a33023aa308d3" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485125aff903281a33023aa308d3" - } - ], - "is_playable": true, - "name": "The Essential Alan Parsons Project", - "release_date": "2007-01-22", - "release_date_precision": "day", - "total_tracks": 48, - "type": "album", - "uri": "spotify:album:3CM2TjRCh8jWgVJPvKxHR9" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2m62cc253Xvd9qYQ8d2X3d" - }, - "href": "https://api.spotify.com/v1/artists/2m62cc253Xvd9qYQ8d2X3d", - "id": "2m62cc253Xvd9qYQ8d2X3d", - "name": "The Alan Parsons Project", - "type": "artist", - "uri": "spotify:artist:2m62cc253Xvd9qYQ8d2X3d" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 295360, - "explicit": false, - "external_ids": { - "isrc": "USAR19700022" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3nQRF1plQystLrsEXiE8cR" - }, - "href": "https://api.spotify.com/v1/tracks/3nQRF1plQystLrsEXiE8cR", - "id": "3nQRF1plQystLrsEXiE8cR", - "is_local": false, - "is_playable": true, - "name": "Old and Wise", - "popularity": 30, - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:3nQRF1plQystLrsEXiE8cR" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0tNutPAfpYEeY6YEzwIXQp" - }, - "href": "https://api.spotify.com/v1/artists/0tNutPAfpYEeY6YEzwIXQp", - "id": "0tNutPAfpYEeY6YEzwIXQp", - "name": "Melle", - "type": "artist", - "uri": "spotify:artist:0tNutPAfpYEeY6YEzwIXQp" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3tRCgORe1F5ilqUzRPKudV" - }, - "href": "https://api.spotify.com/v1/albums/3tRCgORe1F5ilqUzRPKudV", - "id": "3tRCgORe1F5ilqUzRPKudV", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733cb6a6ee64a6d1ffd14f9af9" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023cb6a6ee64a6d1ffd14f9af9" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048513cb6a6ee64a6d1ffd14f9af9" - } - ], - "is_playable": true, - "name": "Old Summers", - "release_date": "2023-07-21", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:3tRCgORe1F5ilqUzRPKudV" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0tNutPAfpYEeY6YEzwIXQp" - }, - "href": "https://api.spotify.com/v1/artists/0tNutPAfpYEeY6YEzwIXQp", - "id": "0tNutPAfpYEeY6YEzwIXQp", - "name": "Melle", - "type": "artist", - "uri": "spotify:artist:0tNutPAfpYEeY6YEzwIXQp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5VyGPIz23xzQUyXocTxAvL" - }, - "href": "https://api.spotify.com/v1/artists/5VyGPIz23xzQUyXocTxAvL", - "id": "5VyGPIz23xzQUyXocTxAvL", - "name": "philine", - "type": "artist", - "uri": "spotify:artist:5VyGPIz23xzQUyXocTxAvL" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219968, - "explicit": false, - "external_ids": { - "isrc": "NLC242100558" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2jjknDW4cIC8d9C3kv5zrS" - }, - "href": "https://api.spotify.com/v1/tracks/2jjknDW4cIC8d9C3kv5zrS", - "id": "2jjknDW4cIC8d9C3kv5zrS", - "is_local": false, - "is_playable": true, - "name": "Old Summers (feat. philine)", - "popularity": 43, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2jjknDW4cIC8d9C3kv5zrS" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2M3DTwrZjBfPAT3PBdc3fj" - }, - "href": "https://api.spotify.com/v1/artists/2M3DTwrZjBfPAT3PBdc3fj", - "id": "2M3DTwrZjBfPAT3PBdc3fj", - "name": "Jerome Molnar", - "type": "artist", - "uri": "spotify:artist:2M3DTwrZjBfPAT3PBdc3fj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4ftr4VtKtu16j1p6haX3VM" - }, - "href": "https://api.spotify.com/v1/albums/4ftr4VtKtu16j1p6haX3VM", - "id": "4ftr4VtKtu16j1p6haX3VM", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27396722b0daeb54d330976152d" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0296722b0daeb54d330976152d" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485196722b0daeb54d330976152d" - } - ], - "is_playable": true, - "name": "Oldschool Gabber", - "release_date": "2024-10-18", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4ftr4VtKtu16j1p6haX3VM" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2M3DTwrZjBfPAT3PBdc3fj" - }, - "href": "https://api.spotify.com/v1/artists/2M3DTwrZjBfPAT3PBdc3fj", - "id": "2M3DTwrZjBfPAT3PBdc3fj", - "name": "Jerome Molnar", - "type": "artist", - "uri": "spotify:artist:2M3DTwrZjBfPAT3PBdc3fj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5Gent6oObqhnzwW8QbyV0g" - }, - "href": "https://api.spotify.com/v1/artists/5Gent6oObqhnzwW8QbyV0g", - "id": "5Gent6oObqhnzwW8QbyV0g", - "name": "XEDOX", - "type": "artist", - "uri": "spotify:artist:5Gent6oObqhnzwW8QbyV0g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 108631, - "explicit": false, - "external_ids": { - "isrc": "DEYX82220410" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/25OVtoX4BmLhowGeX4oY20" - }, - "href": "https://api.spotify.com/v1/tracks/25OVtoX4BmLhowGeX4oY20", - "id": "25OVtoX4BmLhowGeX4oY20", - "is_local": false, - "is_playable": true, - "name": "Oldschool Gabber", - "popularity": 40, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:25OVtoX4BmLhowGeX4oY20" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7jVv8c5Fj3E9VhNjxT4snq" - }, - "href": "https://api.spotify.com/v1/artists/7jVv8c5Fj3E9VhNjxT4snq", - "id": "7jVv8c5Fj3E9VhNjxT4snq", - "name": "Lil Nas X", - "type": "artist", - "uri": "spotify:artist:7jVv8c5Fj3E9VhNjxT4snq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4IRiXE5NROxknUSAUSjMoO" - }, - "href": "https://api.spotify.com/v1/albums/4IRiXE5NROxknUSAUSjMoO", - "id": "4IRiXE5NROxknUSAUSjMoO", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736239187793c9e492e687db01" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026239187793c9e492e687db01" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048516239187793c9e492e687db01" - } - ], - "is_playable": true, - "name": "7", - "release_date": "2019-06-21", - "release_date_precision": "day", - "total_tracks": 8, - "type": "album", - "uri": "spotify:album:4IRiXE5NROxknUSAUSjMoO" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7jVv8c5Fj3E9VhNjxT4snq" - }, - "href": "https://api.spotify.com/v1/artists/7jVv8c5Fj3E9VhNjxT4snq", - "id": "7jVv8c5Fj3E9VhNjxT4snq", - "name": "Lil Nas X", - "type": "artist", - "uri": "spotify:artist:7jVv8c5Fj3E9VhNjxT4snq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 113000, - "explicit": false, - "external_ids": { - "isrc": "USSM11901941" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0F7FA14euOIX8KcbEturGH" - }, - "href": "https://api.spotify.com/v1/tracks/0F7FA14euOIX8KcbEturGH", - "id": "0F7FA14euOIX8KcbEturGH", - "is_local": false, - "is_playable": true, - "name": "Old Town Road", - "popularity": 70, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:0F7FA14euOIX8KcbEturGH" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1y2yWwjdEenenVdGvm3hqi" - }, - "href": "https://api.spotify.com/v1/artists/1y2yWwjdEenenVdGvm3hqi", - "id": "1y2yWwjdEenenVdGvm3hqi", - "name": "Dennis van Aarssen", - "type": "artist", - "uri": "spotify:artist:1y2yWwjdEenenVdGvm3hqi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5Ce65i7WMAIOFtjdgIt2pY" - }, - "href": "https://api.spotify.com/v1/albums/5Ce65i7WMAIOFtjdgIt2pY", - "id": "5Ce65i7WMAIOFtjdgIt2pY", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27319b1b98da9c7804087c59657" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0219b1b98da9c7804087c59657" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485119b1b98da9c7804087c59657" - } - ], - "is_playable": true, - "name": "Christmas When You're Here", - "release_date": "2022-11-11", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5Ce65i7WMAIOFtjdgIt2pY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1y2yWwjdEenenVdGvm3hqi" - }, - "href": "https://api.spotify.com/v1/artists/1y2yWwjdEenenVdGvm3hqi", - "id": "1y2yWwjdEenenVdGvm3hqi", - "name": "Dennis van Aarssen", - "type": "artist", - "uri": "spotify:artist:1y2yWwjdEenenVdGvm3hqi" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194274, - "explicit": false, - "external_ids": { - "isrc": "NL2FM2200031" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1PWRiAJgSjYTHavha9QuyK" - }, - "href": "https://api.spotify.com/v1/tracks/1PWRiAJgSjYTHavha9QuyK", - "id": "1PWRiAJgSjYTHavha9QuyK", - "is_local": false, - "is_playable": true, - "name": "The Old Songs", - "popularity": 39, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1PWRiAJgSjYTHavha9QuyK" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5arKwJZEvT5uKq4o0JfqR4" - }, - "href": "https://api.spotify.com/v1/artists/5arKwJZEvT5uKq4o0JfqR4", - "id": "5arKwJZEvT5uKq4o0JfqR4", - "name": "Isabel LaRosa", - "type": "artist", - "uri": "spotify:artist:5arKwJZEvT5uKq4o0JfqR4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1CRkQ0NwUlzM4052uaZbtn" - }, - "href": "https://api.spotify.com/v1/albums/1CRkQ0NwUlzM4052uaZbtn", - "id": "1CRkQ0NwUlzM4052uaZbtn", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731ad40acb855956a78d817d3f" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021ad40acb855956a78d817d3f" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048511ad40acb855956a78d817d3f" - } - ], - "is_playable": true, - "name": "older", - "release_date": "2023-09-15", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:1CRkQ0NwUlzM4052uaZbtn" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5arKwJZEvT5uKq4o0JfqR4" - }, - "href": "https://api.spotify.com/v1/artists/5arKwJZEvT5uKq4o0JfqR4", - "id": "5arKwJZEvT5uKq4o0JfqR4", - "name": "Isabel LaRosa", - "type": "artist", - "uri": "spotify:artist:5arKwJZEvT5uKq4o0JfqR4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 137778, - "explicit": false, - "external_ids": { - "isrc": "USRC12302056" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/75c2zaSdDBSX0A8Jyvm4fO" - }, - "href": "https://api.spotify.com/v1/tracks/75c2zaSdDBSX0A8Jyvm4fO", - "id": "75c2zaSdDBSX0A8Jyvm4fO", - "is_local": false, - "is_playable": true, - "name": "older", - "popularity": 76, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:75c2zaSdDBSX0A8Jyvm4fO" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4xnihxcoXWK3UqryOSnbw5" - }, - "href": "https://api.spotify.com/v1/artists/4xnihxcoXWK3UqryOSnbw5", - "id": "4xnihxcoXWK3UqryOSnbw5", - "name": "Sasha Alex Sloan", - "type": "artist", - "uri": "spotify:artist:4xnihxcoXWK3UqryOSnbw5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2mTA1YzwWs39JdjSIQNCBS" - }, - "href": "https://api.spotify.com/v1/albums/2mTA1YzwWs39JdjSIQNCBS", - "id": "2mTA1YzwWs39JdjSIQNCBS", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273352b3ced3f510b351e02b058" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02352b3ced3f510b351e02b058" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851352b3ced3f510b351e02b058" - } - ], - "is_playable": true, - "name": "Older", - "release_date": "2018-11-09", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2mTA1YzwWs39JdjSIQNCBS" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4xnihxcoXWK3UqryOSnbw5" - }, - "href": "https://api.spotify.com/v1/artists/4xnihxcoXWK3UqryOSnbw5", - "id": "4xnihxcoXWK3UqryOSnbw5", - "name": "Sasha Alex Sloan", - "type": "artist", - "uri": "spotify:artist:4xnihxcoXWK3UqryOSnbw5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191001, - "explicit": false, - "external_ids": { - "isrc": "USRC11803527" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/52iLDrSoRtf9lcgFuLVfqE" - }, - "href": "https://api.spotify.com/v1/tracks/52iLDrSoRtf9lcgFuLVfqE", - "id": "52iLDrSoRtf9lcgFuLVfqE", - "is_local": false, - "is_playable": true, - "name": "Older", - "popularity": 69, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:52iLDrSoRtf9lcgFuLVfqE" - }, - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3LBeTl00bT5IUdyAKfTZxx" - }, - "href": "https://api.spotify.com/v1/artists/3LBeTl00bT5IUdyAKfTZxx", - "id": "3LBeTl00bT5IUdyAKfTZxx", - "name": "Little Teddy", - "type": "artist", - "uri": "spotify:artist:3LBeTl00bT5IUdyAKfTZxx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6sew9Lywo64TQWCLs2hjM6" - }, - "href": "https://api.spotify.com/v1/albums/6sew9Lywo64TQWCLs2hjM6", - "id": "6sew9Lywo64TQWCLs2hjM6", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27350704eaa47b8b954f2a60985" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0250704eaa47b8b954f2a60985" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485150704eaa47b8b954f2a60985" - } - ], - "is_playable": true, - "name": "Dreamy", - "release_date": "2023-09-10", - "release_date_precision": "day", - "total_tracks": 7, - "type": "album", - "uri": "spotify:album:6sew9Lywo64TQWCLs2hjM6" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3LBeTl00bT5IUdyAKfTZxx" - }, - "href": "https://api.spotify.com/v1/artists/3LBeTl00bT5IUdyAKfTZxx", - "id": "3LBeTl00bT5IUdyAKfTZxx", - "name": "Little Teddy", - "type": "artist", - "uri": "spotify:artist:3LBeTl00bT5IUdyAKfTZxx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 127714, - "explicit": false, - "external_ids": { - "isrc": "QZK6F2372046" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5VM0aiAPstckpkMCp670B7" - }, - "href": "https://api.spotify.com/v1/tracks/5VM0aiAPstckpkMCp670B7", - "id": "5VM0aiAPstckpkMCp670B7", - "is_local": false, - "is_playable": true, - "name": "Old MacDonald Had A Farm", - "popularity": 52, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5VM0aiAPstckpkMCp670B7" - }, - { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1WXsfnqh2lT56nFMI5Pc0E" - }, - "href": "https://api.spotify.com/v1/artists/1WXsfnqh2lT56nFMI5Pc0E", - "id": "1WXsfnqh2lT56nFMI5Pc0E", - "name": "Dimitri K", - "type": "artist", - "uri": "spotify:artist:1WXsfnqh2lT56nFMI5Pc0E" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/27JB7JfTLOoKcTaFAIC8mH" - }, - "href": "https://api.spotify.com/v1/albums/27JB7JfTLOoKcTaFAIC8mH", - "id": "27JB7JfTLOoKcTaFAIC8mH", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731859e908c57ae56e56c0b2c9" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021859e908c57ae56e56c0b2c9" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048511859e908c57ae56e56c0b2c9" - } - ], - "is_playable": true, - "name": "New School Rules", - "release_date": "2024-08-30", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:27JB7JfTLOoKcTaFAIC8mH" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1WXsfnqh2lT56nFMI5Pc0E" - }, - "href": "https://api.spotify.com/v1/artists/1WXsfnqh2lT56nFMI5Pc0E", - "id": "1WXsfnqh2lT56nFMI5Pc0E", - "name": "Dimitri K", - "type": "artist", - "uri": "spotify:artist:1WXsfnqh2lT56nFMI5Pc0E" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190200, - "explicit": false, - "external_ids": { - "isrc": "QZTB92477554" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/25u5QAh24GoKsaM1pzQJfw" - }, - "href": "https://api.spotify.com/v1/tracks/25u5QAh24GoKsaM1pzQJfw", - "id": "25u5QAh24GoKsaM1pzQJfw", - "is_local": false, - "is_playable": true, - "name": "New School Rules", - "popularity": 53, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:25u5QAh24GoKsaM1pzQJfw" - } - ] - }, - "artists": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=artist&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=artist&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 108, - "items": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4BMtxSIHPpG1WM2TbvNjiR" - }, - "followers": { - "href": null, - "total": 83884 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/4BMtxSIHPpG1WM2TbvNjiR", - "id": "4BMtxSIHPpG1WM2TbvNjiR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb46fdbb6351027a4acf363e38", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517446fdbb6351027a4acf363e38", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17846fdbb6351027a4acf363e38", - "height": 160, - "width": 160 - } - ], - "name": "Old Gods of Asgard", - "popularity": 44, - "type": "artist", - "uri": "spotify:artist:4BMtxSIHPpG1WM2TbvNjiR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/562Od3CffWedyz2BbeYWVn" - }, - "followers": { - "href": null, - "total": 651108 - }, - "genres": [ - "progressive rock", - "new age", - "symphonic rock" - ], - "href": "https://api.spotify.com/v1/artists/562Od3CffWedyz2BbeYWVn", - "id": "562Od3CffWedyz2BbeYWVn", - "images": [ - { - "url": "https://i.scdn.co/image/b04f41784ba49ed0875cbd018e0e0e55c94344eb", - "height": 802, - "width": 1000 - }, - { - "url": "https://i.scdn.co/image/a420aea5fb5de33569e84eab68d9976d6c35ef8c", - "height": 513, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/f7316730ce369138342928cf5abcc80e9f64fde1", - "height": 160, - "width": 200 - }, - { - "url": "https://i.scdn.co/image/d15ba8b33a09376d318c3a20c87b08d7916d2350", - "height": 51, - "width": 64 - } - ], - "name": "Mike Oldfield", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:562Od3CffWedyz2BbeYWVn" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6v2YWK8EvCyut0QtBcAypu" - }, - "followers": { - "href": null, - "total": 12152 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6v2YWK8EvCyut0QtBcAypu", - "id": "6v2YWK8EvCyut0QtBcAypu", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb381be1820b8344bc2ead56e9", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174381be1820b8344bc2ead56e9", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178381be1820b8344bc2ead56e9", - "height": 160, - "width": 160 - } - ], - "name": "Old Jim", - "popularity": 61, - "type": "artist", - "uri": "spotify:artist:6v2YWK8EvCyut0QtBcAypu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6y8XlgIV8BLlIg1tT1R10i" - }, - "followers": { - "href": null, - "total": 1619530 - }, - "genres": [ - "country" - ], - "href": "https://api.spotify.com/v1/artists/6y8XlgIV8BLlIg1tT1R10i", - "id": "6y8XlgIV8BLlIg1tT1R10i", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebd97f878e623feca422533fcb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174d97f878e623feca422533fcb", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178d97f878e623feca422533fcb", - "height": 160, - "width": 160 - } - ], - "name": "Old Dominion", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:6y8XlgIV8BLlIg1tT1R10i" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6vUNwmljZAcn7tNtUoxG45" - }, - "followers": { - "href": null, - "total": 120732 - }, - "genres": [ - "indie folk", - "folk pop" - ], - "href": "https://api.spotify.com/v1/artists/6vUNwmljZAcn7tNtUoxG45", - "id": "6vUNwmljZAcn7tNtUoxG45", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb1e5a38213613dda8a60e653f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051741e5a38213613dda8a60e653f", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1781e5a38213613dda8a60e653f", - "height": 160, - "width": 160 - } - ], - "name": "Old Sea Brigade", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:6vUNwmljZAcn7tNtUoxG45" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4p1ptZXSlFpZqWlsailjeU" - }, - "followers": { - "href": null, - "total": 1367 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/4p1ptZXSlFpZqWlsailjeU", - "id": "4p1ptZXSlFpZqWlsailjeU", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2733cea36fbfc12c76f0db4549e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e023fcead5f6d1bc54837698370", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048513fcead5f6d1bc54837698370", - "height": 64, - "width": 64 - } - ], - "name": "Old", - "popularity": 0, - "type": "artist", - "uri": "spotify:artist:4p1ptZXSlFpZqWlsailjeU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/50NoVNy9GU1lCrDV8iGpyu" - }, - "followers": { - "href": null, - "total": 1118517 - }, - "genres": [ - "east coast hip hop", - "hardcore hip hop" - ], - "href": "https://api.spotify.com/v1/artists/50NoVNy9GU1lCrDV8iGpyu", - "id": "50NoVNy9GU1lCrDV8iGpyu", - "images": [ - { - "url": "https://i.scdn.co/image/cdcf0ecd5b041452681badedca98f7d3b8494c52", - "height": 693, - "width": 1000 - }, - { - "url": "https://i.scdn.co/image/e3e39e2ee5b5929aed7d2b33791f0d8089217954", - "height": 443, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/459d62eea68686dd2fe8be21173f9cd1e448eb83", - "height": 139, - "width": 200 - }, - { - "url": "https://i.scdn.co/image/c073d8d9f384061615625887756c771f2bab4209", - "height": 44, - "width": 64 - } - ], - "name": "Ol' Dirty Bastard", - "popularity": 62, - "type": "artist", - "uri": "spotify:artist:50NoVNy9GU1lCrDV8iGpyu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/07ECVhQIO0OL0BBq2U1Rf6" - }, - "followers": { - "href": null, - "total": 530 - }, - "genres": [ - "chillwave", - "synthwave", - "vaporwave", - "space music" - ], - "href": "https://api.spotify.com/v1/artists/07ECVhQIO0OL0BBq2U1Rf6", - "id": "07ECVhQIO0OL0BBq2U1Rf6", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb918e152dfbbf537db3662a61", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174918e152dfbbf537db3662a61", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178918e152dfbbf537db3662a61", - "height": 160, - "width": 160 - } - ], - "name": "OLD", - "popularity": 25, - "type": "artist", - "uri": "spotify:artist:07ECVhQIO0OL0BBq2U1Rf6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3N8YzKqrEQonvd5RLQ4iYg" - }, - "followers": { - "href": null, - "total": 34587 - }, - "genres": [ - "surf rock" - ], - "href": "https://api.spotify.com/v1/artists/3N8YzKqrEQonvd5RLQ4iYg", - "id": "3N8YzKqrEQonvd5RLQ4iYg", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb85d4c31952a3776e36859741", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517485d4c31952a3776e36859741", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17885d4c31952a3776e36859741", - "height": 160, - "width": 160 - } - ], - "name": "Old Mervs", - "popularity": 50, - "type": "artist", - "uri": "spotify:artist:3N8YzKqrEQonvd5RLQ4iYg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4DBi4EYXgiqbkxvWUXUzMi" - }, - "followers": { - "href": null, - "total": 443402 - }, - "genres": [ - "bluegrass", - "newgrass", - "americana", - "alt country", - "folk", - "indie folk" - ], - "href": "https://api.spotify.com/v1/artists/4DBi4EYXgiqbkxvWUXUzMi", - "id": "4DBi4EYXgiqbkxvWUXUzMi", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eba055968bc8c4b9d8901b1e1e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174a055968bc8c4b9d8901b1e1e", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178a055968bc8c4b9d8901b1e1e", - "height": 160, - "width": 160 - } - ], - "name": "Old Crow Medicine Show", - "popularity": 52, - "type": "artist", - "uri": "spotify:artist:4DBi4EYXgiqbkxvWUXUzMi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4QuF87x3dFrXOEw7jDvbFM" - }, - "followers": { - "href": null, - "total": 3827 - }, - "genres": [ - "grindcore", - "industrial metal", - "industrial rock", - "avant-garde", - "industrial", - "noise rock", - "post-rock" - ], - "href": "https://api.spotify.com/v1/artists/4QuF87x3dFrXOEw7jDvbFM", - "id": "4QuF87x3dFrXOEw7jDvbFM", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a1425f8ba7cd22835d68f68e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a1425f8ba7cd22835d68f68e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a1425f8ba7cd22835d68f68e", - "height": 64, - "width": 64 - } - ], - "name": "Old", - "popularity": 10, - "type": "artist", - "uri": "spotify:artist:4QuF87x3dFrXOEw7jDvbFM" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cH8ZqLL9KCgdPJ9tjMd3X" - }, - "followers": { - "href": null, - "total": 32 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6cH8ZqLL9KCgdPJ9tjMd3X", - "id": "6cH8ZqLL9KCgdPJ9tjMd3X", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27306ecf3bcc437262a8674bb8e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0206ecf3bcc437262a8674bb8e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485106ecf3bcc437262a8674bb8e", - "height": 64, - "width": 64 - } - ], - "name": "Old", - "popularity": 0, - "type": "artist", - "uri": "spotify:artist:6cH8ZqLL9KCgdPJ9tjMd3X" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1WA3ZW07yVi8mMBvPSPD1G" - }, - "followers": { - "href": null, - "total": 1985 - }, - "genres": [ - "speed metal", - "black metal", - "thrash metal" - ], - "href": "https://api.spotify.com/v1/artists/1WA3ZW07yVi8mMBvPSPD1G", - "id": "1WA3ZW07yVi8mMBvPSPD1G", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebdb0912a6d5ce44b8dd1b8f40", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174db0912a6d5ce44b8dd1b8f40", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178db0912a6d5ce44b8dd1b8f40", - "height": 160, - "width": 160 - } - ], - "name": "Old", - "popularity": 4, - "type": "artist", - "uri": "spotify:artist:1WA3ZW07yVi8mMBvPSPD1G" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Y2S5IcmpF2cuYbjaj7fuA" - }, - "followers": { - "href": null, - "total": 234 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/2Y2S5IcmpF2cuYbjaj7fuA", - "id": "2Y2S5IcmpF2cuYbjaj7fuA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb3ebdb428e18ea220815beae5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051743ebdb428e18ea220815beae5", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1783ebdb428e18ea220815beae5", - "height": 160, - "width": 160 - } - ], - "name": "Old school beats", - "popularity": 37, - "type": "artist", - "uri": "spotify:artist:2Y2S5IcmpF2cuYbjaj7fuA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/15sJO7egTBkVMaHxCpTE1Q" - }, - "followers": { - "href": null, - "total": 376 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/15sJO7egTBkVMaHxCpTE1Q", - "id": "15sJO7egTBkVMaHxCpTE1Q", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2733e81bdef3e8e42bec108ed64", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e023e81bdef3e8e42bec108ed64", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048513e81bdef3e8e42bec108ed64", - "height": 64, - "width": 64 - } - ], - "name": "Mirjam Oldenhave", - "popularity": 38, - "type": "artist", - "uri": "spotify:artist:15sJO7egTBkVMaHxCpTE1Q" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74bw8BQiXEcYGVi3wkD5HA" - }, - "followers": { - "href": null, - "total": 21 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/74bw8BQiXEcYGVi3wkD5HA", - "id": "74bw8BQiXEcYGVi3wkD5HA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eba7f0e2bcb134e79e5066ef36", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174a7f0e2bcb134e79e5066ef36", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178a7f0e2bcb134e79e5066ef36", - "height": 160, - "width": 160 - } - ], - "name": "OLD", - "popularity": 0, - "type": "artist", - "uri": "spotify:artist:74bw8BQiXEcYGVi3wkD5HA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lybdJ5QPH5NJolzMVKnLx" - }, - "followers": { - "href": null, - "total": 40965 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/3lybdJ5QPH5NJolzMVKnLx", - "id": "3lybdJ5QPH5NJolzMVKnLx", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebb5c6d21442918158e568e680", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174b5c6d21442918158e568e680", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178b5c6d21442918158e568e680", - "height": 160, - "width": 160 - } - ], - "name": "Old Man Canyon", - "popularity": 44, - "type": "artist", - "uri": "spotify:artist:3lybdJ5QPH5NJolzMVKnLx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iH754eigCrs80sQ08MFAx" - }, - "followers": { - "href": null, - "total": 1498 - }, - "genres": [ - "hardstyle" - ], - "href": "https://api.spotify.com/v1/artists/7iH754eigCrs80sQ08MFAx", - "id": "7iH754eigCrs80sQ08MFAx", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb3d308c29b5a63ba414d4d049", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051743d308c29b5a63ba414d4d049", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1783d308c29b5a63ba414d4d049", - "height": 160, - "width": 160 - } - ], - "name": "Damaxy", - "popularity": 26, - "type": "artist", - "uri": "spotify:artist:7iH754eigCrs80sQ08MFAx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6sW5k31iA8sTy0i2goUKF9" - }, - "followers": { - "href": null, - "total": 401244 - }, - "genres": [ - "funk consciente", - "funk", - "trap funk" - ], - "href": "https://api.spotify.com/v1/artists/6sW5k31iA8sTy0i2goUKF9", - "id": "6sW5k31iA8sTy0i2goUKF9", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebde1b9c006568daa2f254d4fe", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174de1b9c006568daa2f254d4fe", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178de1b9c006568daa2f254d4fe", - "height": 160, - "width": 160 - } - ], - "name": "Oldilla", - "popularity": 67, - "type": "artist", - "uri": "spotify:artist:6sW5k31iA8sTy0i2goUKF9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4dbBRTOF73ioPdjvyYzJ52" - }, - "followers": { - "href": null, - "total": 9 - }, - "genres": [ - "black metal" - ], - "href": "https://api.spotify.com/v1/artists/4dbBRTOF73ioPdjvyYzJ52", - "id": "4dbBRTOF73ioPdjvyYzJ52", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734787adc1512fa15f6ce4eb15", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024787adc1512fa15f6ce4eb15", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514787adc1512fa15f6ce4eb15", - "height": 64, - "width": 64 - } - ], - "name": "Old", - "popularity": 2, - "type": "artist", - "uri": "spotify:artist:4dbBRTOF73ioPdjvyYzJ52" - } - ] - }, - "albums": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=album&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=album&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 119, - "items": [ - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/02XORqPIterIIxAtmd0vAv" - }, - "href": "https://api.spotify.com/v1/albums/02XORqPIterIIxAtmd0vAv", - "id": "02XORqPIterIIxAtmd0vAv", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731338ff43064f5569b688d84e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021338ff43064f5569b688d84e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511338ff43064f5569b688d84e", - "width": 64 - } - ], - "name": "Oldschool", - "release_date": "2025-01-23", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:02XORqPIterIIxAtmd0vAv", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iqEVZEav7vIiv1HStr6Gx" - }, - "href": "https://api.spotify.com/v1/artists/4iqEVZEav7vIiv1HStr6Gx", - "id": "4iqEVZEav7vIiv1HStr6Gx", - "name": "Detailed", - "type": "artist", - "uri": "spotify:artist:4iqEVZEav7vIiv1HStr6Gx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iH754eigCrs80sQ08MFAx" - }, - "href": "https://api.spotify.com/v1/artists/7iH754eigCrs80sQ08MFAx", - "id": "7iH754eigCrs80sQ08MFAx", - "name": "Damaxy", - "type": "artist", - "uri": "spotify:artist:7iH754eigCrs80sQ08MFAx" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7E4noAp6wjOrAUa2LFY9Lh" - }, - "href": "https://api.spotify.com/v1/albums/7E4noAp6wjOrAUa2LFY9Lh", - "id": "7E4noAp6wjOrAUa2LFY9Lh", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730a042c5a53fb590b20159247", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020a042c5a53fb590b20159247", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048510a042c5a53fb590b20159247", - "width": 64 - } - ], - "name": "Older", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7E4noAp6wjOrAUa2LFY9Lh", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3NOLGndGHL48IB3YFdA36r" - }, - "href": "https://api.spotify.com/v1/artists/3NOLGndGHL48IB3YFdA36r", - "id": "3NOLGndGHL48IB3YFdA36r", - "name": "Alon", - "type": "artist", - "uri": "spotify:artist:3NOLGndGHL48IB3YFdA36r" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/21nmDib5NI3XZ9LcxVuQLG" - }, - "href": "https://api.spotify.com/v1/albums/21nmDib5NI3XZ9LcxVuQLG", - "id": "21nmDib5NI3XZ9LcxVuQLG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ed9252bd06d28911bb1ec822", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ed9252bd06d28911bb1ec822", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ed9252bd06d28911bb1ec822", - "width": 64 - } - ], - "name": "Old", - "release_date": "2024-05-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:21nmDib5NI3XZ9LcxVuQLG", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0M3W0VPiLEjryaAfMEoP8z" - }, - "href": "https://api.spotify.com/v1/artists/0M3W0VPiLEjryaAfMEoP8z", - "id": "0M3W0VPiLEjryaAfMEoP8z", - "name": "Pien", - "type": "artist", - "uri": "spotify:artist:0M3W0VPiLEjryaAfMEoP8z" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3I8BYxuKYGigt7Q0nQqbZl" - }, - "href": "https://api.spotify.com/v1/albums/3I8BYxuKYGigt7Q0nQqbZl", - "id": "3I8BYxuKYGigt7Q0nQqbZl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c1901c24c499fa0cb568b877", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c1901c24c499fa0cb568b877", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c1901c24c499fa0cb568b877", - "width": 64 - } - ], - "name": "Old", - "release_date": "2023-06-09", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3I8BYxuKYGigt7Q0nQqbZl", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1hn1L1XJda0m8P3r3ebF0S" - }, - "href": "https://api.spotify.com/v1/artists/1hn1L1XJda0m8P3r3ebF0S", - "id": "1hn1L1XJda0m8P3r3ebF0S", - "name": "Burn the Jukebox", - "type": "artist", - "uri": "spotify:artist:1hn1L1XJda0m8P3r3ebF0S" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2lndvw9y9t8db2ehwUEU9r" - }, - "href": "https://api.spotify.com/v1/albums/2lndvw9y9t8db2ehwUEU9r", - "id": "2lndvw9y9t8db2ehwUEU9r", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27340d6d028449b14221ee97a49", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0240d6d028449b14221ee97a49", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485140d6d028449b14221ee97a49", - "width": 64 - } - ], - "name": "Oldschool Sound", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2lndvw9y9t8db2ehwUEU9r", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0B6IiyD6eUa5YfYzGz0L5V" - }, - "href": "https://api.spotify.com/v1/artists/0B6IiyD6eUa5YfYzGz0L5V", - "id": "0B6IiyD6eUa5YfYzGz0L5V", - "name": "Theis EZ", - "type": "artist", - "uri": "spotify:artist:0B6IiyD6eUa5YfYzGz0L5V" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6uBuMzCh4LjbxelwfLNeGI" - }, - "href": "https://api.spotify.com/v1/albums/6uBuMzCh4LjbxelwfLNeGI", - "id": "6uBuMzCh4LjbxelwfLNeGI", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737a2c05d4621e6ef88d99c32c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027a2c05d4621e6ef88d99c32c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048517a2c05d4621e6ef88d99c32c", - "width": 64 - } - ], - "name": "Old", - "release_date": "2020-02-28", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6uBuMzCh4LjbxelwfLNeGI", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Lvu2BLcnNvNw8yaKMKkBY" - }, - "href": "https://api.spotify.com/v1/artists/2Lvu2BLcnNvNw8yaKMKkBY", - "id": "2Lvu2BLcnNvNw8yaKMKkBY", - "name": "SHIVAN", - "type": "artist", - "uri": "spotify:artist:2Lvu2BLcnNvNw8yaKMKkBY" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6aH5wUamNyPqimXRBt67k1" - }, - "href": "https://api.spotify.com/v1/artists/6aH5wUamNyPqimXRBt67k1", - "id": "6aH5wUamNyPqimXRBt67k1", - "name": "Hoved", - "type": "artist", - "uri": "spotify:artist:6aH5wUamNyPqimXRBt67k1" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0Px1WVf0Kvxfp13W9yCUHa" - }, - "href": "https://api.spotify.com/v1/albums/0Px1WVf0Kvxfp13W9yCUHa", - "id": "0Px1WVf0Kvxfp13W9yCUHa", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273906f8acb008d3050a8c40953", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02906f8acb008d3050a8c40953", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851906f8acb008d3050a8c40953", - "width": 64 - } - ], - "name": "Old", - "release_date": "2023-11-29", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0Px1WVf0Kvxfp13W9yCUHa", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4t4VkbXR9kExivO6uzOkth" - }, - "href": "https://api.spotify.com/v1/artists/4t4VkbXR9kExivO6uzOkth", - "id": "4t4VkbXR9kExivO6uzOkth", - "name": "Cody Browning", - "type": "artist", - "uri": "spotify:artist:4t4VkbXR9kExivO6uzOkth" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rgejByvAJSID1nDCAeOCg" - }, - "href": "https://api.spotify.com/v1/albums/4rgejByvAJSID1nDCAeOCg", - "id": "4rgejByvAJSID1nDCAeOCg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27393fa91761476d47119e756e1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0293fa91761476d47119e756e1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485193fa91761476d47119e756e1", - "width": 64 - } - ], - "name": "Old", - "release_date": "2024-03-15", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4rgejByvAJSID1nDCAeOCg", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5uTcUahIsGpgZ1Gzu23004" - }, - "href": "https://api.spotify.com/v1/artists/5uTcUahIsGpgZ1Gzu23004", - "id": "5uTcUahIsGpgZ1Gzu23004", - "name": "Titus Haskins", - "type": "artist", - "uri": "spotify:artist:5uTcUahIsGpgZ1Gzu23004" - } - ] - }, - { - "album_type": "single", - "total_tracks": 2, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/20OkXlNvLXg6WhCU2giFMA" - }, - "href": "https://api.spotify.com/v1/albums/20OkXlNvLXg6WhCU2giFMA", - "id": "20OkXlNvLXg6WhCU2giFMA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738fe2ec5832a56e343f19348e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028fe2ec5832a56e343f19348e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518fe2ec5832a56e343f19348e", - "width": 64 - } - ], - "name": "Old", - "release_date": "2023-02-25", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:20OkXlNvLXg6WhCU2giFMA", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7z5KwSoePmOQYtbUSuJgUh" - }, - "href": "https://api.spotify.com/v1/artists/7z5KwSoePmOQYtbUSuJgUh", - "id": "7z5KwSoePmOQYtbUSuJgUh", - "name": "Pedyrus", - "type": "artist", - "uri": "spotify:artist:7z5KwSoePmOQYtbUSuJgUh" - } - ] - }, - { - "album_type": "single", - "total_tracks": 3, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1fzj07jlfG3LlWg0SGfqt6" - }, - "href": "https://api.spotify.com/v1/albums/1fzj07jlfG3LlWg0SGfqt6", - "id": "1fzj07jlfG3LlWg0SGfqt6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f3c7b8b4ed246c55d80a6778", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f3c7b8b4ed246c55d80a6778", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f3c7b8b4ed246c55d80a6778", - "width": 64 - } - ], - "name": "OLD MEMORY", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1fzj07jlfG3LlWg0SGfqt6", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7FvqZfHmTRRR4KVZPpZr9s" - }, - "href": "https://api.spotify.com/v1/artists/7FvqZfHmTRRR4KVZPpZr9s", - "id": "7FvqZfHmTRRR4KVZPpZr9s", - "name": "XVGNS", - "type": "artist", - "uri": "spotify:artist:7FvqZfHmTRRR4KVZPpZr9s" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2HmTlFULDXO52BvSChRGJv" - }, - "href": "https://api.spotify.com/v1/albums/2HmTlFULDXO52BvSChRGJv", - "id": "2HmTlFULDXO52BvSChRGJv", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27325930a501e5fdf66cc60b46b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0225930a501e5fdf66cc60b46b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485125930a501e5fdf66cc60b46b", - "width": 64 - } - ], - "name": "Old School TB", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2HmTlFULDXO52BvSChRGJv", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5RIPjT0oNRQ8XGPcnwBL8n" - }, - "href": "https://api.spotify.com/v1/artists/5RIPjT0oNRQ8XGPcnwBL8n", - "id": "5RIPjT0oNRQ8XGPcnwBL8n", - "name": "DvirNuns", - "type": "artist", - "uri": "spotify:artist:5RIPjT0oNRQ8XGPcnwBL8n" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4tVKDhY4DuXYWBm2n85CLF" - }, - "href": "https://api.spotify.com/v1/albums/4tVKDhY4DuXYWBm2n85CLF", - "id": "4tVKDhY4DuXYWBm2n85CLF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27342363e2a303d895762a7ec64", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0242363e2a303d895762a7ec64", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485142363e2a303d895762a7ec64", - "width": 64 - } - ], - "name": "old school (Slowed and Reverb)", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4tVKDhY4DuXYWBm2n85CLF", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3N7feSJ5L5LiXyBvcFVUPm" - }, - "href": "https://api.spotify.com/v1/artists/3N7feSJ5L5LiXyBvcFVUPm", - "id": "3N7feSJ5L5LiXyBvcFVUPm", - "name": "CPRCRN", - "type": "artist", - "uri": "spotify:artist:3N7feSJ5L5LiXyBvcFVUPm" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1fP2VgEkNKevlFiHu5FnGL" - }, - "href": "https://api.spotify.com/v1/albums/1fP2VgEkNKevlFiHu5FnGL", - "id": "1fP2VgEkNKevlFiHu5FnGL", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736f9d95d19f689e68a2b74bb6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026f9d95d19f689e68a2b74bb6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516f9d95d19f689e68a2b74bb6", - "width": 64 - } - ], - "name": "That Olde Timey Sourcery", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1fP2VgEkNKevlFiHu5FnGL", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bHm3B3jJju0q9FUdOgp3b" - }, - "href": "https://api.spotify.com/v1/artists/7bHm3B3jJju0q9FUdOgp3b", - "id": "7bHm3B3jJju0q9FUdOgp3b", - "name": "Blockhead", - "type": "artist", - "uri": "spotify:artist:7bHm3B3jJju0q9FUdOgp3b" - } - ] - }, - { - "album_type": "album", - "total_tracks": 16, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0vh22TbDhqij8CsFJMl8fu" - }, - "href": "https://api.spotify.com/v1/albums/0vh22TbDhqij8CsFJMl8fu", - "id": "0vh22TbDhqij8CsFJMl8fu", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738ecbe43e7df80ce3c5132dbf", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028ecbe43e7df80ce3c5132dbf", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518ecbe43e7df80ce3c5132dbf", - "width": 64 - } - ], - "name": "Old", - "release_date": "1993-05-03", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0vh22TbDhqij8CsFJMl8fu", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7JMqAqShijOCtkhVqIIAI3" - }, - "href": "https://api.spotify.com/v1/artists/7JMqAqShijOCtkhVqIIAI3", - "id": "7JMqAqShijOCtkhVqIIAI3", - "name": "Maxim Rad", - "type": "artist", - "uri": "spotify:artist:7JMqAqShijOCtkhVqIIAI3" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5LGAmeGeiO7xYvcMtNZ2nE" - }, - "href": "https://api.spotify.com/v1/albums/5LGAmeGeiO7xYvcMtNZ2nE", - "id": "5LGAmeGeiO7xYvcMtNZ2nE", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2739b3f1a37e11fdef107d59e13", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e029b3f1a37e11fdef107d59e13", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048519b3f1a37e11fdef107d59e13", - "width": 64 - } - ], - "name": "For Old Days Gone", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5LGAmeGeiO7xYvcMtNZ2nE", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2fvlcT93u5SQePtPugGGpz" - }, - "href": "https://api.spotify.com/v1/artists/2fvlcT93u5SQePtPugGGpz", - "id": "2fvlcT93u5SQePtPugGGpz", - "name": "Arielan Vide", - "type": "artist", - "uri": "spotify:artist:2fvlcT93u5SQePtPugGGpz" - } - ] - }, - { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/45evuVVrY9LzPez8geNEIF" - }, - "href": "https://api.spotify.com/v1/albums/45evuVVrY9LzPez8geNEIF", - "id": "45evuVVrY9LzPez8geNEIF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273721aa94703c1a94c735aacd0", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02721aa94703c1a94c735aacd0", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851721aa94703c1a94c735aacd0", - "width": 64 - } - ], - "name": "Older", - "release_date": "1996-05-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:45evuVVrY9LzPez8geNEIF", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/19ra5tSw0tWufvUp8GotLo" - }, - "href": "https://api.spotify.com/v1/artists/19ra5tSw0tWufvUp8GotLo", - "id": "19ra5tSw0tWufvUp8GotLo", - "name": "George Michael", - "type": "artist", - "uri": "spotify:artist:19ra5tSw0tWufvUp8GotLo" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0AMT378RSZtNOXrzDNkkZJ" - }, - "href": "https://api.spotify.com/v1/albums/0AMT378RSZtNOXrzDNkkZJ", - "id": "0AMT378RSZtNOXrzDNkkZJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27382e9e623a5acb286ac99263d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0282e9e623a5acb286ac99263d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485182e9e623a5acb286ac99263d", - "width": 64 - } - ], - "name": "The old train", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0AMT378RSZtNOXrzDNkkZJ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4VmbEmPe7idiK1hjtCODVy" - }, - "href": "https://api.spotify.com/v1/artists/4VmbEmPe7idiK1hjtCODVy", - "id": "4VmbEmPe7idiK1hjtCODVy", - "name": "Stefan Scholz", - "type": "artist", - "uri": "spotify:artist:4VmbEmPe7idiK1hjtCODVy" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3i1NMEP4LKF7O23cAyDqqi" - }, - "href": "https://api.spotify.com/v1/albums/3i1NMEP4LKF7O23cAyDqqi", - "id": "3i1NMEP4LKF7O23cAyDqqi", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273683bed6bb7d53eaaf17d92b3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02683bed6bb7d53eaaf17d92b3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851683bed6bb7d53eaaf17d92b3", - "width": 64 - } - ], - "name": "Old The Style", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3i1NMEP4LKF7O23cAyDqqi", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1KgiS9L9gXZUa40X3zoBE9" - }, - "href": "https://api.spotify.com/v1/artists/1KgiS9L9gXZUa40X3zoBE9", - "id": "1KgiS9L9gXZUa40X3zoBE9", - "name": "Rahmat Tahalu", - "type": "artist", - "uri": "spotify:artist:1KgiS9L9gXZUa40X3zoBE9" - } - ] - }, - { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5Ep5qqNDw6ZrQz0emm1IMf" - }, - "href": "https://api.spotify.com/v1/albums/5Ep5qqNDw6ZrQz0emm1IMf", - "id": "5Ep5qqNDw6ZrQz0emm1IMf", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27393182445ee9610ab2c31cc17", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0293182445ee9610ab2c31cc17", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485193182445ee9610ab2c31cc17", - "width": 64 - } - ], - "name": "The Old Parade", - "release_date": "2025-01-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5Ep5qqNDw6ZrQz0emm1IMf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7eMEpq0mpOCPTnLZaMZqAM" - }, - "href": "https://api.spotify.com/v1/artists/7eMEpq0mpOCPTnLZaMZqAM", - "id": "7eMEpq0mpOCPTnLZaMZqAM", - "name": "Tomo", - "type": "artist", - "uri": "spotify:artist:7eMEpq0mpOCPTnLZaMZqAM" - } - ] - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3yly1fN3mnHVpjDPmNoCLW" - }, - "href": "https://api.spotify.com/v1/albums/3yly1fN3mnHVpjDPmNoCLW", - "id": "3yly1fN3mnHVpjDPmNoCLW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cca5a9d4172c7792549ac929", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cca5a9d4172c7792549ac929", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cca5a9d4172c7792549ac929", - "width": 64 - } - ], - "name": "Old (Acoustic)", - "release_date": "2024-12-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3yly1fN3mnHVpjDPmNoCLW", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5NDzGl3leOCXxfUcyQC0sv" - }, - "href": "https://api.spotify.com/v1/artists/5NDzGl3leOCXxfUcyQC0sv", - "id": "5NDzGl3leOCXxfUcyQC0sv", - "name": "Sam Opoku", - "type": "artist", - "uri": "spotify:artist:5NDzGl3leOCXxfUcyQC0sv" - } ] - } - ] - }, - "playlists": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=playlist&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=playlist&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 115, - "items": [ - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7y15TCWmOoqxeYyiALg775" - }, - "href": "https://api.spotify.com/v1/playlists/7y15TCWmOoqxeYyiALg775", - "id": "7y15TCWmOoqxeYyiALg775", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022a76a49686ef868b824b9200ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e02b3994164520409b6a98f51be", - "width": 60 - } - ], - "name": "Old but gold💛", - "owner": { - "display_name": "tanjabrouwer", - "external_urls": { - "spotify": "https://open.spotify.com/user/brouwerbaarn" - }, - "href": "https://api.spotify.com/v1/users/brouwerbaarn", - "id": "brouwerbaarn", - "type": "user", - "uri": "spotify:user:brouwerbaarn" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAEnCI4JVWo+P4U1zDRPV2sK6g3ECzI", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7y15TCWmOoqxeYyiALg775/tracks", - "total": 1061 - }, - "type": "playlist", - "uri": "spotify:playlist:7y15TCWmOoqxeYyiALg775" - }, - null, - { - "collaborative": false, - "description": "The best oldies from the 70s, 80s, and 90s back when music was actually good", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3pUwhh3WcgvFZbIiwJ3x6f" - }, - "href": "https://api.spotify.com/v1/playlists/3pUwhh3WcgvFZbIiwJ3x6f", - "id": "3pUwhh3WcgvFZbIiwJ3x6f", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0251c02a77d09dfcd53c8676d0ab67616d00001e0257df7ce0eac715cf70e519a7ab67616d00001e02eab029f7c06a8091186ca5c4ab67616d00001e02f903e62767a0e22e33b7af83", - "width": 60 - } - ], - "name": "70/80/90 Oldies", - "owner": { - "display_name": "preston.howell", - "external_urls": { - "spotify": "https://open.spotify.com/user/121793365" - }, - "href": "https://api.spotify.com/v1/users/121793365", - "id": "121793365", - "type": "user", - "uri": "spotify:user:121793365" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAA8AYyEP1O7zQxZsLJg0LGrZnEuBksp", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3pUwhh3WcgvFZbIiwJ3x6f/tracks", - "total": 209 - }, - "type": "playlist", - "uri": "spotify:playlist:3pUwhh3WcgvFZbIiwJ3x6f" - }, - { - "collaborative": false, - "description": "#ThrowbackThursday Oldies Pop, Rock, Disco, R&B, Swing, Rockabilly & Blues Legends! (Listen here an 80s Disco or Happy Oldies playlist) A fine selection of cheering goldies from the best past!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1TNg7JCxifAjwrnQARimex" - }, - "href": "https://api.spotify.com/v1/playlists/1TNg7JCxifAjwrnQARimex", - "id": "1TNg7JCxifAjwrnQARimex", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84fbe8a7975a5e0de860715a5a", - "width": null - } - ], - "name": "Oldies Best songs 80s, 70s, 60s / Throwbacks HITS / 💿", - "owner": { - "display_name": "indiemono", - "external_urls": { - "spotify": "https://open.spotify.com/user/sanik007" - }, - "href": "https://api.spotify.com/v1/users/sanik007", - "id": "sanik007", - "type": "user", - "uri": "spotify:user:sanik007" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAACsX3ppjJ1E/XJkjxoMpYf7inodtmV", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1TNg7JCxifAjwrnQARimex/tracks", - "total": 325 - }, - "type": "playlist", - "uri": "spotify:playlist:1TNg7JCxifAjwrnQARimex" - }, - { - "collaborative": false, - "description": "Thank you", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2rdwGXB4JeeS2DM7PO8pqL" - }, - "href": "https://api.spotify.com/v1/playlists/2rdwGXB4JeeS2DM7PO8pqL", - "id": "2rdwGXB4JeeS2DM7PO8pqL", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cda334278d33081937c586935", - "width": null - } - ], - "name": "Old Songs Everyone Knows", - "owner": { - "display_name": "Carterhays", - "external_urls": { - "spotify": "https://open.spotify.com/user/kckx6yhloq23mtijf127fvy8q" - }, - "href": "https://api.spotify.com/v1/users/kckx6yhloq23mtijf127fvy8q", - "id": "kckx6yhloq23mtijf127fvy8q", - "type": "user", - "uri": "spotify:user:kckx6yhloq23mtijf127fvy8q" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAmsfSGKYOWYvYSE85327Fseqj6AQy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2rdwGXB4JeeS2DM7PO8pqL/tracks", - "total": 128 - }, - "type": "playlist", - "uri": "spotify:playlist:2rdwGXB4JeeS2DM7PO8pqL" - }, - { - "collaborative": false, - "description": "The best ibiza lounge music, full of chill house, lounge & chillout vibes.. Updated weekly 🌴 Ibiza summer mix, old summer vibes, deep house, ibiza house, chill playlist, restaurant & bar vibes, rooftop sessions, sunset vibes, summervibes, ibiza music, morning vibes, evening chill, chill classics.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5ud67zggJb78Rt1EVL11nV" - }, - "href": "https://api.spotify.com/v1/playlists/5ud67zggJb78Rt1EVL11nV", - "id": "5ud67zggJb78Rt1EVL11nV", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84c7ad21cda30292603fe35ec1", - "width": null - } - ], - "name": "Ibiza Lounge Music 🌴🌞 Summer Mix 2025 - Chill Deep House Vibes - Afro House", - "owner": { - "display_name": "Castle Collective", - "external_urls": { - "spotify": "https://open.spotify.com/user/btie3keesw0834g1l5dgbvjqz" - }, - "href": "https://api.spotify.com/v1/users/btie3keesw0834g1l5dgbvjqz", - "id": "btie3keesw0834g1l5dgbvjqz", - "type": "user", - "uri": "spotify:user:btie3keesw0834g1l5dgbvjqz" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AABETc+UO8dS6pQNjJHizIz7BSFIISBg", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5ud67zggJb78Rt1EVL11nV/tracks", - "total": 191 - }, - "type": "playlist", - "uri": "spotify:playlist:5ud67zggJb78Rt1EVL11nV" - }, - null, - { - "collaborative": false, - "description": "90s-00s Rnb Classics - Best r&b Music - Best Rnb Love Songs of All Time - R&b All Time Favorites / Favourites - Best of Neyo, Usher, Chris Brown, Ne-Yo, Sisqo, Craig David, Mario, Nelly, Akon, Mariah Carey, Boyz II Men", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2T3BSpqN34Z4sppHDNWoeE" - }, - "href": "https://api.spotify.com/v1/playlists/2T3BSpqN34Z4sppHDNWoeE", - "id": "2T3BSpqN34Z4sppHDNWoeE", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84cdcaa5e273d90fdba839069b", - "width": null - } - ], - "name": "R&B Classics 90s & 2000s - Best Old School RnB Hits Playlist - Usher, Chris Brown, Ne-Yo, Mario", - "owner": { - "display_name": "Esydia", - "external_urls": { - "spotify": "https://open.spotify.com/user/savz8vts72hqdy7von3mqc29g" - }, - "href": "https://api.spotify.com/v1/users/savz8vts72hqdy7von3mqc29g", - "id": "savz8vts72hqdy7von3mqc29g", - "type": "user", - "uri": "spotify:user:savz8vts72hqdy7von3mqc29g" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAOjaQN60rUDRj7NHotPEfbnxBPCxO", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2T3BSpqN34Z4sppHDNWoeE/tracks", - "total": 146 - }, - "type": "playlist", - "uri": "spotify:playlist:2T3BSpqN34Z4sppHDNWoeE" - }, - { - "collaborative": false, - "description": "Takes you back to the 90's with nostalgic pop, house, happy hardcore etc.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5ccR8q4JkCVXSPlmYUQO4d" - }, - "href": "https://api.spotify.com/v1/playlists/5ccR8q4JkCVXSPlmYUQO4d", - "id": "5ccR8q4JkCVXSPlmYUQO4d", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84fdec67325d6f0a8a0f302428", - "width": null - } - ], - "name": "Oldskool 90's mix", - "owner": { - "display_name": "John Den Ollander", - "external_urls": { - "spotify": "https://open.spotify.com/user/21y6ay3pymrnshjb6gxt3iqpi" - }, - "href": "https://api.spotify.com/v1/users/21y6ay3pymrnshjb6gxt3iqpi", - "id": "21y6ay3pymrnshjb6gxt3iqpi", - "type": "user", - "uri": "spotify:user:21y6ay3pymrnshjb6gxt3iqpi" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAwTpbZo23rbbwQCyTMzcmt4q5+f20", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5ccR8q4JkCVXSPlmYUQO4d/tracks", - "total": 145 - }, - "type": "playlist", - "uri": "spotify:playlist:5ccR8q4JkCVXSPlmYUQO4d" - }, - { - "collaborative": false, - "description": "All the old and New Hits in one playlist. Best Afrobeats, Afrobeats Hits, African music, Top Afrobeats 2025, Afrobeat 2025, Top 100 Nigeria - Rema - Tyla - Ayra Starr - Oxlade - Wizkid - Burna Boy - Davido - Omah Lay - FireboyDML - Tems - Lojay -Libianca - Asake - Adekunle - City Boys - Peru.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/25Y75ozl2aI0NylFToefO5" - }, - "href": "https://api.spotify.com/v1/playlists/25Y75ozl2aI0NylFToefO5", - "id": "25Y75ozl2aI0NylFToefO5", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da8457a343b16f9396c0284a8e95", - "width": null - } - ], - "name": "Afrobeats Hits 🔥", - "owner": { - "display_name": "EMA Records", - "external_urls": { - "spotify": "https://open.spotify.com/user/4djxvzkx1svhemk7ozszfnkga" - }, - "href": "https://api.spotify.com/v1/users/4djxvzkx1svhemk7ozszfnkga", - "id": "4djxvzkx1svhemk7ozszfnkga", - "type": "user", - "uri": "spotify:user:4djxvzkx1svhemk7ozszfnkga" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAC3fbZ7HWXBoKDghUgX5hFxkjb7y13", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/25Y75ozl2aI0NylFToefO5/tracks", - "total": 120 - }, - "type": "playlist", - "uri": "spotify:playlist:25Y75ozl2aI0NylFToefO5" - }, - { - "collaborative": false, - "description": "white girl bangers, old radio hits, middle school dance memories, 2000-2020 vibes and other bops 🔥🔥", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7GRnA1buU09xvdDoSJlyEw" - }, - "href": "https://api.spotify.com/v1/playlists/7GRnA1buU09xvdDoSJlyEw", - "id": "7GRnA1buU09xvdDoSJlyEw", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dc99f83325d6f2f478b69c68", - "width": null - } - ], - "name": "nostalgic songs that go crazy🔥🔥", - "owner": { - "display_name": "ufw.celery", - "external_urls": { - "spotify": "https://open.spotify.com/user/31x46jzu4engjhfvh3n3pniojxdu" - }, - "href": "https://api.spotify.com/v1/users/31x46jzu4engjhfvh3n3pniojxdu", - "id": "31x46jzu4engjhfvh3n3pniojxdu", - "type": "user", - "uri": "spotify:user:31x46jzu4engjhfvh3n3pniojxdu" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAA8jT0DpITNm5IcN01sH+k1yE/lche", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7GRnA1buU09xvdDoSJlyEw/tracks", - "total": 221 - }, - "type": "playlist", - "uri": "spotify:playlist:7GRnA1buU09xvdDoSJlyEw" - }, - { - "collaborative": false, - "description": "Your favorite 2000s Hits 🪩 playlist, 2000s music hits, 2000 hits, 2010 hits, top hits 2000s, 2020 hits, 2010s top songs, throwbacks, old songs, 2000s pop hit throwback, old but gold, best pop songs, throwback bangers, best old songs, top hits, oud, 2010s nostalgia, best pop songs 2000s", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/26sGzSJGUxhqFlvNW4X15t" - }, - "href": "https://api.spotify.com/v1/playlists/26sGzSJGUxhqFlvNW4X15t", - "id": "26sGzSJGUxhqFlvNW4X15t", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e025840f88453448723ce907a53ab67616d00001e0271a4bb7806c949809ab4164bab67616d00001e02ba5db46f4b838ef6027e6f96ab67616d00001e02c55a2d31ef4b957aaf4f3a9b", - "width": 60 - } - ], - "name": "Old hits 2000-2020😆", - "owner": { - "display_name": "Paige", - "external_urls": { - "spotify": "https://open.spotify.com/user/mvereiken" - }, - "href": "https://api.spotify.com/v1/users/mvereiken", - "id": "mvereiken", - "type": "user", - "uri": "spotify:user:mvereiken" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAQtNFAfPa+zIzhd0+qWdxS+MDqfT1e", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/26sGzSJGUxhqFlvNW4X15t/tracks", - "total": 190 - }, - "type": "playlist", - "uri": "spotify:playlist:26sGzSJGUxhqFlvNW4X15t" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5y1hG76zYFBZ3rGmMFD6aZ" - }, - "href": "https://api.spotify.com/v1/playlists/5y1hG76zYFBZ3rGmMFD6aZ", - "id": "5y1hG76zYFBZ3rGmMFD6aZ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e029b19c107109de740bad72df5ab67616d00001e02a191830c8b300bc71c2faac7ab67616d00001e02fe3cf32b1320e8ded39d8c74ab67616d00001e02fec1b815bb3c50a64a90fd10", - "width": 60 - } - ], - "name": "Old School Bangers😈", - "owner": { - "display_name": "Declan Allport", - "external_urls": { - "spotify": "https://open.spotify.com/user/11175441529" - }, - "href": "https://api.spotify.com/v1/users/11175441529", - "id": "11175441529", - "type": "user", - "uri": "spotify:user:11175441529" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABkusCdcTqB5q9cBjPm/bipVb6Pp2n", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5y1hG76zYFBZ3rGmMFD6aZ/tracks", - "total": 273 - }, - "type": "playlist", - "uri": "spotify:playlist:5y1hG76zYFBZ3rGmMFD6aZ" - }, - { - "collaborative": false, - "description": "Best acoustic guitar and piano hits and cover of 2019 - 2023 + a few oldies. unplugged_rec on IG.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4uf0gphPVNtk4Uu0bxtdGA" - }, - "href": "https://api.spotify.com/v1/playlists/4uf0gphPVNtk4Uu0bxtdGA", - "id": "4uf0gphPVNtk4Uu0bxtdGA", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84f2e619c3093158e1ccf3a388", - "width": null - } - ], - "name": "Acoustic Covers 2025 (Top 100)", - "owner": { - "display_name": "Unplugged", - "external_urls": { - "spotify": "https://open.spotify.com/user/312avoycbyo353bvbqm2mpdnghjy" - }, - "href": "https://api.spotify.com/v1/users/312avoycbyo353bvbqm2mpdnghjy", - "id": "312avoycbyo353bvbqm2mpdnghjy", - "type": "user", - "uri": "spotify:user:312avoycbyo353bvbqm2mpdnghjy" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAJ879F8xomr3QTa4kjhJYcIzvMBH9n", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4uf0gphPVNtk4Uu0bxtdGA/tracks", - "total": 101 - }, - "type": "playlist", - "uri": "spotify:playlist:4uf0gphPVNtk4Uu0bxtdGA" - }, - null, - { - "collaborative": false, - "description": "Essential tracks from the most notable classical works ever recorded - both old and new. Featuring Mozart, Beethoven, Bach, Chopin, Satie, Brahms, Vivaldi, Max Richter, Ludovico Einaudi", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1h0CEZCm6IbFTbxThn6Xcs" - }, - "href": "https://api.spotify.com/v1/playlists/1h0CEZCm6IbFTbxThn6Xcs", - "id": "1h0CEZCm6IbFTbxThn6Xcs", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da844ed1546759ae6e2e1256cfb0", - "width": null - } - ], - "name": "Best Classical Music", - "owner": { - "display_name": "Peaceful Classics", - "external_urls": { - "spotify": "https://open.spotify.com/user/peacefulclassics" - }, - "href": "https://api.spotify.com/v1/users/peacefulclassics", - "id": "peacefulclassics", - "type": "user", - "uri": "spotify:user:peacefulclassics" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAE2PxOK1FIvBhMYbBRO9akdkvlULPx", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1h0CEZCm6IbFTbxThn6Xcs/tracks", - "total": 239 - }, - "type": "playlist", - "uri": "spotify:playlist:1h0CEZCm6IbFTbxThn6Xcs" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6DsHDZmrOgLBmxa9DJE6sb" - }, - "href": "https://api.spotify.com/v1/playlists/6DsHDZmrOgLBmxa9DJE6sb", - "id": "6DsHDZmrOgLBmxa9DJE6sb", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02926f43e7cce571e62720fd46ab67616d00001e02b89cf022db28fa31376e0ed8ab67616d00001e02f60070dce96a2c1b70cf6ff0ab67616d00001e02f619042d5f6b2149a4f5e0ca", - "width": 60 - } - ], - "name": "old songs (2000-2017)", - "owner": { - "display_name": "cloudkissees_", - "external_urls": { - "spotify": "https://open.spotify.com/user/cli1csrh97684wluip5gaf93i" - }, - "href": "https://api.spotify.com/v1/users/cli1csrh97684wluip5gaf93i", - "id": "cli1csrh97684wluip5gaf93i", - "type": "user", - "uri": "spotify:user:cli1csrh97684wluip5gaf93i" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAACb5DPnVU9fxw5KPZ443+GidJ3iwlZ", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6DsHDZmrOgLBmxa9DJE6sb/tracks", - "total": 491 - }, - "type": "playlist", - "uri": "spotify:playlist:6DsHDZmrOgLBmxa9DJE6sb" - }, - { - "collaborative": false, - "description": "Pov: u r rich, probably drinking expensive champagne and watching your family riding horses or playing golf", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0mJKDfPHCzi5mtkNxThfwU" - }, - "href": "https://api.spotify.com/v1/playlists/0mJKDfPHCzi5mtkNxThfwU", - "id": "0mJKDfPHCzi5mtkNxThfwU", - "images": [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da840f8c868a5d5236d10984e626", - "width": null - } - ], - "name": "old money style/ rich 💸💰", - "owner": { - "display_name": "Julia Marie Coyle Dørum", - "external_urls": { - "spotify": "https://open.spotify.com/user/julia.dorum" - }, - "href": "https://api.spotify.com/v1/users/julia.dorum", - "id": "julia.dorum", - "type": "user", - "uri": "spotify:user:julia.dorum" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAA2KhxBUAgFajQ89+M2sa3hv4jJWqY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0mJKDfPHCzi5mtkNxThfwU/tracks", - "total": 167 - }, - "type": "playlist", - "uri": "spotify:playlist:0mJKDfPHCzi5mtkNxThfwU" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5VRWlTmnbHXByhM7qQsTEJ" - }, - "href": "https://api.spotify.com/v1/playlists/5VRWlTmnbHXByhM7qQsTEJ", - "id": "5VRWlTmnbHXByhM7qQsTEJ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfc8a0ea93056e2d6dcbefcab67616d00001e02656e921d6769ba28a74acc17ab67616d00001e0286b0c9728ad3ed338eaeea79ab67616d00001e0287be2cd7396e138e74cb347c", - "width": 60 - } - ], - "name": "OLD BANGERS 2000-2015", - "owner": { - "display_name": "Thomas Bro", - "external_urls": { - "spotify": "https://open.spotify.com/user/1157697626" - }, - "href": "https://api.spotify.com/v1/users/1157697626", - "id": "1157697626", - "type": "user", - "uri": "spotify:user:1157697626" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABVhLtJfwetAWorrxj6OQBu36wH7zc", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5VRWlTmnbHXByhM7qQsTEJ/tracks", - "total": 95 - }, - "type": "playlist", - "uri": "spotify:playlist:5VRWlTmnbHXByhM7qQsTEJ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4tpbrXsklgYKdtpQIDKgGQ" - }, - "href": "https://api.spotify.com/v1/playlists/4tpbrXsklgYKdtpQIDKgGQ", - "id": "4tpbrXsklgYKdtpQIDKgGQ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023f97d4244eff5852477d9ee0ab67616d00001e024ea6653890e297d53e93e3e0ab67616d00001e0263facc42e4a35eb3aa182b59ab67616d00001e0266c3eb32692a0ae487079cf1", - "width": 60 - } - ], - "name": "BEST OLD SONGS❤️", - "owner": { - "display_name": "Jamie Peeters", - "external_urls": { - "spotify": "https://open.spotify.com/user/21gxseck66ayyrudfctb2u6wi" - }, - "href": "https://api.spotify.com/v1/users/21gxseck66ayyrudfctb2u6wi", - "id": "21gxseck66ayyrudfctb2u6wi", - "type": "user", - "uri": "spotify:user:21gxseck66ayyrudfctb2u6wi" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAACQaNduRab7+nPoZk6o1cn0xxwUvA2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4tpbrXsklgYKdtpQIDKgGQ/tracks", - "total": 533 - }, - "type": "playlist", - "uri": "spotify:playlist:4tpbrXsklgYKdtpQIDKgGQ" - } - ] - }, - "shows": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=show&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=show&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 1000, - "items": [ - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Join Dhar, Cral & Ben in this informative, irreverent, and largely irrelevant Warhammer Old World lore podcast.", - "html_description": "Join Dhar, Cral & Ben in this informative, irreverent, and largely irrelevant Warhammer Old World lore podcast.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/7xb1wRaX7zlLPeoyGm0EmM" - }, - "href": "https://api.spotify.com/v1/shows/7xb1wRaX7zlLPeoyGm0EmM", - "id": "7xb1wRaX7zlLPeoyGm0EmM", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8abb55c522d8db4aa1b53fdc84", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fbb55c522d8db4aa1b53fdc84", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dbb55c522d8db4aa1b53fdc84", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "mixed", - "name": "Warhammer Old World: Laying Down The Lore", - "publisher": "Laying Down The Lore", - "type": "show", - "uri": "spotify:show:7xb1wRaX7zlLPeoyGm0EmM", - "total_episodes": 100 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Immerse yourself in the cozy world of Cottagecore with this soothing music playlist designed to help you relax and drift off to sleep. Let the gentle melodies and nature sounds transport you to a peaceful countryside escape, perfect for unwinding after a long day. Close your eyes, take a deep breath, and let the tranquil vibes of Cottagecore lull you into a restful slumber. Enjoy the vibes💜:) To everyone supporting my channel, Thank You and see you in my next video ❤️", - "html_description": "Immerse yourself in the cozy world of Cottagecore with this soothing music playlist designed to help you relax and drift off to sleep. Let the gentle melodies and nature sounds transport you to a peaceful countryside escape, perfect for unwinding after a long day. Close your eyes, take a deep breath, and let the tranquil vibes of Cottagecore lull you into a restful slumber.
Enjoy the vibes💜:)
To everyone supporting my channel, Thank You and see you in my next video ❤️", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7L6zhkc7F1vo4dO5VWYnAq" - }, - "href": "https://api.spotify.com/v1/shows/7L6zhkc7F1vo4dO5VWYnAq", - "id": "7L6zhkc7F1vo4dO5VWYnAq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a94b5b31e2c34235b74228a2e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f94b5b31e2c34235b74228a2e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d94b5b31e2c34235b74228a2e", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "mixed", - "name": "Oldies playing from another room", - "publisher": "Oldies playing from another room", - "type": "show", - "uri": "spotify:show:7L6zhkc7F1vo4dO5VWYnAq", - "total_episodes": 10 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Nemohli jste poslouchat některou naši Hudební knihovnu, Kalendárium nebo Aktuality v oldies světě? Máme pro vás náš Podcast. Oldies Radio Online, nejlepší hudba 60., 70. a 80. let.", - "html_description": "Nemohli jste poslouchat některou naši Hudební knihovnu, Kalendárium nebo Aktuality v oldies světě? Máme pro vás náš Podcast. Oldies Radio Online, nejlepší hudba 60., 70. a 80. let.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7EAmoqvLflhaf7k5Tu7IIf" - }, - "href": "https://api.spotify.com/v1/shows/7EAmoqvLflhaf7k5Tu7IIf", - "id": "7EAmoqvLflhaf7k5Tu7IIf", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a37db53b011713ba9986b1371", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f37db53b011713ba9986b1371", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d37db53b011713ba9986b1371", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "cs" - ], - "media_type": "audio", - "name": "Oldies Radio Online Podcast", - "publisher": "Oldies Radio Online", - "type": "show", - "uri": "spotify:show:7EAmoqvLflhaf7k5Tu7IIf", - "total_episodes": 245 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "A community podcast about Warhammer the Old World. A world of legends set out to bring you hot gossip, deep lore and fun insights", - "html_description": "A community podcast about Warhammer the Old World. A world of legends set out to bring you hot gossip, deep lore and fun insights", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/6aYBEAFVNnGxImc7ZGikKE" - }, - "href": "https://api.spotify.com/v1/shows/6aYBEAFVNnGxImc7ZGikKE", - "id": "6aYBEAFVNnGxImc7ZGikKE", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a1fc3ed9a2255f6fe528f88c0", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f1fc3ed9a2255f6fe528f88c0", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d1fc3ed9a2255f6fe528f88c0", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Square Based: A Warhammer Fantasy in the Old World", - "publisher": "Square Based Podcast", - "type": "show", - "uri": "spotify:show:6aYBEAFVNnGxImc7ZGikKE", - "total_episodes": 74 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "In the mountains of central Appalachia, blood runs as deep as these hollers and just as dark. Since before our kind knew these hills, hearts of unknowable hunger and madness have slumbered beneath them. These are the darkest mountains in the world. How dare we think we can break the skin of a god and dig out its heart without bringing forth blood and darkness? Old Gods of Appalachia is a horror-anthology podcast set in the shadows of an Alternate Appalachia, a place where digging too deep into the mines was just the first mistake.To learn more about Old Gods of Appalachia, visit our website at www.oldgodsofappalachia.com, and be sure to complete your social media ritual and follow us on Facebook and Instagram @oldgodsofappalachia, or Twitter and Tumblr @oldgodspod. If you'd like to support the show, you can join or Patreon at www.patreon.com/oldgodsofappalachia, or support us on Acast at supporter.acast.com/old-gods-of-appalachia. You can also find t-shirts, hoodies, mugs, and other Old Gods merch in our shop at www.teepublic.com/stores/oldgodsofappalachia.Old Gods of Appalachia is a production of DeepNerd Media and is distributed by Rusty Quill. All rights reserved. Get Build Mama a Coffin, Black Mouthed Dog and other exclusive content on Patreon!Support this show http://supporter.acast.com/old-gods-of-appalachia. Hosted on Acast. See acast.com/privacy for more information.", - "html_description": "

In the mountains of central Appalachia, blood runs as deep as these hollers and just as dark. Since before our kind knew these hills, hearts of unknowable hunger and madness have slumbered beneath them. These are the darkest mountains in the world. How dare we think we can break the skin of a god and dig out its heart without bringing forth blood and darkness? Old Gods of Appalachia is a horror-anthology podcast set in the shadows of an Alternate Appalachia, a place where digging too deep into the mines was just the first mistake.


To learn more about Old Gods of Appalachia, visit our website at www.oldgodsofappalachia.com, and be sure to complete your social media ritual and follow us on Facebook and Instagram @oldgodsofappalachia, or Twitter and Tumblr @oldgodspod. If you'd like to support the show, you can join or Patreon at www.patreon.com/oldgodsofappalachia, or support us on Acast at supporter.acast.com/old-gods-of-appalachia. You can also find t-shirts, hoodies, mugs, and other Old Gods merch in our shop at www.teepublic.com/stores/oldgodsofappalachia.


Old Gods of Appalachia is a production of DeepNerd Media and is distributed by Rusty Quill. All rights reserved.

Get Build Mama a Coffin, Black Mouthed Dog and other exclusive content on Patreon!

Support this show http://supporter.acast.com/old-gods-of-appalachia.


Hosted on Acast. See acast.com/privacy for more information.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/0rOkFpkORBFMEIHfV0YKzJ" - }, - "href": "https://api.spotify.com/v1/shows/0rOkFpkORBFMEIHfV0YKzJ", - "id": "0rOkFpkORBFMEIHfV0YKzJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2645bffb86a9c9f4bf8b0fca", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2645bffb86a9c9f4bf8b0fca", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2645bffb86a9c9f4bf8b0fca", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Old Gods of Appalachia", - "publisher": "DeepNerd Media", - "type": "show", - "uri": "spotify:show:0rOkFpkORBFMEIHfV0YKzJ", - "total_episodes": 107 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "old account was dontha16", - "html_description": "old account was dontha16", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/60vTi9HXDd8t0AMxxOu0lb" - }, - "href": "https://api.spotify.com/v1/shows/60vTi9HXDd8t0AMxxOu0lb", - "id": "60vTi9HXDd8t0AMxxOu0lb", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a92ec8ee36e07cff407a9bc87", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f92ec8ee36e07cff407a9bc87", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d92ec8ee36e07cff407a9bc87", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "donbear", - "publisher": "donthaboy", - "type": "show", - "uri": "spotify:show:60vTi9HXDd8t0AMxxOu0lb", - "total_episodes": 28 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Old Cases de Moorden van Toen is een historische true crime podcast die je meeneemt in de duistere geschiedenis van moord en doodslag in Twente en de Achterhoek. In deze serie duik je samen met Annelot van Erven de historie in en reis je af naar de vergeten hoeken van Twente, waar zich de meest gruwelijke taferelen hebben afgespeeld. En waar de rechtspraak misschien nog wel luguberder was dan de moorden zelf. Van radbraken tot ophanging en van onschuldige slachtoffers tot meedogenloze moordenaars; geen detail blijft onbesproken. Luister naar Old Cases en ontdek de verhalen die nog steeds rillingen over je rug zullen jagen.", - "html_description": "

Old Cases de Moorden van Toen is een historische true crime podcast die je meeneemt in de duistere geschiedenis van moord en doodslag in Twente en de Achterhoek. In deze serie duik je samen met Annelot van Erven de historie in en reis je af naar de vergeten hoeken van Twente, waar zich de meest gruwelijke taferelen hebben afgespeeld. En waar de rechtspraak misschien nog wel luguberder was dan de moorden zelf. Van radbraken tot ophanging en van onschuldige slachtoffers tot meedogenloze moordenaars; geen detail blijft onbesproken. Luister naar Old Cases en ontdek de verhalen die nog steeds rillingen over je rug zullen jagen.

", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/5ArK0JxpViyd48vb7TYfmL" - }, - "href": "https://api.spotify.com/v1/shows/5ArK0JxpViyd48vb7TYfmL", - "id": "5ArK0JxpViyd48vb7TYfmL", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a20350ee47fe12f026dfab940", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f20350ee47fe12f026dfab940", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d20350ee47fe12f026dfab940", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl-NL" - ], - "media_type": "audio", - "name": "Old Cases, de moorden van toen", - "publisher": "Tubantia", - "type": "show", - "uri": "spotify:show:5ArK0JxpViyd48vb7TYfmL", - "total_episodes": 3 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Welcome to the #1 Horror Podcast in the World. This podcast features professional storytelling productions. New stories released weekly. Be sure to click follow to receive all notifications. 🔔 🎉 Ad-free Podcast + over 80 Exclusive Bonus Episodes: patreon.com/DrNoSleep ✅ Advertising Inquiries: This podcast is represented by True Native Media. Email all advertising inquiries to info@truenativemedia.com. 📈 Business Inquiries: business@drnosleep.com * * * EXPLICIT CONTENT DISCLAIMER: This podcast contains explicit content not limited to intense themes, strong language, and graphic depictions of violence intended for adults 18 years of age or older. These stories are NOT intended for children under the age of 18. Parental guidance is strongly advised for children under the age of 18. Listener discretion is advised. COPYRIGHT WARNING: The use of any affiliated audio of these episodes is not allowed, as it is a direct violation of copyright law and will result in legal action. Copyright © 2025 Dr. NoSleep #drnosleep #horrorstories #scarystories #doctornosleep #horror #horrorpodcast #scary", - "html_description": "

Welcome to the #1 Horror Podcast in the World. This podcast features professional storytelling productions. New stories released weekly. Be sure to click follow to receive all notifications. 🔔


🎉 Ad-free Podcast + over 80 Exclusive Bonus Episodes: patreon.com/DrNoSleep


✅ Advertising Inquiries: This podcast is represented by True Native Media. Email all advertising inquiries to info@truenativemedia.com.


📈 Business Inquiries: business@drnosleep.com


* * *


EXPLICIT CONTENT DISCLAIMER:

This podcast contains explicit content not limited to intense themes, strong language, and graphic depictions of violence intended for adults 18 years of age or older. These stories are NOT intended for children under the age of 18. Parental guidance is strongly advised for children under the age of 18. Listener discretion is advised.


COPYRIGHT WARNING:

The use of any affiliated audio of these episodes is not allowed, as it is a direct violation of copyright law and will result in legal action.




Copyright © 2025 Dr. NoSleep






#drnosleep #horrorstories #scarystories #doctornosleep #horror #horrorpodcast #scary

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/2Sqi0dJoIudYWq430DXRH5" - }, - "href": "https://api.spotify.com/v1/shows/2Sqi0dJoIudYWq430DXRH5", - "id": "2Sqi0dJoIudYWq430DXRH5", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a47b5c09291ffdcf498dff971", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f47b5c09291ffdcf498dff971", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d47b5c09291ffdcf498dff971", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Scary Horror Stories by Dr. NoSleep", - "publisher": "Dr. NoSleep Studios", - "type": "show", - "uri": "spotify:show:2Sqi0dJoIudYWq430DXRH5", - "total_episodes": 696 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Season 6: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in?Also: Al Fayed: Predator at Harrods. Women accuse Mohamed Al Fayed of rape. And: The Abercrombie Guys. Investigating sexual exploitation claims against the former CEO of fashion giant Abercrombie & Fitch.Delve into a World of Secrets: the global investigations podcast from the BBC. Uncovering stories around the world and telling them, episode by episode, with gripping storytelling.Latest season: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in? Journalist Cat McShane investigates the international yoga movement headed by Gregorian Bivolaru, the spiritual guide arrested by French police in November 2023 and charged with human trafficking, organised kidnapping, rape and organised abuse of weakness by members of a sect.“Nobody joins a cult. You just get sucked in,” says Penny, the mother of a university tutor from London.In 2017, Penny’s daughter Miranda joins a yoga charity with studios in London and Oxford. The classes make Miranda feel amazing and the people make her feel loved. “There was this sense that these people cared,” says Miranda.But as Miranda becomes more deeply involved with the international yoga movement that her group in London is part of, her mother Penny starts to worry. “When she rang us, she'd be speaking in very hushed tones,” says Penny.Miranda has fallen under the spell of guru Gregorian Bivolaru. She joins thousands of his followers from around the world on a free holiday at a coastal resort in Romania. It’s part of a search for spiritual enlightenment which will see her driven through Paris blindfolded and doing sex work in Prague.This series includes explicit sexual content and strong language.Previous seasons of World of Secrets:Season 5: Finding Mr Fox. Investigating a plot to smuggle around a hundred millions of dollars’ worth of drugs from Brazil to Europe and the miscarriage of justice that followed. But where is the man Brazilian police believe to be at the centre of it all?Season 4: Al Fayed, Predator at Harrods. Egyptian billionaire Mohamed Al Fayed – then owner of Harrods, one of the most famous shops in the world – is accused of rape and attempted rape by women who worked for him. Now they refuse to be silenced any longer.Season 3: The Apartheid Killer. All the victims were black and the youngest was just 12 years old. Some relatives are still searching for the graves. They were killed during a three-year bloodbath in the 1980s, in the South African city of East London – by one person. He killed so many, he lost count. In piecing together this story, we expose the disturbed past and racial injustices of South Africa itself.Season 2: The Disciples. The cult of Nigerian prophet TB Joshua. A story of miracles, faith and manipulation, told by people from around the world, who gave up everything for one of the most powerful religious figures of the century. Lured by TB Joshua’s claimed healing powers, they live as disciples in a guarded Lagos compound, cut off from family and friends.Season 1: The Abercrombie Guys. An investigation into claims of sexual exploitation made against the former CEO of fashion giant Abercrombie & Fitch. He and his British partner were accused by several men, recruited for sex events they hosted around the world.", - "html_description": "

Season 6: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in?

Also: Al Fayed: Predator at Harrods. Women accuse Mohamed Al Fayed of rape. And: The Abercrombie Guys. Investigating sexual exploitation claims against the former CEO of fashion giant Abercrombie & Fitch.

Delve into a World of Secrets: the global investigations podcast from the BBC. Uncovering stories around the world and telling them, episode by episode, with gripping storytelling.

Latest season: The Bad Guru. A yoga school in London. A guru running from the police. How did Miranda get sucked in? Journalist Cat McShane investigates the international yoga movement headed by Gregorian Bivolaru, the spiritual guide arrested by French police in November 2023 and charged with human trafficking, organised kidnapping, rape and organised abuse of weakness by members of a sect.

“Nobody joins a cult. You just get sucked in,” says Penny, the mother of a university tutor from London.

In 2017, Penny’s daughter Miranda joins a yoga charity with studios in London and Oxford. The classes make Miranda feel amazing and the people make her feel loved. “There was this sense that these people cared,” says Miranda.

But as Miranda becomes more deeply involved with the international yoga movement that her group in London is part of, her mother Penny starts to worry. “When she rang us, she'd be speaking in very hushed tones,” says Penny.

Miranda has fallen under the spell of guru Gregorian Bivolaru. She joins thousands of his followers from around the world on a free holiday at a coastal resort in Romania. It’s part of a search for spiritual enlightenment which will see her driven through Paris blindfolded and doing sex work in Prague.

This series includes explicit sexual content and strong language.

Previous seasons of World of Secrets:

Season 5: Finding Mr Fox. Investigating a plot to smuggle around a hundred millions of dollars’ worth of drugs from Brazil to Europe and the miscarriage of justice that followed. But where is the man Brazilian police believe to be at the centre of it all?

Season 4: Al Fayed, Predator at Harrods. Egyptian billionaire Mohamed Al Fayed – then owner of Harrods, one of the most famous shops in the world – is accused of rape and attempted rape by women who worked for him. Now they refuse to be silenced any longer.

Season 3: The Apartheid Killer. All the victims were black and the youngest was just 12 years old. Some relatives are still searching for the graves. They were killed during a three-year bloodbath in the 1980s, in the South African city of East London – by one person. He killed so many, he lost count. In piecing together this story, we expose the disturbed past and racial injustices of South Africa itself.

Season 2: The Disciples. The cult of Nigerian prophet TB Joshua. A story of miracles, faith and manipulation, told by people from around the world, who gave up everything for one of the most powerful religious figures of the century. Lured by TB Joshua’s claimed healing powers, they live as disciples in a guarded Lagos compound, cut off from family and friends.

Season 1: The Abercrombie Guys. An investigation into claims of sexual exploitation made against the former CEO of fashion giant Abercrombie & Fitch. He and his British partner were accused by several men, recruited for sex events they hosted around the world.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/7IhoWIUlWsueU2qqDm2ME6" - }, - "href": "https://api.spotify.com/v1/shows/7IhoWIUlWsueU2qqDm2ME6", - "id": "7IhoWIUlWsueU2qqDm2ME6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a72efc425c83967b0bc656b21", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f72efc425c83967b0bc656b21", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d72efc425c83967b0bc656b21", - "width": 64 - } - ], - "is_externally_hosted": true, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "World Of Secrets", - "publisher": "BBC", - "type": "show", - "uri": "spotify:show:7IhoWIUlWsueU2qqDm2ME6", - "total_episodes": 49 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "An old texas man narrating true disturbing horror stories that feature deep woods, park rangers,camping,hiking, various cryptids and creatures such as bigfoot,wendigos,dogman and everything true crime. Hosted on Acast. See acast.com/privacy for more information.", - "html_description": "An old texas man narrating true disturbing horror stories that feature deep woods, park rangers,camping,hiking, various cryptids and creatures such as bigfoot,wendigos,dogman and everything true crime.

Hosted on Acast. See acast.com/privacy for more information.

", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6g9J2XiGy6nuUu0CapmYEz" - }, - "href": "https://api.spotify.com/v1/shows/6g9J2XiGy6nuUu0CapmYEz", - "id": "6g9J2XiGy6nuUu0CapmYEz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ad4e9d55e80a87560c40acf58", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fd4e9d55e80a87560c40acf58", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dd4e9d55e80a87560c40acf58", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Old Texas Scare (True Horror Stories Podcast)", - "publisher": "A. Rajic", - "type": "show", - "uri": "spotify:show:6g9J2XiGy6nuUu0CapmYEz", - "total_episodes": 512 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Only Good Songs", - "html_description": "Only Good Songs", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/6WehmuNZ5iOtdOdjQAoWWQ" - }, - "href": "https://api.spotify.com/v1/shows/6WehmuNZ5iOtdOdjQAoWWQ", - "id": "6WehmuNZ5iOtdOdjQAoWWQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab7688a7c72b0c4d9c02b3ace", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb7688a7c72b0c4d9c02b3ace", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db7688a7c72b0c4d9c02b3ace", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Old Hip Hop", - "publisher": "Devil Mate", - "type": "show", - "uri": "spotify:show:6WehmuNZ5iOtdOdjQAoWWQ", - "total_episodes": 2 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "They're old! They're queens! There's two of them! It's Two Old Queens! Join Mark Rennie and John Flynn as they search for the gayest movie ever made, using a byzantine ranking system, their own hard opinions, and some inevitable controversies from a stacked lineup of guests to come!CHECK OUT TWO OLD QUEENS EVERY WEDNESDAY STARTING JUNE 26! SUBSCRIBE NOW!!!!! Hosted on Acast. See acast.com/privacy for more information.", - "html_description": "

They're old! They're queens! There's two of them! It's Two Old Queens! Join Mark Rennie and John Flynn as they search for the gayest movie ever made, using a byzantine ranking system, their own hard opinions, and some inevitable controversies from a stacked lineup of guests to come!


CHECK OUT TWO OLD QUEENS EVERY WEDNESDAY STARTING JUNE 26! SUBSCRIBE NOW!!!!!


Hosted on Acast. See acast.com/privacy for more information.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5tJ0mEZEIY1QZPZqdHwgvY" - }, - "href": "https://api.spotify.com/v1/shows/5tJ0mEZEIY1QZPZqdHwgvY", - "id": "5tJ0mEZEIY1QZPZqdHwgvY", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a44252d43e6cd3a052eff9d94", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f44252d43e6cd3a052eff9d94", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d44252d43e6cd3a052eff9d94", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Two Old Queens", - "publisher": "John Flynn & Mark Rennie", - "type": "show", - "uri": "spotify:show:5tJ0mEZEIY1QZPZqdHwgvY", - "total_episodes": 200 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Read through the pre-Disney Star Wars universe along with the Star Wars: Old Canon Book Club, and trace the history of Star Wars as a world, a brand, and a part of our cultural fabric.", - "html_description": "Read through the pre-Disney Star Wars universe along with the Star Wars: Old Canon Book Club, and trace the history of Star Wars as a world, a brand, and a part of our cultural fabric.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/6g4V179CojjvrUgy5B62CY" - }, - "href": "https://api.spotify.com/v1/shows/6g4V179CojjvrUgy5B62CY", - "id": "6g4V179CojjvrUgy5B62CY", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5891926b4832680d23befc0b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5891926b4832680d23befc0b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5891926b4832680d23befc0b", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Star Wars: Old Canon Book Club", - "publisher": "Star Wars: Old Canon Book Club", - "type": "show", - "uri": "spotify:show:6g4V179CojjvrUgy5B62CY", - "total_episodes": 24 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "History and myth of the Cradle of Civilization, bronze age Mesopotamia, beginning with the dawn of writing. The show will cover the full history of Mesopotamia, from Gilgamesh to Nabonidas, a span of some 2500 years, with myths of heroes and gods, and tales of daily life peppered throughout. Sumer, Akkad, Old Babylon, Hittites, and Israel have all been covered in depth, current episodes get deep into the Assyrian Empire. New episodes every other Wednesday. Online at oldeststories.net.", - "html_description": "History and myth of the Cradle of Civilization, bronze age Mesopotamia, beginning with the dawn of writing. The show will cover the full history of Mesopotamia, from Gilgamesh to Nabonidas, a span of some 2500 years, with myths of heroes and gods, and tales of daily life peppered throughout. Sumer, Akkad, Old Babylon, Hittites, and Israel have all been covered in depth, current episodes get deep into the Assyrian Empire. New episodes every other Wednesday. Online at oldeststories.net.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/5PGrkXrRpTug5N4r1FRf4Y" - }, - "href": "https://api.spotify.com/v1/shows/5PGrkXrRpTug5N4r1FRf4Y", - "id": "5PGrkXrRpTug5N4r1FRf4Y", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a78fd84e8ee959fa0fd7d25bb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f78fd84e8ee959fa0fd7d25bb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d78fd84e8ee959fa0fd7d25bb", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "mixed", - "name": "Oldest Stories", - "publisher": "James Bleckley", - "type": "show", - "uri": "spotify:show:5PGrkXrRpTug5N4r1FRf4Y", - "total_episodes": 196 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Wyatt Earp, Jesse James, and Butch and Sundance. Lakota, Comanche and Apache. Wars, gunfights and robberies. This show covers the toughest lawmen, the wildest outlaws, and the deadliest towns — all the people and events that shaped the American West.", - "html_description": "

Wyatt Earp, Jesse James, and Butch and Sundance. Lakota, Comanche and Apache. Wars, gunfights and robberies. This show covers the toughest lawmen, the wildest outlaws, and the deadliest towns — all the people and events that shaped the American West.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1ffECQs7FDujQqRsADqvxo" - }, - "href": "https://api.spotify.com/v1/shows/1ffECQs7FDujQqRsADqvxo", - "id": "1ffECQs7FDujQqRsADqvxo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8abee18dc8e43e2c3da4697729", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fbee18dc8e43e2c3da4697729", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dbee18dc8e43e2c3da4697729", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Legends of the Old West", - "publisher": "Black Barrel Media", - "type": "show", - "uri": "spotify:show:1ffECQs7FDujQqRsADqvxo", - "total_episodes": 253 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Dad's Army Old Time Radio", - "html_description": "Dad's Army Old Time Radio", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5nfz0PM8lgPW4haw3CiUjc" - }, - "href": "https://api.spotify.com/v1/shows/5nfz0PM8lgPW4haw3CiUjc", - "id": "5nfz0PM8lgPW4haw3CiUjc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a71cbd8f48e3d4e314cf5abda", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f71cbd8f48e3d4e314cf5abda", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d71cbd8f48e3d4e314cf5abda", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Dad's Army Old Time Radio", - "publisher": "sipero", - "type": "show", - "uri": "spotify:show:5nfz0PM8lgPW4haw3CiUjc", - "total_episodes": 100 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Walk the battlefields of the First World War with Military Historian, Paul Reed. In these podcasts, Paul brings together over 40 years of studying the Great War, from the stories of veterans he interviewed, to when he spent more than a decade living on the Old Front Line in the heart of the Somme battlefields. ", - "html_description": "

Walk the battlefields of the First World War with Military Historian, Paul Reed. In these podcasts, Paul brings together over 40 years of studying the Great War, from the stories of veterans he interviewed, to when he spent more than a decade living on the Old Front Line in the heart of the Somme battlefields. 

", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7AO6ihESPKA844MfakODi0" - }, - "href": "https://api.spotify.com/v1/shows/7AO6ihESPKA844MfakODi0", - "id": "7AO6ihESPKA844MfakODi0", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8adae65bc23a2ade4bcceabb54", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fdae65bc23a2ade4bcceabb54", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68ddae65bc23a2ade4bcceabb54", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-GB" - ], - "media_type": "audio", - "name": "The Old Front Line", - "publisher": "Paul Reed", - "type": "show", - "uri": "spotify:show:7AO6ihESPKA844MfakODi0", - "total_episodes": 224 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The historical true-crime podcast that uncovers old blood with each new episode. Join us as a historian investigates history's most fascinating cases of true crime.", - "html_description": "

The historical true-crime podcast that uncovers old blood with each new episode. Join us as a historian investigates history's most fascinating cases of true crime.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/3SvMPht8MYAmRovdIpb9T2" - }, - "href": "https://api.spotify.com/v1/shows/3SvMPht8MYAmRovdIpb9T2", - "id": "3SvMPht8MYAmRovdIpb9T2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac62d11c7b85db976ad033307", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc62d11c7b85db976ad033307", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc62d11c7b85db976ad033307", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Old Blood", - "publisher": "Old Blood", - "type": "show", - "uri": "spotify:show:3SvMPht8MYAmRovdIpb9T2", - "total_episodes": 31 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Don't Get Anyone Pregnant, If You Do, Make Sure Their Hot I’m Out……Peaceee Buy my Merch....", - "html_description": "Don't Get Anyone Pregnant, If You Do, Make Sure Their Hot
I’m Out……Peaceee
Buy my Merch....", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/119B6Ijbq7A6aZaNQ5i0kW" - }, - "href": "https://api.spotify.com/v1/shows/119B6Ijbq7A6aZaNQ5i0kW", - "id": "119B6Ijbq7A6aZaNQ5i0kW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a9762c3369858d9b23690228e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f9762c3369858d9b23690228e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d9762c3369858d9b23690228e", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "mixed", - "name": "Old Scrubby", - "publisher": "Old Scrubby", - "type": "show", - "uri": "spotify:show:119B6Ijbq7A6aZaNQ5i0kW", - "total_episodes": 337 - }, - { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "From the writers of the internationally successful Grumpy Old Women, award winning Comedian Jenny Eclair and Producer and Writer Judith Holder deliver Older & Wider, a podcast that offers insight, gossip and general news from the menopausal front and beyond. A podcast worth getting your ears syringed for. Hosted on Acast. See acast.com/privacy for more information.", - "html_description": "From the writers of the internationally successful Grumpy Old Women, award winning Comedian Jenny Eclair and Producer and Writer Judith Holder deliver Older & Wider, a podcast that offers insight, gossip and general news from the menopausal front and beyond. A podcast worth getting your ears syringed for.

Hosted on Acast. See acast.com/privacy for more information.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/3ScVA6cJZpMifpJJDmmodP" - }, - "href": "https://api.spotify.com/v1/shows/3ScVA6cJZpMifpJJDmmodP", - "id": "3ScVA6cJZpMifpJJDmmodP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a06ed28bf2210aafba1c55788", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f06ed28bf2210aafba1c55788", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d06ed28bf2210aafba1c55788", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Older and Wider Podcast", - "publisher": "Avalon ", - "type": "show", - "uri": "spotify:show:3ScVA6cJZpMifpJJDmmodP", - "total_episodes": 290 - } - ] - }, - "episodes": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=episode&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=episode&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 1000, - "items": [ - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3zJrHOCBO3wr47bomJVhMn/clip_479369_539369.mp3", - "description": "D Oldies playing from another room and it's raining (raindrops falling on leaves) 3 Hours", - "html_description": "

D Oldies playing from another room and it's raining (raindrops falling on leaves) 3 Hours

", - "duration_ms": 10822789, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0VQo6YBrswFORfvwwKCER3" - }, - "href": "https://api.spotify.com/v1/episodes/0VQo6YBrswFORfvwwKCER3", - "id": "0VQo6YBrswFORfvwwKCER3", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8afa5243ceb27c662449a985ec", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1ffa5243ceb27c662449a985ec", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dfa5243ceb27c662449a985ec", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "D Oldies playing from another room and it's raining (raindrops falling on leaves) 3 Hours", - "release_date": "2021-04-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0VQo6YBrswFORfvwwKCER3" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7yNKbwIdwLxwGgrrb0PfsG/clip_0_60000.mp3", - "description": "Live from The Eras Tour (Taylor's Version) Hosted on Acast. See acast.com/privacy for more information.", - "html_description": "Live from The Eras Tour (Taylor's Version)

Hosted on Acast. See acast.com/privacy for more information.

", - "duration_ms": 266109, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/33xXabVnJfMTdHWtARgn3D" - }, - "href": "https://api.spotify.com/v1/episodes/33xXabVnJfMTdHWtARgn3D", - "id": "33xXabVnJfMTdHWtARgn3D", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a1bd104ffbd807446f760ddf8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f1bd104ffbd807446f760ddf8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d1bd104ffbd807446f760ddf8", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Who's Affraid Of Little Old Me (Live From The Eras Tour)", - "release_date": "2024-08-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:33xXabVnJfMTdHWtARgn3D" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4CODMLjgPj1xRYCvpEejRa/clip_0_60000.mp3", - "description": "'My Old Ass' (in het Nederlands steevast ondertiteld met 'mijn oude roestige reet') met Aubrey Plaza is nu te bekijken! 🍑 Helaas heeft deze film niet in de bioscoop gedraaid, maar het is wat ons betreft een Liga 2024-essential om te checken. Dus kijk de film en luister dan deze aflevering (spoilers included!) en geniet mee van deze queer joy op je scherm!  Vermeldingen in de podcast:  - Out Magazine (https://www.instagram.com/outmagazine/) (van het Wicked interview) 🎬 'My Old Ass' (https://www.primevideo.com/detail/My-Old-Ass/0I1NQNGUFGJHUETGXCD3TC2S6Q)op Amazon Prime  🎶 TRANSNA het album (https://open.spotify.com/album/3ZbB4lOfSxeGln33XsFyXG?si=2ZrJsWLIRiSDojKFuJvM8g) op Spotify", - "html_description": "

'My Old Ass' (in het Nederlands steevast ondertiteld met 'mijn oude roestige reet') met Aubrey Plaza is nu te bekijken! 🍑 Helaas heeft deze film niet in de bioscoop gedraaid, maar het is wat ons betreft een Liga 2024-essential om te checken. Dus kijk de film en luister dan deze aflevering (spoilers included!) en geniet mee van deze queer joy op je scherm! 


Vermeldingen in de podcast: 


- Out Magazine (van het Wicked interview)


🎬 'My Old Ass' op Amazon Prime 


🎶 TRANSNA het album op Spotify

", - "duration_ms": 3236287, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2ysMf0bq7NDmg14oyNAq2I" - }, - "href": "https://api.spotify.com/v1/episodes/2ysMf0bq7NDmg14oyNAq2I", - "id": "2ysMf0bq7NDmg14oyNAq2I", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a1fab4178009013b376f51668", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f1fab4178009013b376f51668", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d1fab4178009013b376f51668", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "nl-NL", - "languages": [ - "nl-NL" - ], - "name": "#33 - My Old Ass (S09)", - "release_date": "2024-11-30", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2ysMf0bq7NDmg14oyNAq2I" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0ZrdIKgrJFenoUmKy32rVQ/clip_208000_269720.mp3", - "description": "Use code LOGAN10 for 10% off your SeatGeek order https://seatgeek.onelink.me/RrnK/LOGAN10 *Up to $25 off   Billionaire whisperer Gstaad Guy joins the boys to discuss his secret hideaway for the elite, rivalry with Zachirific (Sydney Sweeney’s BF), bullying billionaires, why money CAN buy happiness, partnering with Loro Piana & AP, old money vs new money, saying À La Poubelle to his job at Apple, launching new Poubel charm bracelets & more…   SUBSCRIBE TO THE PODCAST ► https://www.youtube.com/impaulsive   Watch Previous (IMPAULSIVE'S TOP 24 MOMENTS OF 2024) ► https://www.youtube.com/watch?v=ea0EdsJZ0Rg   ADD US ON: INSTAGRAM: https://www.instagram.com/impaulsiveshow/   Timestamps: 0:00 Welcome Gstaad Guy! 💥 3:04 How Gstaad Guy Broke His Face! 🤕 5:06 The Billionaire Frown ☹️ 7:00 “Hideaway For The Elite” 😳 11:41 George, Logan & Mike Visiting Gstaad…🃏 17:09 Does Money Buy Happiness? 💸 21:25 Colton Vs Constance 🤑 24:02 George Roasted CEO of Coinbase! 🤣 27:03 Loro Piana & AP ⌚️ 34:16 Greatest Day of Gstaad Guy’s Life! 📲 39:48 Zachirific Rivalry 😤 42:30 Funny Billionaire Boat Story! 🛥️ 44:48 Mike & Gstaad Guy’s Rocky Relationship..😠 47:26 Leaving Apple To Become Influencer 🍎 52:35 Greatness of Zachirific 👏 56:44 Who Gets More Chicks? 💃🏼 57:15 À La Poubelle Game! 🗑️ 1:02:48 New Poubel Charm Bracelets! 🔥 1:09:34 The REAL Gstaad Guy..? 😱 1:11:46 Rich Kids Takeover! 🏨 1:13:25 Best Places to Visit on Earth? 🌎   PLEASE NOTE Impaulsive is a significant break from the typical content viewers have come to expect from the vlog channel & we could not be more proud and excited to watch this unfold and grow. Please be advised that we will be exploring a wide variety of topics (some adult-themed) and our younger viewers (and their parents) should be advised that some topics will be for mature audiences only.", - "html_description": "

Use code LOGAN10 for 10% off your SeatGeek order https://seatgeek.onelink.me/RrnK/LOGAN10 *Up to $25 off


 


Billionaire whisperer Gstaad Guy joins the boys to discuss his secret hideaway for the elite, rivalry with Zachirific (Sydney Sweeney’s BF), bullying billionaires, why money CAN buy happiness, partnering with Loro Piana & AP, old money vs new money, saying À La Poubelle to his job at Apple, launching new Poubel charm bracelets & more…


 


SUBSCRIBE TO THE PODCAST ► https://www.youtube.com/impaulsive


 


Watch Previous (IMPAULSIVE'S TOP 24 MOMENTS OF 2024) ► https://www.youtube.com/watch?v=ea0EdsJZ0Rg


 


ADD US ON: INSTAGRAM: https://www.instagram.com/impaulsiveshow/


 


Timestamps:


0:00 Welcome Gstaad Guy! 💥


3:04 How Gstaad Guy Broke His Face! 🤕


5:06 The Billionaire Frown ☹️


7:00 “Hideaway For The Elite” 😳


11:41 George, Logan & Mike Visiting Gstaad…🃏


17:09 Does Money Buy Happiness? 💸


21:25 Colton Vs Constance 🤑


24:02 George Roasted CEO of Coinbase! 🤣


27:03 Loro Piana & AP ⌚️


34:16 Greatest Day of Gstaad Guy’s Life! 📲


39:48 Zachirific Rivalry 😤


42:30 Funny Billionaire Boat Story! 🛥️


44:48 Mike & Gstaad Guy’s Rocky Relationship..😠


47:26 Leaving Apple To Become Influencer 🍎


52:35 Greatness of Zachirific 👏


56:44 Who Gets More Chicks? 💃🏼


57:15 À La Poubelle Game! 🗑️


1:02:48 New Poubel Charm Bracelets! 🔥


1:09:34 The REAL Gstaad Guy..? 😱


1:11:46 Rich Kids Takeover! 🏨


1:13:25 Best Places to Visit on Earth? 🌎


 


PLEASE NOTE


Impaulsive is a significant break from the typical content viewers have come to expect from the vlog channel & we could not be more proud and excited to watch this unfold and grow. Please be advised that we will be exploring a wide variety of topics (some adult-themed) and our younger viewers (and their parents) should be advised that some topics will be for mature audiences only.

", - "duration_ms": 4635742, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6pr7Hp7MoJTrf6x0qJFEBa" - }, - "href": "https://api.spotify.com/v1/episodes/6pr7Hp7MoJTrf6x0qJFEBa", - "id": "6pr7Hp7MoJTrf6x0qJFEBa", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a488fb29b868a43367803f60d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f488fb29b868a43367803f60d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d488fb29b868a43367803f60d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Meet Gstaad Guy: The 27-Year-Old Who Made a Career Bullying Billionaires", - "release_date": "2025-01-02", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6pr7Hp7MoJTrf6x0qJFEBa" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4UcNl8dAOKcS1MgXKHeRWr/clip_0_60000.mp3", - "description": "‏‏‏‏‏‏‏‏   ", - "html_description": "

‏‏‏‏‏‏‏‏   

", - "duration_ms": 287393, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/59bFT8fYFQfx3giqyJZNel" - }, - "href": "https://api.spotify.com/v1/episodes/59bFT8fYFQfx3giqyJZNel", - "id": "59bFT8fYFQfx3giqyJZNel", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a6c8715b45efbf7afd13f320e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f6c8715b45efbf7afd13f320e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d6c8715b45efbf7afd13f320e", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "tr", - "languages": [ - "tr" - ], - "name": "Öykü Gürman- Kül Oldum", - "release_date": "2022-02-08", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:59bFT8fYFQfx3giqyJZNel" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6vMrJnCN86BWrhDuzXYQwN/clip_9019_69019.mp3", - "description": "Bir Günlük Öldürün Beni", - "html_description": "

Bir Günlük Öldürün Beni

", - "duration_ms": 210077, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5Tl0pm6g17HHYtRbuiFUPo" - }, - "href": "https://api.spotify.com/v1/episodes/5Tl0pm6g17HHYtRbuiFUPo", - "id": "5Tl0pm6g17HHYtRbuiFUPo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aadac9d1b9a77936e6b13037d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fadac9d1b9a77936e6b13037d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dadac9d1b9a77936e6b13037d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "tr", - "languages": [ - "tr" - ], - "name": "Bir Günlük Öldürün Beni", - "release_date": "2023-09-08", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5Tl0pm6g17HHYtRbuiFUPo" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3VvmYibjNEDneYJaHXWNd2/clip_1029000_1088000.mp3", - "description": "In 1997 Beverly Dollarhide hears miraculous news: her missing son, Nicholas, has been found in Spain. But the person she thinks is her teenage son is actually a grown man, a well known French identity scammer named Frederic Bourdin. And, after Frederic is brought back to the United States to be with his pretend family, the mystery of the real Nicholas Barclay’s disappearance grows deeper.Be the first to know about Wondery’s newest podcasts, curated recommendations, and more! Sign up now at https://wondery.fm/wonderynewsletterListen to Scamfluencers on the Wondery App or wherever you get your podcasts. You can listen early and ad-free on Wondery+. Join Wondery+ in the Wondery App, Apple Podcasts or Spotify. Start your free trial by visiting wondery.com/links/scamfluencers/ now.See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.", - "html_description": "

In 1997 Beverly Dollarhide hears miraculous news: her missing son, Nicholas, has been found in Spain. But the person she thinks is her teenage son is actually a grown man, a well known French identity scammer named Frederic Bourdin. And, after Frederic is brought back to the United States to be with his pretend family, the mystery of the real Nicholas Barclay’s disappearance grows deeper.

Be the first to know about Wondery’s newest podcasts, curated recommendations, and more! Sign up now at https://wondery.fm/wonderynewsletter

Listen to Scamfluencers on the Wondery App or wherever you get your podcasts. You can listen early and ad-free on Wondery+. Join Wondery+ in the Wondery App, Apple Podcasts or Spotify. Start your free trial by visiting wondery.com/links/scamfluencers/ now.

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

", - "duration_ms": 3675141, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/064QZJa9VgJrzSiWcQ1Wcq" - }, - "href": "https://api.spotify.com/v1/episodes/064QZJa9VgJrzSiWcQ1Wcq", - "id": "064QZJa9VgJrzSiWcQ1Wcq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ad52e77a5844deee68aa3cd47", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fd52e77a5844deee68aa3cd47", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dd52e77a5844deee68aa3cd47", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Frédéric Bourdin: No Country For Old Men", - "release_date": "2025-01-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:064QZJa9VgJrzSiWcQ1Wcq" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1pK9rCPLq4xGc2WaBbkjko/clip_1415000_1478960.mp3", - "description": "On December 31st, 1989, a mother from a suburban neighborhood in Ohio disappeared into thin air. But when the dark secrets began to come to light, the picture grew darker and darker with every new revelation. And in today's special episode, we speak with Collier Landry, the victim's son, and the boy who helped solve the crime. - Listen to our new show, \"THE CONSPIRACY FILES\"!: -Spotify - https://open.spotify.com/show/5IY9nWD2MYDzlSYP48nRPl -Apple Podcasts - https://podcasts.apple.com/us/podcast/the-conspiracy-files/id1752719844 -Amazon/Audible - https://music.amazon.com/podcasts/ab1ade99-740c-46ae-8028-b2cf41eabf58/the-conspiracy-files -Pandora - https://www.pandora.com/podcast/the-conspiracy-files/PC:1001089101 -iHeart - https://iheart.com/podcast/186907423/ -PocketCast - https://pca.st/dpdyrcca -CastBox - https://castbox.fm/channel/id6193084?country=us - Stay Connected: Join the Murder in America fam in our free Facebook Community for a behind-the-scenes look, more insights and current events in the true crime world: https://www.facebook.com/groups/4365229996855701 If you want even more Murder in America bonus content, including ad-free episodes, come join us on Patreon: https://www.patreon.com/murderinamerica Instagram: http://instagram.com/murderinamerica/ Facebook:https://www.facebook.com/people/Murder-in-America-Podcast/100086268848682/ Twitter: https://twitter.com/MurderInAmerica TikTok: https://www.tiktok.com/@theparanormalfiles and https://www.tiktok.com/@courtneybrowen Feeling spooky? Follow Colin as he travels state to state (and even country to country!) investigating claims of extreme paranormal activity and visiting famous haunted locations on The Paranormal Files Official Channel: https://www.youtube.com/c/TheParanormalFilesOfficialChannel - (c) BLOOD IN THE SINK PRODUCTIONS 2025 Learn more about your ad choices. Visit megaphone.fm/adchoices", - "html_description": "

On December 31st, 1989, a mother from a suburban neighborhood in Ohio disappeared into thin air. But when the dark secrets began to come to light, the picture grew darker and darker with every new revelation. And in today's special episode, we speak with Collier Landry, the victim's son, and the boy who helped solve the crime.

-

Listen to our new show, "THE CONSPIRACY FILES"!:

-Spotify - https://open.spotify.com/show/5IY9nWD2MYDzlSYP48nRPl

-Apple Podcasts - https://podcasts.apple.com/us/podcast/the-conspiracy-files/id1752719844

-Amazon/Audible - https://music.amazon.com/podcasts/ab1ade99-740c-46ae-8028-b2cf41eabf58/the-conspiracy-files

-Pandora - https://www.pandora.com/podcast/the-conspiracy-files/PC:1001089101

-iHeart - https://iheart.com/podcast/186907423/

-PocketCast - https://pca.st/dpdyrcca

-CastBox - https://castbox.fm/channel/id6193084?country=us

-

Stay Connected:

Join the Murder in America fam in our free Facebook Community for a behind-the-scenes look, more insights and current events in the true crime world: https://www.facebook.com/groups/4365229996855701

If you want even more Murder in America bonus content, including ad-free episodes, come join us on Patreon: https://www.patreon.com/murderinamerica

Instagram: http://instagram.com/murderinamerica/

Facebook:https://www.facebook.com/people/Murder-in-America-Podcast/100086268848682/

Twitter: https://twitter.com/MurderInAmerica

TikTok: https://www.tiktok.com/@theparanormalfiles and https://www.tiktok.com/@courtneybrowen

Feeling spooky? Follow Colin as he travels state to state (and even country to country!) investigating claims of extreme paranormal activity and visiting famous haunted locations on The Paranormal Files Official Channel: https://www.youtube.com/c/TheParanormalFilesOfficialChannel

-

(c) BLOOD IN THE SINK PRODUCTIONS 2025

Learn more about your ad choices. Visit megaphone.fm/adchoices

", - "duration_ms": 5894817, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0cTwLSkozugzhvUj2gjBbu" - }, - "href": "https://api.spotify.com/v1/episodes/0cTwLSkozugzhvUj2gjBbu", - "id": "0cTwLSkozugzhvUj2gjBbu", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab63fe8290533b1df12a4e2d7", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb63fe8290533b1df12a4e2d7", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db63fe8290533b1df12a4e2d7", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "EP. 183: OHIO - The 11-Year-Old Who Helped Solve His Mom's Murder", - "release_date": "2025-01-03", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0cTwLSkozugzhvUj2gjBbu" - }, - { - "audio_preview_url": null, - "description": "0:00 Intro 0:17 Mommy 2:27 Comment 2:39 ASL 10:26 Mistress 14:40 Pokemon Learn more about your ad choices. Visit megaphone.fm/adchoices", - "html_description": "

0:00 Intro

0:17 Mommy

2:27 Comment

2:39 ASL

10:26 Mistress

14:40 Pokemon

Learn more about your ad choices. Visit megaphone.fm/adchoices

", - "duration_ms": 1072744, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2IOQ2BbxKvMdmBmMIVlON4" - }, - "href": "https://api.spotify.com/v1/episodes/2IOQ2BbxKvMdmBmMIVlON4", - "id": "2IOQ2BbxKvMdmBmMIVlON4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a169eb6511a255e01ed31b16f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f169eb6511a255e01ed31b16f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d169eb6511a255e01ed31b16f", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "r/Relationships My Mom is 2 Years Older than Me", - "release_date": "2025-01-24", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2IOQ2BbxKvMdmBmMIVlON4" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1O6eBFtaT1sw87QfbSl7Dg/clip_242000_303320.mp3", - "description": "Sang’s mom is haunted. Everyone has their own explanations for it but it’s that simple. Every time she sets the dinner table - she stares at the empty seat. Sometimes smiling, sometimes pouting, but always as if someone is sitting there. Sang would ask - “Mom, is everything alright?”“Just make sure to save some of the meat for Niuniu - you know that’s her favorite.”Sang’s mom would motion at the empty chair and smile. The haunting started when Niuniu, Sang’s little sister, went missing. Nobody knew what happened to her other than the fact that she received a creepy doll with moving eyes shortly before she went missing. 26 years later Niuniu would come back to tell everyone the truth. She was kidnapped, trafficked, and sold. After 26 years she was coming back to kill her trafficker. Get her revenge.   Full Source Notes: rottenmangopodcast.com  ", - "html_description": "

Sang’s mom is haunted. Everyone has their own explanations for it but it’s that simple. 

Every time she sets the dinner table - she stares at the empty seat. Sometimes smiling, sometimes pouting, but always as if someone is sitting there. 

Sang would ask - 

“Mom, is everything alright?”

“Just make sure to save some of the meat for Niuniu - you know that’s her favorite.”

Sang’s mom would motion at the empty chair and smile. 

The haunting started when Niuniu, Sang’s little sister, went missing. Nobody knew what happened to her other than the fact that she received a creepy doll with moving eyes shortly before she went missing. 

26 years later Niuniu would come back to tell everyone the truth. She was kidnapped, trafficked, and sold. After 26 years she was coming back to kill her trafficker. Get her revenge. 


 


 

Full Source Notes: rottenmangopodcast.com

 

 

", - "duration_ms": 3874873, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4ATmxIwrmFZUQl19Z6qWq6" - }, - "href": "https://api.spotify.com/v1/episodes/4ATmxIwrmFZUQl19Z6qWq6", - "id": "4ATmxIwrmFZUQl19Z6qWq6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ae17b81be830039041326c578", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fe17b81be830039041326c578", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68de17b81be830039041326c578", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "#408: 5Yr Old Girl SOLD - 26 Years Later She Wants Revenge & On Mission To Kill Trafficker", - "release_date": "2024-12-24", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4ATmxIwrmFZUQl19Z6qWq6" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4s9LvzmCOc9Lgoc8VF1Hdo/clip_239000_302400.mp3", - "description": "“To Catch A Predator” steps:Hire an adult decoy to lurk on websites advertising themselves as 13 year olds looking for a middle aged companion.Invite the adult predator to a house that has been wired for audio and video recording.Have the host of the famous TV show pop out to ask the predator questions and arrest them on the way out.That is the premise to the show “To Catch A Predator” that has now been cancelled for its moral dilemmas. But now influencers are recreating the show themselves on their platforms. Luring in predators, confronting them, and then calling the police. That’s what 17 year old Gavon tells the cops was his plan… He met up with a middle aged man on Grindr for the purpose of robbing him because he deserves it. Why else would he talk to a minor?But for the police to believe his side of the story they have to go through his phone… and that’s where they find a folder titled - “Dark.” The password? “Murder.” Suddenly a simple robbery case turns into a murder investigation because in it… are videos and photos of 17 year old Gavon Ramsay killing and SAing a 98 year old woman in her own home. Gavon Ramsay is the predator.   Full Source Notes: rottenmangopodcast.com ", - "html_description": "

“To Catch A Predator” steps:

  1. Hire an adult decoy to lurk on websites advertising themselves as 13 year olds looking for a middle aged companion.
  2. Invite the adult predator to a house that has been wired for audio and video recording.
  3. Have the host of the famous TV show pop out to ask the predator questions and arrest them on the way out.

That is the premise to the show “To Catch A Predator” that has now been cancelled for its moral dilemmas. 

But now influencers are recreating the show themselves on their platforms. Luring in predators, confronting them, and then calling the police. 

That’s what 17 year old Gavon tells the cops was his plan… He met up with a middle aged man on Grindr for the purpose of robbing him because he deserves it. Why else would he talk to a minor?

But for the police to believe his side of the story they have to go through his phone… and that’s where they find a folder titled - “Dark.” 

The password? “Murder.” 

Suddenly a simple robbery case turns into a murder investigation because in it… are videos and photos of 17 year old Gavon Ramsay killing and SAing a 98 year old woman in her own home. Gavon Ramsay is the predator. 


 


 

Full Source Notes: rottenmangopodcast.com

 

", - "duration_ms": 5047118, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5CPEh8oAStpCEBZBMYH5Rb" - }, - "href": "https://api.spotify.com/v1/episodes/5CPEh8oAStpCEBZBMYH5Rb", - "id": "5CPEh8oAStpCEBZBMYH5Rb", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ae17b81be830039041326c578", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fe17b81be830039041326c578", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68de17b81be830039041326c578", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "#406: 16-Yr-Old Murders 98-Yr-Old Woman To SA Her Corpse For 2 Hours While Recording", - "release_date": "2024-12-12", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5CPEh8oAStpCEBZBMYH5Rb" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5VoGYdH4DCtO8zwDrY5Z1L/clip_134000_194080.mp3", - "description": "Sierah Joughin was a 20-year-old college student who was riding her bike home from her boyfriend's house one night when everything suddenly changed. Her boyfriend had been following alongside on his motorcycle, and when they parted ways, Sierra was immediately attacked and abducted by a sick man who lived nearby. Justice for Sierah: https://justiceforsierah.org/ Sierah Strong: https://justiceforsierah.org/programm... Kid Print ID: https://justiceforsierah.org/kidprint/ Check out my foundation, Higher Hope: Higher Hope Foundation: https://www.higherhope.org/  Shop my Merch! https://kendallrae.shop This episode is sponsored by: Quince Earnin Acorns Check out Kendall's other podcasts: The Sesh & Mile Higher Follow Kendall! YouTube Twitter Instagram Facebook Mile Higher Zoo REQUESTS: General case suggestion form: https://bit.ly/32kwPly Form for people directly related/ close to the victim: https://bit.ly/3KqMZLj Discord: https://discord.com/invite/an4stY9BCN CONTACT: For Business Inquiries - kendall@INFAgency.com ", - "html_description": "Sierah Joughin was a 20-year-old college student who was riding her bike home from her boyfriend's house one night when everything suddenly changed. Her boyfriend had been following alongside on his motorcycle, and when they parted ways, Sierra was immediately attacked and abducted by a sick man who lived nearby.



Justice for Sierah: https://justiceforsierah.org/

Sierah Strong: https://justiceforsierah.org/programm...

Kid Print ID: https://justiceforsierah.org/kidprint/



Check out my foundation, Higher Hope: Higher Hope Foundation: https://www.higherhope.org/ 



Shop my Merch! https://kendallrae.shop



This episode is sponsored by:

Quince

Earnin

Acorns



Check out Kendall's other podcasts:

The Sesh & Mile Higher



Follow Kendall!

YouTube

Twitter

Instagram

Facebook

Mile Higher Zoo



REQUESTS:

General case suggestion form: https://bit.ly/32kwPly

Form for people directly related/ close to the victim: https://bit.ly/3KqMZLj

Discord: https://discord.com/invite/an4stY9BCN



CONTACT:

For Business Inquiries - kendall@INFAgency.com
", - "duration_ms": 4165616, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0X3PCpHPRKSd9R1yfpF5Pz" - }, - "href": "https://api.spotify.com/v1/episodes/0X3PCpHPRKSd9R1yfpF5Pz", - "id": "0X3PCpHPRKSd9R1yfpF5Pz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3f5daa3fa2ffe173e2a7128f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3f5daa3fa2ffe173e2a7128f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3f5daa3fa2ffe173e2a7128f", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Abducted While Biking Home: The Murder of 20-Year-Old Sierah Joughin", - "release_date": "2025-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0X3PCpHPRKSd9R1yfpF5Pz" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2QQutxGwBLDiXndRLAnSRU/clip_269000_329760.mp3", - "description": "Happy birthday to me!! It's CAPRICORN SEASON and I am turning 32 years old. Every year, I like to reflect back on the valuable life lessons I've learned, and this year is a special one because it's the first year I can confidently say I feel more empowered and in living in my truth to the fullest. If you're interested in joining my masterclasses, here's the link to sign up. If doors aren't open, you can sign up for the waitlist and you will get an email when they're available again. Your support and love means the world to me. I see all of your comments, and dms. Feel free to comment on Spotify, or send me a message on instagram @lyss and @dateyourselfinstead. What did you think of this ep? It's probably going to be one of my favorites. LOVE YOU, xoxo. Lyss.", - "html_description": "

Happy birthday to me!! It's CAPRICORN SEASON and I am turning 32 years old. Every year, I like to reflect back on the valuable life lessons I've learned, and this year is a special one because it's the first year I can confidently say I feel more empowered and in living in my truth to the fullest.


If you're interested in joining my masterclasses, here's the link to sign up. If doors aren't open, you can sign up for the waitlist and you will get an email when they're available again.


Your support and love means the world to me. I see all of your comments, and dms. Feel free to comment on Spotify, or send me a message on instagram @lyss and @dateyourselfinstead.


What did you think of this ep? It's probably going to be one of my favorites. LOVE YOU, xoxo. Lyss.

", - "duration_ms": 3041488, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5Xy3ILnR9ch31ZUei4PY0f" - }, - "href": "https://api.spotify.com/v1/episodes/5Xy3ILnR9ch31ZUei4PY0f", - "id": "5Xy3ILnR9ch31ZUei4PY0f", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aad34c49fb838f1183771023d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fad34c49fb838f1183771023d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dad34c49fb838f1183771023d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "32 lessons I wish I knew sooner about love and life at 32 years old", - "release_date": "2025-01-19", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5Xy3ILnR9ch31ZUei4PY0f" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4wW1M13IhCJkuIA3v7JXrl/clip_593000_657840.mp3", - "description": "In this intense and emotional video, Brooke shares her shocking and heartbreaking story of discovering that her mom had an affair with her 18-year-old boyfriend. What started as a normal relationship quickly spiraled into a web of betrayal, hurt, and confusion. Watch as Brooke opens up about the pain of finding out about the affair, the aftermath, and how it has impacted her family and her sense of trust. If you have a unique story you'd like to share on the podcast, please fill out this form: https://forms.gle/ZiHgdoK4PLRAddiB9 or send an email to wereallinsanepodcast@gmail.com Business Inquiries please contact: weareallinsane@outloudtalent.com", - "html_description": "

In this intense and emotional video, Brooke shares her shocking and heartbreaking story of discovering that her mom had an affair with her 18-year-old boyfriend. What started as a normal relationship quickly spiraled into a web of betrayal, hurt, and confusion.
Watch as Brooke opens up about the pain of finding out about the affair, the aftermath, and how it has impacted her family and her sense of trust.
If you have a unique story you'd like to share on the podcast, please fill out this form: https://forms.gle/ZiHgdoK4PLRAddiB9
or send an email to wereallinsanepodcast@gmail.com
Business Inquiries please contact: weareallinsane@outloudtalent.com

", - "duration_ms": 10701610, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2EBTnjZY9zImvd715FPbey" - }, - "href": "https://api.spotify.com/v1/episodes/2EBTnjZY9zImvd715FPbey", - "id": "2EBTnjZY9zImvd715FPbey", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a8723df38e2218aebf533bbed", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f8723df38e2218aebf533bbed", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d8723df38e2218aebf533bbed", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "My Mom's Affair with My 18-Year-Old Boyfriend", - "release_date": "2024-12-23", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2EBTnjZY9zImvd715FPbey" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6YBXdNLyXWvjTiLRADtxP2/clip_420000_480520.mp3", - "description": "Three! Two! One! We Failed! Oh, and happy new year I guess... Learn more about your ad choices. Visit podcastchoices.com/adchoices", - "html_description": "

Three! Two! One! We Failed! Oh, and happy new year I guess...

Learn more about your ad choices. Visit podcastchoices.com/adchoices

", - "duration_ms": 3529002, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/65O7xKpzcrmxd1jSLu3fAe" - }, - "href": "https://api.spotify.com/v1/episodes/65O7xKpzcrmxd1jSLu3fAe", - "id": "65O7xKpzcrmxd1jSLu3fAe", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a80e26e1f6b9ec427a0faf074", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f80e26e1f6b9ec427a0faf074", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d80e26e1f6b9ec427a0faf074", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "New Year, Old Us", - "release_date": "2024-12-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:65O7xKpzcrmxd1jSLu3fAe" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4c1A4qQOtC9B2bwNTP91wk/clip_68000_136600.mp3", - "description": "in front of me today, i have 2 lists of new year’s resolutions - one from 2023 and one from 2024. did i accomplish my resolutions? did i fail miserably? what can we learn from my past 2 years of resolutions? today i’m going to react to them with you. Learn more about your ad choices. Visit podcastchoices.com/adchoices", - "html_description": "

in front of me today, i have 2 lists of new year’s resolutions - one from 2023 and one from 2024. did i accomplish my resolutions? did i fail miserably? what can we learn from my past 2 years of resolutions? today i’m going to react to them with you.

Learn more about your ad choices. Visit podcastchoices.com/adchoices

", - "duration_ms": 2431059, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1dHW4KULBe8j9nYUY8oHaE" - }, - "href": "https://api.spotify.com/v1/episodes/1dHW4KULBe8j9nYUY8oHaE", - "id": "1dHW4KULBe8j9nYUY8oHaE", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a593ce89783309a0d57b959a1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f593ce89783309a0d57b959a1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d593ce89783309a0d57b959a1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "reacting to my old new year's resolutions", - "release_date": "2024-12-08", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1dHW4KULBe8j9nYUY8oHaE" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7yYfCzZdt8nBVaPLdvoDdT/clip_0_51069.mp3", - "description": "I Miss The Old Kanye [EDIT]", - "html_description": "

I Miss The Old Kanye [EDIT]

", - "duration_ms": 51069, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/01UKcpGcNSKHDLNDTPGMY2" - }, - "href": "https://api.spotify.com/v1/episodes/01UKcpGcNSKHDLNDTPGMY2", - "id": "01UKcpGcNSKHDLNDTPGMY2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a9d2227994feb9358c331d073", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f9d2227994feb9358c331d073", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d9d2227994feb9358c331d073", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "I Miss The Old Kanye [EDIT]", - "release_date": "2024-01-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:01UKcpGcNSKHDLNDTPGMY2" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0xlTZwXmfF7Fxo2hYN72Be/clip_64000_124320.mp3", - "description": "1 Hour of OLD ChainsFR 60 straight minutes of the oldest chainsfr videos back when dude was straight dookie and couldnt animate and also had a booty ahhh mic Including: bad haircuts, when you get too high, working in fast food, the 3 levels of being high, high school gym class be like, awkward conversations, NPCs in real life, running from the cops while high, the 7 levels of being drunk, the day i almost died, too high in public, the types of high people, going to school high, high school fights be like, family functions be like -chainsfr, chainsfr on spotify, chains stories, chainsfr stories, chains podcast", - "html_description": "

1 Hour of OLD ChainsFR



60 straight minutes of the oldest chainsfr videos back when dude was straight dookie and couldnt animate and also had a booty ahhh mic
Including:
bad haircuts, when you get too high, working in fast food, the 3 levels of being high, high school gym class be like, awkward conversations, NPCs in real life, running from the cops while high, the 7 levels of being drunk, the day i almost died, too high in public, the types of high people, going to school high, high school fights be like, family functions be like



-chainsfr, chainsfr on spotify, chains stories, chainsfr stories, chains podcast

", - "duration_ms": 3650664, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2QdyQOvYvr1esGGLI9LDX0" - }, - "href": "https://api.spotify.com/v1/episodes/2QdyQOvYvr1esGGLI9LDX0", - "id": "2QdyQOvYvr1esGGLI9LDX0", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a209d94fbd20da698cc251eba", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f209d94fbd20da698cc251eba", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d209d94fbd20da698cc251eba", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "1 Hour of OLD ChainsFR", - "release_date": "2024-12-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2QdyQOvYvr1esGGLI9LDX0" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3JQaqhk6P5kL5szlKeAy7b/clip_6323_66323.mp3", - "description": "Relax and take notes while I take tokes of the marijuana smoke", - "html_description": "

Relax and take notes while I take tokes of the marijuana smoke

", - "duration_ms": 161285, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/48Dd57dBfckWucmiNIh4wG" - }, - "href": "https://api.spotify.com/v1/episodes/48Dd57dBfckWucmiNIh4wG", - "id": "48Dd57dBfckWucmiNIh4wG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ace606b7bdb77171fb0ff79de", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fce606b7bdb77171fb0ff79de", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dce606b7bdb77171fb0ff79de", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Biggie - Relax And Take Notes (Dead Wrong Remix)", - "release_date": "2023-09-15", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:48Dd57dBfckWucmiNIh4wG" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ObW1D6uCV9bX2SEgpIEQz/clip_23037_83037.mp3", - "description": "When i die, fuck it, i wanna go to hell. Because im a piece of shit it aint hard to fucking tell ", - "html_description": "

When i die, fuck it, i wanna go to hell. Because im a piece of shit it aint hard to fucking tell

", - "duration_ms": 160417, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5d5YhSoRs78G0HxdpHz5OI" - }, - "href": "https://api.spotify.com/v1/episodes/5d5YhSoRs78G0HxdpHz5OI", - "id": "5d5YhSoRs78G0HxdpHz5OI", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8afe0e317a7054e3645a7efcbe", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1ffe0e317a7054e3645a7efcbe", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dfe0e317a7054e3645a7efcbe", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": [ - "en" - ], - "name": "Biggie - Suicidal Thoughts When I Die Remix", - "release_date": "2023-09-15", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5d5YhSoRs78G0HxdpHz5OI" - } - ] - }, - "audiobooks": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=20&query=old&type=audiobook&locale=en-US,en;q%3D0.5", - "limit": 20, - "next": "https://api.spotify.com/v1/search?offset=20&limit=20&query=old&type=audiobook&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 1000, - "items": [ - { - "authors": [ - { - "name": "Jennette McCurdy" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Simon & Schuster 2022", - "type": "C" - } - ], - "description": "Author(s): Jennette McCurdy\nNarrator(s): Jennette McCurdy* #1 NEW YORK TIMES BESTSELLER * #1 INTERNATIONAL BESTSELLER * MORE THAN 2 MILLION COPIES SOLD!

A heartbreaking and hilarious memoir by iCarly and Sam & Cat star Jennette McCurdy about her struggles as a former child actor—including eating disorders, addiction, and a complicated relationship with her overbearing mother—and how she retook control of her life.

Jennette McCurdy was six years old when she had her first acting audition. Her mother’s dream was for her only daughter to become a star, and Jennette would do anything to make her mother happy. So she went along with what Mom called “calorie restriction,” eating little and weighing herself five times a day. She endured extensive at-home makeovers while Mom chided, “Your eyelashes are invisible, okay? You think Dakota Fanning doesn’t tint hers?” She was even showered by Mom until age sixteen while sharing her diaries, email, and all her income.

In I’m Glad My Mom Died, Jennette recounts all this in unflinching detail—just as she chronicles what happens when the dream finally comes true. Cast in a new Nickelodeon series called iCarly, she is thrust into fame. Though Mom is ecstatic, emailing fan club moderators and getting on a first-name basis with the paparazzi (“Hi Gale!”), Jennette is riddled with anxiety, shame, and self-loathing, which manifest into eating disorders, addiction, and a series of unhealthy relationships. These issues only get worse when, soon after taking the lead in the iCarly spinoff Sam & Cat alongside Ariana Grande, her mother dies of cancer. Finally, after discovering therapy and quitting acting, Jennette embarks on recovery and decides for the first time in her life what she really wants.

Told with refreshing candor and dark humor, I’m Glad My Mom Died is an inspiring story of resilience, independence, and the joy of shampooing your own hair.", - "html_description": "Author(s): Jennette McCurdy
Narrator(s): Jennette McCurdy
<b>* #1 <i>NEW YORK TIMES</i> BESTSELLER * #1 INTERNATIONAL BESTSELLER * </b><B>MORE THAN 2 MILLION COPIES SOLD!</B><br> <br><b>A heartbreaking and hilarious memoir by <i>iCarly </i>and <i>Sam & Cat </i>star Jennette McCurdy about her struggles as a former child actor—including eating disorders, addiction, and a complicated relationship with her overbearing mother—and how she retook control of her life. </b><br><br>Jennette McCurdy was six years old when she had her first acting audition. Her mother’s dream was for her only daughter to become a star, and Jennette would do anything to make her mother happy. So she went along with what Mom called “calorie restriction,” eating little and weighing herself five times a day. She endured extensive at-home makeovers while Mom chided, “Your eyelashes are invisible, okay? You think Dakota Fanning doesn’t tint hers?” She was even showered by Mom until age sixteen while sharing her diaries, email, and all her income.<br> <br>In <i>I’m Glad My Mom Died</i>, Jennette recounts all this in unflinching detail—just as she chronicles what happens when the dream finally comes true. Cast in a new Nickelodeon series called <i>iCarly</i>, she is thrust into fame. Though Mom is ecstatic, emailing fan club moderators and getting on a first-name basis with the paparazzi (“Hi Gale!”), Jennette is riddled with anxiety, shame, and self-loathing, which manifest into eating disorders, addiction, and a series of unhealthy relationships. These issues only get worse when, soon after taking the lead in the <i>iCarly</i> spinoff <i>Sam & Cat</i> alongside Ariana Grande, her mother dies of cancer. Finally, after discovering therapy and quitting acting, Jennette embarks on recovery and decides for the first time in her life what she really wants.<br> <br>Told with refreshing candor and dark humor, <i>I’m Glad My Mom Died</i> is an inspiring story of resilience, independence, and the joy of shampooing your own hair.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7sn0W2eNkETlJgbgmhijDI" - }, - "href": "https://api.spotify.com/v1/audiobooks/7sn0W2eNkETlJgbgmhijDI", - "id": "7sn0W2eNkETlJgbgmhijDI", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a81a6f05c14d9ba09abb0d4703", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b1a6f05c14d9ba09abb0d4703", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b1a6f05c14d9ba09abb0d4703", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "I'm Glad My Mom Died", - "narrators": [ - { - "name": "Jennette McCurdy" - } - ], - "publisher": "Jennette McCurdy", - "type": "audiobook", - "uri": "spotify:show:7sn0W2eNkETlJgbgmhijDI", - "total_chapters": 229 - }, - { - "authors": [ - { - "name": "Uncredited" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Spotify Audiobooks 2020", - "type": "C" - } - ], - "description": "Author(s): Uncredited\nNarrator(s): George Vafiadis

Experience one of the most used translations of the Bible in this unabridged presentation of the King James Version of the Bible.

The King James Version was written in 1611 by order of King James I as the official translation for the Church of England. The version was created to eliminate any errors in previous translations, and to put to book into common language useful for all people. The book was translated from Greek, Hebrew, and Aramaic. The version was re-edited in 1769 and has remain largely untouched for the centuries after.

For many modern Christian denominations, the King James Version remains the preferred English translation of biblical texts. Though the language is more formal than modern English, the formality gives a certain weight to the contents, and the translation is still regarded as being remarkably close to the original meanings of the text.

This audiobook contains both the Old and New Testaments, which together chronicle the foundations, history, and theology of the Christian church. The book is comprised of 66 individual books, each with a unique history, authorship, and context.

", - "html_description": "Author(s): Uncredited
Narrator(s): George Vafiadis
<p>Experience one of the most used translations of the Bible in this unabridged presentation of the King James Version of the Bible.</p><p>The King James Version was written in 1611 by order of King James I as the official translation for the Church of England. The version was created to eliminate any errors in previous translations, and to put to book into common language useful for all people. The book was translated from Greek, Hebrew, and Aramaic. The version was re-edited in 1769 and has remain largely untouched for the centuries after.</p><p>For many modern Christian denominations, the King James Version remains the preferred English translation of biblical texts. Though the language is more formal than modern English, the formality gives a certain weight to the contents, and the translation is still regarded as being remarkably close to the original meanings of the text.</p><p>This audiobook contains both the Old and New Testaments, which together chronicle the foundations, history, and theology of the Christian church. The book is comprised of 66 individual books, each with a unique history, authorship, and context.</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7M70q4c9LhdcApynxSD52r" - }, - "href": "https://api.spotify.com/v1/audiobooks/7M70q4c9LhdcApynxSD52r", - "id": "7M70q4c9LhdcApynxSD52r", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8e0c90bca49e9663cc1a8f7ac", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5be0c90bca49e9663cc1a8f7ac", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703be0c90bca49e9663cc1a8f7ac", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The King James Bible", - "narrators": [ - { - "name": "George Vafiadis" - } - ], - "publisher": "Uncredited", - "type": "audiobook", - "uri": "spotify:show:7M70q4c9LhdcApynxSD52r", - "total_chapters": 119 - }, - { - "authors": [ - { - "name": "Quan Millz" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Quan Millz\nNarrator(s): Karmaa

OLD THOT NEXT DOOR is indeed a long-anticipated ratchet soap opera thriller by bestselling African-American Urban Fiction author QUAN MILLZ.

Meet Vernita Ernestine Washington, a feisty 76-year-old woman who doesn’t care what you think about her ways, especially for a woman her age. Yeah, she might be a senior citizen but she’d be the first to tell you AGE AIN'T NOTHING BUT A NUMBER!

She’s convinced the honeycomb between her legs doesn’t taste a day older than forty. \"Don’t let the gray hairs fool you now!\"A retired employee of the Illinois Department of Motor Vehicles, Mrs. Washington runs the mean, cold streets of Chi-town messing with all types of young thugs with multiple felonies. A widow for some time now, Vernita is determined to make up for her stale marriage. However, when a major health scare sets her back, she finds herself losing everything.

Reality sets in that her time on Earth is about to come to a close. Now faced with a death sentence, Vernita seeks to live out her remaining days being the biggest old super freak. She gets her mojo back and begins living her life again. But a major, surprising twist will throw her life into more unpredictable chaos.

Read more in OLD THOT NEXT DOOR!

", - "html_description": "Author(s): Quan Millz
Narrator(s): Karmaa
<p><strong>OLD THOT NEXT DOOR</strong> is indeed a long-anticipated ratchet soap opera thriller by bestselling African-American Urban Fiction author <strong>QUAN MILLZ</strong>.</p><p>Meet Vernita Ernestine Washington, a feisty 76-year-old woman who doesn’t care what you think about her ways, especially for a woman her age. Yeah, she might be a senior citizen but she’d be the first to tell you AGE AIN'T NOTHING BUT A NUMBER!</p><p>She’s convinced the honeycomb between her legs doesn’t taste a day older than forty. "Don’t let the gray hairs fool you now!"A retired employee of the Illinois Department of Motor Vehicles, Mrs. Washington runs the mean, cold streets of Chi-town messing with all types of young thugs with multiple felonies. A widow for some time now, Vernita is determined to make up for her stale marriage. However, when a major health scare sets her back, she finds herself losing everything.</p><p>Reality sets in that her time on Earth is about to come to a close. Now faced with a death sentence, Vernita seeks to live out her remaining days being the biggest old super freak. She gets her mojo back and begins living her life again. But a major, surprising twist will throw her life into more unpredictable chaos.</p><p>Read more in OLD THOT NEXT DOOR!</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/4DHKr3VRbQiVZQoxCWRQQu" - }, - "href": "https://api.spotify.com/v1/audiobooks/4DHKr3VRbQiVZQoxCWRQQu", - "id": "4DHKr3VRbQiVZQoxCWRQQu", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a841cadb864e1d934a7b499e69", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b41cadb864e1d934a7b499e69", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b41cadb864e1d934a7b499e69", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Old THOT Next Door", - "narrators": [ - { - "name": "Karmaa" - } - ], - "publisher": "Quan Millz", - "type": "audiobook", - "uri": "spotify:show:4DHKr3VRbQiVZQoxCWRQQu", - "total_chapters": 39 - }, - { - "authors": [ - { - "name": "Paulo Coelho" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "HarperCollins 2005", - "type": "C" - } - ], - "description": "Author(s): Paulo Coelho\nNarrator(s): Jeremy Irons

AN INTERNATIONAL BESTSELLER • OVER 80 MILLION COPIES SOLD WORLDWIDE

“Translated into 80 languages, the allegory teaches us about dreams, destiny, and the reason we are all here.”—Oprah Daily, “Best Self-Help Books of a Generation”

“It’s a brilliant, magical, life-changing book that continues to blow my mind with its lessons. [...] A remarkable tome.”—Neil Patrick Harris, actor

A special 25th anniversary edition of the extraordinary international bestseller, including a new foreword by Paulo Coelho.

Combining magic, mysticism, wisdom, and wonder into an inspiring tale of self-discovery, The Alchemist has become a modern classic, selling millions of copies around the world and transforming the lives of countless readers across generations.

Paulo Coelho's masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure. His quest will lead him to riches far different—and far more satisfying—than he ever imagined. Santiago's journey teaches us about the essential wisdom of listening to our hearts, of recognizing opportunity and learning to read the omens strewn along life's path, and, most importantly, to follow our dreams.

“A magical little volume.”—San Francisco Chronicle

“[This] Brazilian wizard makes books disappear from stores.”—The New York Times

“A sweetly exotic tale for young and old alike.”—Publishers Weekly

", - "html_description": "Author(s): Paulo Coelho
Narrator(s): Jeremy Irons
<p><strong>AN INTERNATIONAL BESTSELLER • OVER 80 MILLION COPIES SOLD WORLDWIDE</strong></p><p><strong>“Translated into 80 languages, the allegory teaches us about dreams, destiny, and the reason we are all here.”—Oprah Daily, “Best Self-Help Books of a Generation”</strong></p><p><strong>“It’s a brilliant, magical, life-changing book that continues to blow my mind with its lessons. [...] A remarkable tome.”—Neil Patrick Harris, actor</strong></p><p><strong>A special 25th anniversary edition of the extraordinary international bestseller, including a new foreword by Paulo Coelho.</strong></p><p>Combining magic, mysticism, wisdom, and wonder into an inspiring tale of self-discovery, <em>The Alchemist</em> has become a modern classic, selling millions of copies around the world and transforming the lives of countless readers across generations.</p><p>Paulo Coelho's masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure. His quest will lead him to riches far different—and far more satisfying—than he ever imagined. Santiago's journey teaches us about the essential wisdom of listening to our hearts, of recognizing opportunity and learning to read the omens strewn along life's path, and, most importantly, to follow our dreams.</p><p><strong>“A magical little volume.”—<em>San Francisco Chronicle</em></strong></p><p><strong>“[This] Brazilian wizard makes books disappear from stores.”—<em>The</em> <em>New York Times</em></strong></p><p><strong>“A sweetly exotic tale for young and old alike.”—<em>Publishers Weekly</em></strong></p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/1RXqi58QpW5WS9y9s4Irgc" - }, - "href": "https://api.spotify.com/v1/audiobooks/1RXqi58QpW5WS9y9s4Irgc", - "id": "1RXqi58QpW5WS9y9s4Irgc", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8dd99ce64c36b3839ae53e95a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bdd99ce64c36b3839ae53e95a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bdd99ce64c36b3839ae53e95a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The Alchemist", - "narrators": [ - { - "name": "Jeremy Irons" - } - ], - "publisher": "Paulo Coelho", - "type": "audiobook", - "uri": "spotify:show:1RXqi58QpW5WS9y9s4Irgc", - "total_chapters": 49 - }, - { - "authors": [ - { - "name": "Stephen Fry" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Stephen Fry\nNarrator(s): Stephen Fry

Brought to you by Penguin.

A Sunday Times bestseller

The next book in Stephen Fry's acclaimed internationally bestselling Greek myths series telling the story of The Odyssey.


Sometimes the hardest journey is the way back home . . .

Wily Odysseus, King of Ithaca, has won Troy for the Greeks – after a decade of brutal, bloody warfare. But now this warrior remembers he is a husband and father – and his gaze turns longingly towards home.

Setting sail with a small fleet, Odysseus dreams of soon lying in the arms of his beloved wife Penelope, and of teaching his son Telemachus the ways of a warrior. However, the gods laugh at the foolish hopes of mortals. And, angered by this upstart, Poseidon – God of the ocean realms – curses our hero to wander the seas for ten long years.

Encountering one-eyed giants, six-headed monsters, terrible storms, titanic whirlpools, hypnotic sirens, seductive witches and jealous goddesses, Odysseus is tempted and tormented beyond any man’s endurance.

Yet he is no mere mortal – and the lure of his wife and son draws him, step by step, stroke by stroke, ever closer to home and his ultimate destiny . . .

A tale of love and longing, return and redemption, home and hope, Stephen Fry’s Odyssey sees the author and national treasure weave the final threads of the fabulous story begun in the worldwide bestseller, Mythos, into an astonishing and mesmerising tapestry for the ages.

'With his distinctive narration, Fry brings warmth, exuberance and humour to these age-old stories, along with a range of voices...' The Guardian

'Fry is at his story-telling best . . . the gods will be pleased' Times

'Brilliant . . . all hail Stephen Fry' Daily Mail

© Stephen Fry 2024 (P) Penguin Audio 2024

", - "html_description": "Author(s): Stephen Fry
Narrator(s): Stephen Fry
<p><b>Brought to you by Penguin.<br><br>A <i>Sunday Times</i> bestseller<br><br>The next book in Stephen Fry's acclaimed internationally bestselling Greek myths series telling the story of The Odyssey.</b><br><br><b>Sometimes the hardest journey is the way back home . . .</b><br><br>Wily Odysseus, King of Ithaca, has won Troy for the Greeks – after a decade of brutal, bloody warfare. But now this warrior remembers he is a husband and father – and his gaze turns longingly towards home.<br><br>Setting sail with a small fleet, Odysseus dreams of soon lying in the arms of his beloved wife Penelope, and of teaching his son Telemachus the ways of a warrior. However, the gods laugh at the foolish hopes of mortals. And, angered by this upstart, Poseidon – God of the ocean realms – curses our hero to wander the seas for ten long years.<br><br>Encountering one-eyed giants, six-headed monsters, terrible storms, titanic whirlpools, hypnotic sirens, seductive witches and jealous goddesses, Odysseus is tempted and tormented beyond any man’s endurance.<br><br>Yet he is no mere mortal – and the lure of his wife and son draws him, step by step, stroke by stroke, ever closer to home and his ultimate destiny . . .<br><br>A tale of love and longing, return and redemption, home and hope, Stephen Fry’s <i>Odyssey</i> sees the author and national treasure weave the final threads of the fabulous story begun in the worldwide bestseller, <i>Mythos,</i> into an astonishing and mesmerising tapestry for the ages.<br><br>'With his distinctive narration, Fry brings warmth, exuberance and humour to these age-old stories, along with a range of voices...' <i>The Guardian </i><br><br>'Fry is at his story-telling best . . . the gods will be pleased' <i>Times</i><br><br>'Brilliant . . . all hail Stephen Fry' <i>Daily Mail</i><br><br>© Stephen Fry 2024 (P) Penguin Audio 2024</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/00NlcJRrGEkenK8f6rELyq" - }, - "href": "https://api.spotify.com/v1/audiobooks/00NlcJRrGEkenK8f6rELyq", - "id": "00NlcJRrGEkenK8f6rELyq", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a85290dd6c6bd3aefec79506ad", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b5290dd6c6bd3aefec79506ad", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b5290dd6c6bd3aefec79506ad", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Odyssey", - "narrators": [ - { - "name": "Stephen Fry" - } - ], - "publisher": "Stephen Fry", - "type": "audiobook", - "uri": "spotify:show:00NlcJRrGEkenK8f6rELyq", - "total_chapters": 23 - }, - { - "authors": [ - { - "name": "George R.R. Martin" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): George R.R. Martin\nNarrator(s): Roy Dotrice

ONE OF THE TIMES’ 25 BEST AUDIOBOOKS

HBO’s hit series A GAME OF THRONES is based on George R. R. Martin’s internationally bestselling series A SONG OF ICE AND FIRE, the greatest fantasy epic of the modern age. A GAME OF THRONES is the first volume in the series.

Summers span decades. Winter can last a lifetime. And the struggle for the Iron Throne has begun.

As Warden of the north, Lord Eddard Stark counts it a curse when King Robert bestows on him the office of the Hand. His honour weighs him down at court where a true man does what he will, not what he must … and a dead enemy is a thing of beauty.

The old gods have no power in the south, Stark’s family is split and there is treachery at court. Worse, the vengeance-mad heir of the deposed Dragon King has grown to maturity in exile in the Free Cities. He claims the Iron Throne.

The historical and mythical creatures that inhabit this top, Sunday Times bestselling book bring a unique flavour to the fantasy fiction genre. The adventure is dark, filled with action that will keep the reader on the edge of their seat.

For fans of Robert Jordan (The Path Of Daggers), David French (The Lady of the Lake), Patrick Rothfuss (The Wise Man's Fear), Steven Erikson (Memories of Ice), and Genevieve Cogman (The Invisible Library).

", - "html_description": "Author(s): George R.R. Martin
Narrator(s): Roy Dotrice
<p><strong>ONE OF <em>THE TIMES</em>’ 25 BEST AUDIOBOOKS</strong></p><p><strong>HBO’s hit series A GAME OF THRONES is based on George R. R. Martin’s internationally bestselling series A SONG OF ICE AND FIRE, the greatest fantasy epic of the modern age. A GAME OF THRONES is the first volume in the series.</strong></p><p>Summers span decades. Winter can last a lifetime. And the struggle for the Iron Throne has begun.</p><p>As Warden of the north, Lord Eddard Stark counts it a curse when King Robert bestows on him the office of the Hand. His honour weighs him down at court where a true man does what he will, not what he must … and a dead enemy is a thing of beauty.</p><p>The old gods have no power in the south, Stark’s family is split and there is treachery at court. Worse, the vengeance-mad heir of the deposed Dragon King has grown to maturity in exile in the Free Cities. He claims the Iron Throne.</p><p>The historical and mythical creatures that inhabit this top, Sunday Times bestselling book bring a unique flavour to the fantasy fiction genre. The adventure is dark, filled with action that will keep the reader on the edge of their seat.</p><p>For fans of Robert Jordan (The Path Of Daggers), David French (The Lady of the Lake), Patrick Rothfuss (The Wise Man's Fear), Steven Erikson (Memories of Ice), and Genevieve Cogman (The Invisible Library).</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6LUW2MAs8Z65qlP8XyhsMw" - }, - "href": "https://api.spotify.com/v1/audiobooks/6LUW2MAs8Z65qlP8XyhsMw", - "id": "6LUW2MAs8Z65qlP8XyhsMw", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8fae73642d98aacd1f9eaf3b7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bfae73642d98aacd1f9eaf3b7", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bfae73642d98aacd1f9eaf3b7", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "A Game of Thrones (Song of Ice and Fire, Book 1)", - "narrators": [ - { - "name": "Roy Dotrice" - } - ], - "publisher": "George R.R. Martin", - "type": "audiobook", - "uri": "spotify:show:6LUW2MAs8Z65qlP8XyhsMw", - "total_chapters": 76 - }, - { - "authors": [ - { - "name": "Leo Oldenburger" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Leo Oldenburger\nNarrator(s): Bart Oomen

Van ‘Kleine Jongen’ tot ‘Een beetje verliefd’, van ‘Zij gelooft in mij’ tot ‘Wij houden van Oranje’: André Hazes wist met zijn muziek iedereen te raken. Toen hij twintig jaar geleden overleed was het hele land in rouw: maar liefst zes miljoen mensen volgden de uitzending van de afscheidsdienst op televisie. Maar wie wás André Hazes? Waarom was hij, ondanks alle roem, toch zo onzeker? Oldenburger sprak met mensen die een belangrijke rol speelden in het leven van de artiest en met degenen voor wie André Hazes van grote betekenis was. Persoonlijke verhalen over de volkszanger en cultheld die door zijn dramatische levensgang veel te vroeg kwam te overlijden. In Kleine jongen beschrijft Oldenburger op meeslepende wijze het verhaal van een van de meest succesvolle artiesten die Nederland ooit gekend heeft.

", - "html_description": "Author(s): Leo Oldenburger
Narrator(s): Bart Oomen
<p>Van ‘Kleine Jongen’ tot ‘Een beetje verliefd’, van ‘Zij gelooft in mij’ tot ‘Wij houden van Oranje’: André Hazes wist met zijn muziek iedereen te raken. Toen hij twintig jaar geleden overleed was het hele land in rouw: maar liefst zes miljoen mensen volgden de uitzending van de afscheidsdienst op televisie. Maar wie wás André Hazes? Waarom was hij, ondanks alle roem, toch zo onzeker? Oldenburger sprak met mensen die een belangrijke rol speelden in het leven van de artiest en met degenen voor wie André Hazes van grote betekenis was. Persoonlijke verhalen over de volkszanger en cultheld die door zijn dramatische levensgang veel te vroeg kwam te overlijden. In Kleine jongen beschrijft Oldenburger op meeslepende wijze het verhaal van een van de meest succesvolle artiesten die Nederland ooit gekend heeft.</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/5AHgUAZsSk6d9XM0xySOii" - }, - "href": "https://api.spotify.com/v1/audiobooks/5AHgUAZsSk6d9XM0xySOii", - "id": "5AHgUAZsSk6d9XM0xySOii", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a878c90d16e9e4cfc5c6e9acd8", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b78c90d16e9e4cfc5c6e9acd8", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b78c90d16e9e4cfc5c6e9acd8", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Kleine jongen: Het leven van André Hazes", - "narrators": [ - { - "name": "Bart Oomen" - } - ], - "publisher": "Leo Oldenburger", - "type": "audiobook", - "uri": "spotify:show:5AHgUAZsSk6d9XM0xySOii", - "total_chapters": 23 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam OldenhaveGroep 6b krijgt EHBO-les van broeder Frans van de ambulans. Die weet alles van open botbreuken, flauwvallen en de stabiele zijligging. Het hele leven is bloedjelink, daar komt het volgens broeder Frans wel op neer. Heel leerzaam dus. Maar dan krijgt groep 6b de groepsgriep: ze worden allemaal ziek. Gelukkig wordt Tobias op een heel speciale manier verzorgd, zodat hij snel weer beter is. Nog beter dan daarvoor, zelfs!
\n
\nInhoud
\n1. Hesjesles
\n2. Rups
\n3. Broeder Frans
\n4. Zwak hart
\n5. Marie-Louise Mulders
\n6. Thuis
\n7. Geschiedenis
\n8. Spreekwoorden
\n9. Pennelien
\n10. Scheur
\n11. Zuster Aukje
\n12. Blootje omelet
\n13. Schriftjes-wisseltruc
\n14. De doorgeschoten enkelvoud
\n15. Poolsnevel
\n16. Hasna
\n17. Hieperdepiep
\n18. EHBP
\n19. Uitdelen
", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Groep 6b krijgt EHBO-les van broeder Frans van de ambulans. Die weet alles van open botbreuken, flauwvallen en de stabiele zijligging. Het hele leven is bloedjelink, daar komt het volgens broeder Frans wel op neer. Heel leerzaam dus. Maar dan krijgt groep 6b de groepsgriep: ze worden allemaal ziek. Gelukkig wordt Tobias op een heel speciale manier verzorgd, zodat hij snel weer beter is. Nog beter dan daarvoor, zelfs!<br />
<br />
<b>Inhoud</b><br />
1. Hesjesles<br />
2. Rups<br />
3. Broeder Frans<br />
4. Zwak hart<br />
5. Marie-Louise Mulders<br />
6. Thuis<br />
7. Geschiedenis<br />
8. Spreekwoorden<br />
9. Pennelien<br />
10. Scheur<br />
11. Zuster Aukje<br />
12. Blootje omelet<br />
13. Schriftjes-wisseltruc<br />
14. De doorgeschoten enkelvoud<br />
15. Poolsnevel<br />
16. Hasna<br />
17. Hieperdepiep<br />
18. EHBP<br />
19. Uitdelen<br />", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/0ZuMWmSruanrItPHO64YTh" - }, - "href": "https://api.spotify.com/v1/audiobooks/0ZuMWmSruanrItPHO64YTh", - "id": "0ZuMWmSruanrItPHO64YTh", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8f42ea2fbc9767d04f9d052ff", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bf42ea2fbc9767d04f9d052ff", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bf42ea2fbc9767d04f9d052ff", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Bloedjelink", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:0ZuMWmSruanrItPHO64YTh", - "total_chapters": 20 - }, - { - "authors": [ - { - "name": "Thomas Nelson Inc." - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Thomas Nelson Inc.\nNarrator(s): Jim Caviezel, Richard Dreyfuss, Gary Sinise, Jason Alexander, Marisa Tomei, Stacy Keach, Various Narrators

This faithful rendering of the Old Testament in the New King James Version (NKJV) presents the Bible in compelling, dramatic audio theater format with world-class audio production. With an original music score by composer Stefano Mainetti (Abba Pater), feature-film quality sound effects, and compelling narration by Michael York and the work of over 500 actors, the Word of Promise Audio Bible will immerse listeners in the dramatic reality of the scriptures as never before.

Each beloved book of the Bible comes to life with outstanding performances by Jim Caviezel as Jesus, Richard Dreyfuss as Moses, Gary Sinise as David, Jason Alexander as Joseph, Marisa Tomei as Mary Magdalene, Stacy Keach as Paul, Louis Gossett, Jr. as John, Jon Voight as Abraham, Marcia Gay Harden as Esther, Joan Allen as Deborah, Max von Sydow as Noah, and Malcolm McDowell as Solomon.

", - "html_description": "Author(s): Thomas Nelson Inc.
Narrator(s): Jim Caviezel, Richard Dreyfuss, Gary Sinise, Jason Alexander, Marisa Tomei, Stacy Keach, Various Narrators
<p>This faithful rendering of the Old Testament in the New King James Version (NKJV) presents the Bible in compelling, dramatic audio theater format with world-class audio production. With an original music score by composer Stefano Mainetti (Abba Pater), feature-film quality sound effects, and compelling narration by Michael York and the work of over 500 actors, the <em>Word of Promise Audio Bible</em> will immerse listeners in the dramatic reality of the scriptures as never before.</p><p>Each beloved book of the Bible comes to life with outstanding performances by Jim Caviezel as Jesus, Richard Dreyfuss as Moses, Gary Sinise as David, Jason Alexander as Joseph, Marisa Tomei as Mary Magdalene, Stacy Keach as Paul, Louis Gossett, Jr. as John, Jon Voight as Abraham, Marcia Gay Harden as Esther, Joan Allen as Deborah, Max von Sydow as Noah, and Malcolm McDowell as Solomon.</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6FofvlFfQ5TlhyT7YrUZpa" - }, - "href": "https://api.spotify.com/v1/audiobooks/6FofvlFfQ5TlhyT7YrUZpa", - "id": "6FofvlFfQ5TlhyT7YrUZpa", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a818c62659ef9e892aad68f3f5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b18c62659ef9e892aad68f3f5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b18c62659ef9e892aad68f3f5", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The Word of Promise: Audio Bible Old Testament: NKJV Audio Bible", - "narrators": [ - { - "name": "Jim Caviezel" - }, - { - "name": "Richard Dreyfuss" - }, - { - "name": "Gary Sinise" - }, - { - "name": "Jason Alexander" - }, - { - "name": "Marisa Tomei" - }, - { - "name": "Stacy Keach" - }, - { - "name": "Various Narrators" - } - ], - "publisher": "Thomas Nelson Inc.", - "type": "audiobook", - "uri": "spotify:show:6FofvlFfQ5TlhyT7YrUZpa", - "total_chapters": 1863 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam OldenhaveMees Kees is nog stagiair, maar toch kan hij al heel goed lesgeven! Bij grote rampen, zoals hoofdrekenen of spelling van moeilijke woorden, verzint hij altijd een goeie oplossing. Meestal met chips en cola, want dat zijn ook moeilijke woorden.
\n
\nAls zijn klas de eindmusical moet verzorgen, heeft Mees Kees ook meteen een plan: ze gaan een rap doen. Superrapper Pépé komt helpen. Zijn motto is: Keihard is nog veel te zacht! Eén ding: Dreus mag er natuurlijk niet achter komen...
\n
\nDe serie Mees Kees van Mirjam Oldenhave is een klinkend succes. Er verschenen zes boeken en Mirjam Oldenhave trok in 2012 door het hele land met De grote Mees Kees show. Een wervelende muziektheatervoorstelling, onder begeleiding van het 65 man sterke Holland Symfonia orkest.
\n
\nCompositie Mees Kees lied: Steven Stapel
\n
\nInhoud
\n1. Nepasrev
\n2. Tokkie
\n3. Musical
\n4. Yo!
\n5. Lange woordenleesles
\n6. Hoofdrekenen
\n7. De rekenrap
\n8. Vergaderen
\n9. Zoenschool
\n10. Mevrouw Terlinde
\n11. Omeletjes met servetjes
\n12. Verhaaltjessommen
\n13. Pepe
\n14. Agent Klaas
\n15. Kozmoz
\n16. Rapporten
\n17. Bijna vakantie
\n18. 22 problemen
\n19. Mees Kees lied
", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Mees Kees is nog stagiair, maar toch kan hij al heel goed lesgeven! Bij grote rampen, zoals hoofdrekenen of spelling van moeilijke woorden, verzint hij altijd een goeie oplossing. Meestal met chips en cola, want dat zijn ook moeilijke woorden.<br />
<br />
Als zijn klas de eindmusical moet verzorgen, heeft Mees Kees ook meteen een plan: ze gaan een rap doen. Superrapper Pépé komt helpen. Zijn motto is: Keihard is nog veel te zacht! Eén ding: Dreus mag er natuurlijk niet achter komen...<br />
<br />
De serie <i>Mees Kees</i> van Mirjam Oldenhave is een klinkend succes. Er verschenen zes boeken en Mirjam Oldenhave trok in 2012 door het hele land met <i>De grote Mees Kees</i> show. Een wervelende muziektheatervoorstelling, onder begeleiding van het 65 man sterke Holland Symfonia orkest.<br />
<br />
Compositie Mees Kees lied: Steven Stapel<br />
<br />
<b>Inhoud</b><br />
1. Nepasrev<br />
2. Tokkie<br />
3. Musical<br />
4. Yo!<br />
5. Lange woordenleesles<br />
6. Hoofdrekenen<br />
7. De rekenrap<br />
8. Vergaderen<br />
9. Zoenschool<br />
10. Mevrouw Terlinde<br />
11. Omeletjes met servetjes<br />
12. Verhaaltjessommen<br />
13. Pepe<br />
14. Agent Klaas<br />
15. Kozmoz<br />
16. Rapporten<br />
17. Bijna vakantie<br />
18. 22 problemen<br />
19. Mees Kees lied<br />", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7mkPrRJPfJCYSQadcuAwi0" - }, - "href": "https://api.spotify.com/v1/audiobooks/7mkPrRJPfJCYSQadcuAwi0", - "id": "7mkPrRJPfJCYSQadcuAwi0", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8ec4215e7ba7ac9267cd73dab", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bec4215e7ba7ac9267cd73dab", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bec4215e7ba7ac9267cd73dab", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De rekenrap", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:7mkPrRJPfJCYSQadcuAwi0", - "total_chapters": 20 - }, - { - "authors": [ - { - "name": "David Hepworth" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): David Hepworth\nNarrator(s): David Hepworth

Brought to you by Penguin.

From the author of Abbey Road comes the story of how enduring rock icons like Pink Floyd, Bruce Springsteen and many more have remained in the ever changing music game.


When Paul McCartney closed Live Aid in July 1985 we thought he was rock's Grand Old Man. He was forty-three years old.

As the forty years since have shown he - and many others of his generation - were just getting started.

This was the time when live performance took over from records. The big names of the 60s and 70s exploited the age of spectacle that Live Aid had ushered in to enjoy the longest lap of honour in the history of humanity, continuing to go strong long after everyone else had retired.

Hence this is a story without precedent, a story in which Elton John plays a royal funeral, Mick Jagger gets a knighthood, Bob Dylan picks up the Nobel Prize, the Beatles become, if anything, bigger than the Beatles and it's beginning to look as though all of the above will, thanks to the march of technology, be playing Las Vegas for ever.

©2024 David Hepworth (P)2024 Penguin Audio

", - "html_description": "Author(s): David Hepworth
Narrator(s): David Hepworth
<p><b>Brought to you by Penguin.<br><br>From the author of <i>Abbey Road</i> comes the story of how enduring rock icons like Pink Floyd, Bruce Springsteen and many more have remained in the ever changing music game.</b><br><br>When Paul McCartney closed Live Aid in July 1985 we thought he was rock's Grand Old Man. He was forty-three years old.<br><br>As the forty years since have shown he - and many others of his generation - were just getting started.<br><br>This was the time when live performance took over from records. The big names of the 60s and 70s exploited the age of spectacle that Live Aid had ushered in to enjoy the longest lap of honour in the history of humanity, continuing to go strong long after everyone else had retired.<br><br>Hence this is a story without precedent, a story in which Elton John plays a royal funeral, Mick Jagger gets a knighthood, Bob Dylan picks up the Nobel Prize, the Beatles become, if anything, bigger than the Beatles and it's beginning to look as though all of the above will, thanks to the march of technology, be playing Las Vegas for ever.<br><br>©2024 David Hepworth (P)2024 Penguin Audio</p>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/5CrX7ccFO2bCZqp4rZfGU8" - }, - "href": "https://api.spotify.com/v1/audiobooks/5CrX7ccFO2bCZqp4rZfGU8", - "id": "5CrX7ccFO2bCZqp4rZfGU8", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8cc04893ebaf64217eae2c7da", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bcc04893ebaf64217eae2c7da", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bcc04893ebaf64217eae2c7da", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Hope I Get Old Before I Die: Why rock stars never retire", - "narrators": [ - { - "name": "David Hepworth" - } - ], - "publisher": "David Hepworth", - "type": "audiobook", - "uri": "spotify:show:5CrX7ccFO2bCZqp4rZfGU8", - "total_chapters": 41 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam OldenhaveLuister nu naar het nieuwe Mees Kees avontuur!Er komt een fancy fair op de school van Tobias en Sep, om geld op te halen voor een goed doel. Samen met mees Kees maakt groep 6b een circusvoorstelling. Sammy gaat jongleren, Jackie hangt aan de trapeze en Tobias heeft ook een superidee, maar dat is nog een verrassing. Zelfs Harley, de hond van mees Kees, doet mee. Circus Hoppa wordt straks vast een groot succes! Of toch niet...?", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Luister nu naar het nieuwe Mees Kees avontuur!
Er komt een fancy fair op de school van Tobias en Sep, om geld op te halen voor een goed doel. Samen met mees Kees maakt groep 6b een circusvoorstelling. Sammy gaat jongleren, Jackie hangt aan de trapeze en Tobias heeft ook een superidee, maar dat is nog een verrassing. Zelfs Harley, de hond van mees Kees, doet mee. Circus Hoppa wordt straks vast een groot succes! Of toch niet...?", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7Bf8n6YMDNv72qW5FitNjx" - }, - "href": "https://api.spotify.com/v1/audiobooks/7Bf8n6YMDNv72qW5FitNjx", - "id": "7Bf8n6YMDNv72qW5FitNjx", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8cb7918ba463571eed7240747", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bcb7918ba463571eed7240747", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bcb7918ba463571eed7240747", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Hoppa!", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:7Bf8n6YMDNv72qW5FitNjx", - "total_chapters": 43 - }, - { - "authors": [ - { - "name": "Simon Peterson" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Andrews UK 2012", - "type": "C" - } - ], - "description": "Author(s): Simon Peterson\nNarrator(s): Simon PetersonBritish Narrator Simon Peterson reads the entire Old Testament in this wonderful audiobook collection. As a well-known Christian Broadcaster, Simon has the ideal voice for those of all ages who want to listen to The Bible in full, unabridged form. His emotive reading perfectly captures the beauty and power of God's Word and makes the King James English clear and easy to understand.", - "html_description": "Author(s): Simon Peterson
Narrator(s): Simon Peterson
British Narrator Simon Peterson reads the entire Old Testament in this wonderful audiobook collection. As a well-known Christian Broadcaster, Simon has the ideal voice for those of all ages who want to listen to The Bible in full, unabridged form. His emotive reading perfectly captures the beauty and power of God's Word and makes the King James English clear and easy to understand.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/3OV5MdGnhtyagxRWNdZda2" - }, - "href": "https://api.spotify.com/v1/audiobooks/3OV5MdGnhtyagxRWNdZda2", - "id": "3OV5MdGnhtyagxRWNdZda2", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8b48c6927dcf189bb6de60e9b", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bb48c6927dcf189bb6de60e9b", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bb48c6927dcf189bb6de60e9b", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The Complete Old Testament: Read by Simon Peterson", - "narrators": [ - { - "name": "Simon Peterson" - } - ], - "publisher": "Simon Peterson", - "type": "audiobook", - "uri": "spotify:show:3OV5MdGnhtyagxRWNdZda2", - "total_chapters": 930 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam OldenhaveEen leraar als Mees Kees wil iedereen wel! Van moppen tappen en galgje spelen leer je prima spellen, vindt hij. En een tekenfilm kijken telt natuurlijk ook als tekenles…
\n
\nAls de leukste stagiair van de wereld jarig is, bedenkt de klas een geniaal plan om hem te verrassen. Intussen maakt Tobias zich zorgen, omdat zijn moeder vast niet naar school wil komen voor het tien-minuten-gesprek. Maar Mees Kees zou Mees Kees niet zijn als hij niet voor alles een oplossing had.
\n
\nBijna een half miljoen exemplaren van dit Kinderboekenweekgeschenk gingen er in 2010 over de toonbank. Maar er staat alweer een nieuwe lichting Mees Kees-fans te trappelen om de verjaardag van onze populaire stagiair te vieren. Deze nieuwe en uitgebreide editie uit 2014 nu ook als luisterboek, voorgelezen door de auteur zelf.
\nHeerlijk voor in de auto of op vakantie.
\n
\nInhoud
\n1. Rustig afwachten
\n2. Snuffelen
\n3. Combi
\n4. Spreekbeurt
\n5. Laatste waarschuwing
\n6. Ramp in je nek
\n7. Hasjna
\n8. Tekenles
\n9. Kop in de strop
\n10. Handig rekenen
\n11. Cadeau
\n12. Het geniale plan
\n13. Giraj
\n14. Tadaa
\n15. Uitdelen
\n16. Tien minuten
\n17. Probleempje
\n18. Geheim", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Een leraar als Mees Kees wil iedereen wel! Van moppen tappen en galgje spelen leer je prima spellen, vindt hij. En een tekenfilm kijken telt natuurlijk ook als tekenles…<br />
<br />
Als de leukste stagiair van de wereld jarig is, bedenkt de klas een geniaal plan om hem te verrassen. Intussen maakt Tobias zich zorgen, omdat zijn moeder vast niet naar school wil komen voor het tien-minuten-gesprek. Maar Mees Kees zou Mees Kees niet zijn als hij niet voor alles een oplossing had.<br />
<br />
Bijna een half miljoen exemplaren van dit Kinderboekenweekgeschenk gingen er in 2010 over de toonbank. Maar er staat alweer een nieuwe lichting Mees Kees-fans te trappelen om de verjaardag van onze populaire stagiair te vieren. Deze nieuwe en uitgebreide editie uit 2014 nu ook als luisterboek, voorgelezen door de auteur zelf.<br />
Heerlijk voor in de auto of op vakantie.<br />
<br />
<b>Inhoud</b><br />
1. Rustig afwachten<br />
2. Snuffelen<br />
3. Combi<br />
4. Spreekbeurt<br />
5. Laatste waarschuwing<br />
6. Ramp in je nek<br />
7. Hasjna<br />
8. Tekenles<br />
9. Kop in de strop<br />
10. Handig rekenen<br />
11. Cadeau<br />
12. Het geniale plan<br />
13. Giraj<br />
14. Tadaa<br />
15. Uitdelen<br />
16. Tien minuten<br />
17. Probleempje<br />
18. Geheim", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/2nTSz8RwadcvtZat19sTBt" - }, - "href": "https://api.spotify.com/v1/audiobooks/2nTSz8RwadcvtZat19sTBt", - "id": "2nTSz8RwadcvtZat19sTBt", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a88e656b5f3a3ae12021229263", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b8e656b5f3a3ae12021229263", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b8e656b5f3a3ae12021229263", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Mees Kees - In de gloria", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:2nTSz8RwadcvtZat19sTBt", - "total_chapters": 19 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam OldenhaveMees Kees heeft nog geen diploma, daarom mag hij niet meer alleen voor de klas staan. Hij gaat stage lopen bij de kleuters en 6B krijgt een invaljuf. Maar waarom geeft ze niet gewoon een moppendictee? En hoe kan ze nou lesgeven zonder chips en cola? Na haar komt een invalmeester en die stuurt de hele klas eruit. Kortom, het is tijd voor actie. Mees Kees moet terug! En graag een beetje vlug, want er komt een sponsorloop, en zonder mees Kees wordt dat natuurlijk helemaal niets...
", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
Mees Kees heeft nog geen diploma, daarom mag hij niet meer alleen voor de klas staan. Hij gaat stage lopen bij de kleuters en 6B krijgt een invaljuf. Maar waarom geeft ze niet gewoon een moppendictee? En hoe kan ze nou lesgeven zonder chips en cola? Na haar komt een invalmeester en die stuurt de hele klas eruit. Kortom, het is tijd voor actie. Mees Kees moet terug! En graag een beetje vlug, want er komt een sponsorloop, en zonder mees Kees wordt dat natuurlijk helemaal niets...<br />", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/71NmMSkA6xyMcdDnLvcLIW" - }, - "href": "https://api.spotify.com/v1/audiobooks/71NmMSkA6xyMcdDnLvcLIW", - "id": "71NmMSkA6xyMcdDnLvcLIW", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8469e16b5d55022c8f846b99d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b469e16b5d55022c8f846b99d", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b469e16b5d55022c8f846b99d", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "De sponsorloop", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:71NmMSkA6xyMcdDnLvcLIW", - "total_chapters": 21 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Mirjam Oldenhave‘De maatschappij, dat ben jij,’ zegt juffrouw Dreus. En dus moet groep 6b op bezoek bij een bejaardentehuis, om de oude mensen voor te lezen, met ze te wandelen en te praten... Helaas houden de bejaarden helemaal niet van wandelen en lezen doen ze liever zelf. Mees Kees verzint gelukkig een oplossing die voor iedereen fijn is.
\n
\nOok ontdekt Tobias dat twee opa's al duizend maanden elkaars beste vriend zijn. Dat moet natuurlijk gevierd worden!
\n
\nInhoud
\n1. Reinier
\n2. Rekenen
\n3. Hoorspel
\n4. Grappig
\n5. 6A
\n6. De wethouder
\n7. Gabber
\n8. Topo
\n9. De voorbereidingsclub
\n10. Zwaar
\n11. Op de planken
\n12. Uitschudden
\n13. Wij gaan naar
\n14. Op weg naar de kermis
\n15. Draaimolen
\n16. Draaien
\n17. Duizend maanden", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Mirjam Oldenhave
‘De maatschappij, dat ben jij,’ zegt juffrouw Dreus. En dus moet groep 6b op bezoek bij een bejaardentehuis, om de oude mensen voor te lezen, met ze te wandelen en te praten... Helaas houden de bejaarden helemaal niet van wandelen en lezen doen ze liever zelf. Mees Kees verzint gelukkig een oplossing die voor iedereen fijn is.<br />
<br />
Ook ontdekt Tobias dat twee opa's al duizend maanden elkaars beste vriend zijn. Dat moet natuurlijk gevierd worden!<br />
<br />
<b>Inhoud</b><br />
1. Reinier<br />
2. Rekenen<br />
3. Hoorspel<br />
4. Grappig<br />
5. 6A<br />
6. De wethouder<br />
7. Gabber<br />
8. Topo<br />
9. De voorbereidingsclub<br />
10. Zwaar<br />
11. Op de planken<br />
12. Uitschudden<br />
13. Wij gaan naar<br />
14. Op weg naar de kermis<br />
15. Draaimolen<br />
16. Draaien<br />
17. Duizend maanden", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/2ZWSYH26WxBAkPSBIgq2xQ" - }, - "href": "https://api.spotify.com/v1/audiobooks/2ZWSYH26WxBAkPSBIgq2xQ", - "id": "2ZWSYH26WxBAkPSBIgq2xQ", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a81d6d7998c0116086219c636d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b1d6d7998c0116086219c636d", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b1d6d7998c0116086219c636d", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Mees Kees - Op de planken", - "narrators": [ - { - "name": "Mirjam Oldenhave" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:2ZWSYH26WxBAkPSBIgq2xQ", - "total_chapters": 18 - }, - { - "authors": [ - { - "name": "Mirjam Oldenhave" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Mirjam Oldenhave\nNarrator(s): Frank GroothofMeester Kees heeft nog nooit voor de klas gestaan. De kinderen moeten hem nog een beetje leren hoe dat moet, meester zijn. En dat doen ze graag!
\n
\nZe leren hem dat je best om kwart over negen je pauzeboterhammen op mag eten, als je maar op het bord schrijft dat het om een voedselproject gaat. En dat het heel handig is als ieder kind maar één rijtje sommen van de taak maakt, zodat niet iedereen hetzelfde werk zit te doen...
\n
\nDit boek werd getipt door de Nederlandse Kinderjury!
\n
\nInhoud
\n1. Mees Kees (intro)
\n2. Omeletje
\n3. Sommen
\n4. Rashida's spreekbeurt
\n5. Topografie
\n6. Bijles
\n7. De tafel van vier
\n8. Luizencontrole
\n9. Taal
\n10. Nieuws uit de natuur
\n11. Keihard werken
\n12. Dreus
\n13. Corvee
\n14. Op jacht met Mees Kees
\n15. Jemo Etan der Slezen
\n16. Onbereikbare liefde, deel 1
\n17. Onbereikbare liefde, deel 2
\n18. Bijles grote getallen
\n19. Nummertjes
\n20. De meester van de meester
\n21. Bertus Koelemeijer", - "html_description": "Author(s): Mirjam Oldenhave
Narrator(s): Frank Groothof
Meester Kees heeft nog nooit voor de klas gestaan. De kinderen moeten hem nog een beetje leren hoe dat moet, meester zijn. En dat doen ze graag!<br />
<br />
Ze leren hem dat je best om kwart over negen je pauzeboterhammen op mag eten, als je maar op het bord schrijft dat het om een voedselproject gaat. En dat het heel handig is als ieder kind maar één rijtje sommen van de taak maakt, zodat niet iedereen hetzelfde werk zit te doen...<br />
<br />
Dit boek werd getipt door de Nederlandse Kinderjury!<br />
<br />
<b>Inhoud</b><br />
1. Mees Kees (intro)<br />
2. Omeletje<br />
3. Sommen<br />
4. Rashida's spreekbeurt<br />
5. Topografie<br />
6. Bijles<br />
7. De tafel van vier<br />
8. Luizencontrole<br />
9. Taal<br />
10. Nieuws uit de natuur<br />
11. Keihard werken<br />
12. Dreus<br />
13. Corvee<br />
14. Op jacht met Mees Kees<br />
15. Jemo Etan der Slezen<br />
16. Onbereikbare liefde, deel 1<br />
17. Onbereikbare liefde, deel 2<br />
18. Bijles grote getallen<br />
19. Nummertjes<br />
20. De meester van de meester<br />
21. Bertus Koelemeijer", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/5xs4LPLZqVnNyvIflF1P2R" - }, - "href": "https://api.spotify.com/v1/audiobooks/5xs4LPLZqVnNyvIflF1P2R", - "id": "5xs4LPLZqVnNyvIflF1P2R", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8d0544e8958c673f33c168189", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bd0544e8958c673f33c168189", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bd0544e8958c673f33c168189", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Een pittig klasje", - "narrators": [ - { - "name": "Frank Groothof" - } - ], - "publisher": "Mirjam Oldenhave", - "type": "audiobook", - "uri": "spotify:show:5xs4LPLZqVnNyvIflF1P2R", - "total_chapters": 22 - }, - { - "authors": [ - { - "name": "Leo Oldenburger" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Leo Oldenburger\nNarrator(s): Jan Douwe KroeskeAls voorman van Doe Maar schreef Henny Vrienten geschiedenis. Niet eerder was een Nederlandse band zo populair. Tijdens optredens werd de band bejubeld door uitzinnige tienermeisjes en het land werd overspoeld met Doe Maar-merchandise. In 1984 gingen de mannen van Doe Maar uit elkaar, waarna Vrienten zich toelegde op een indrukwekkende solocarrière. Daarnaast schreef hij muziek voor films, musicals en televisieprogramma’s als ‘Het Klokhuis’ en ‘Sesamstraat’. Begin 2022 benaderde Leo Oldenburger Henny Vrienten met het verzoek of hij een boek over hem mocht schrijven, waarin collega-muzikanten zou worden gevraagd naar hun ervaringen met hem. Vrienten gaf aan tegen dat idee geen bezwaar te hebben. Oldenburger sprak met velen die van grote betekenis waren in het leven van de artiest, onder wie Ernst Jansz, Frank Boeijen, Henk Hofstede en Boudewijn de Groot. In ‘Henny Vrienten’ beschrijft Oldenburger op meeslepende wijze het verhaal van de componist, muzikant en tekstdichter.", - "html_description": "Author(s): Leo Oldenburger
Narrator(s): Jan Douwe Kroeske
Als voorman van Doe Maar schreef Henny Vrienten geschiedenis. Niet eerder was een Nederlandse band zo populair. Tijdens optredens werd de band bejubeld door uitzinnige tienermeisjes en het land werd overspoeld met Doe Maar-merchandise. In 1984 gingen de mannen van Doe Maar uit elkaar, waarna Vrienten zich toelegde op een indrukwekkende solocarrière. Daarnaast schreef hij muziek voor films, musicals en televisieprogramma’s als ‘Het Klokhuis’ en ‘Sesamstraat’. Begin 2022 benaderde Leo Oldenburger Henny Vrienten met het verzoek of hij een boek over hem mocht schrijven, waarin collega-muzikanten zou worden gevraagd naar hun ervaringen met hem. Vrienten gaf aan tegen dat idee geen bezwaar te hebben. Oldenburger sprak met velen die van grote betekenis waren in het leven van de artiest, onder wie Ernst Jansz, Frank Boeijen, Henk Hofstede en Boudewijn de Groot. In ‘Henny Vrienten’ beschrijft Oldenburger op meeslepende wijze het verhaal van de componist, muzikant en tekstdichter.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6Swa6ZpoTeKxeIhr1HQi2J" - }, - "href": "https://api.spotify.com/v1/audiobooks/6Swa6ZpoTeKxeIhr1HQi2J", - "id": "6Swa6ZpoTeKxeIhr1HQi2J", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a896cb628bd656f69cdc2f28f3", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b96cb628bd656f69cdc2f28f3", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b96cb628bd656f69cdc2f28f3", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "nl" - ], - "media_type": "audio", - "name": "Henny Vrienten", - "narrators": [ - { - "name": "Jan Douwe Kroeske" - } - ], - "publisher": "Leo Oldenburger", - "type": "audiobook", - "uri": "spotify:show:6Swa6ZpoTeKxeIhr1HQi2J", - "total_chapters": 25 - }, - { - "authors": [ - { - "name": "Ernest Hemingway" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Simon & Schuster 2006", - "type": "C" - } - ], - "description": "Author(s): Ernest Hemingway\nNarrator(s): Donald Sutherland2007 Audie Award Finalist for Solo Narration—Male

*Winner of the Pulitzer Prize*
“A beautiful tale, awash in the seasalt and sweat, bait and beer of the Havana coast. It tells a fundamental human truth: in a volatile world, from our first breath to our last wish, through triumphs and pitfalls both trivial and profound, what sustains us, ultimately, is hope.” —The Guardian

The last of his novels Ernest Hemingway saw published, The Old Man and the Sea has proved itself to be one of the most enduring works of American fiction. The story of a down-on-his-luck Cuban fisherman and his supreme ordeal—a relentless, agonizing battle with a giant marlin far out in the Gulf Stream—has been cherished by generations of readers.

Hemingway takes the timeless themes of courage in the face of adversity and personal triumph won from loss and transforms them into a magnificent twentieth-century classic. First published in 1952, this hugely popular tale confirmed his power and presence in the literary world and played a large part in his winning the 1954 Nobel Prize in Literature.", - "html_description": "Author(s): Ernest Hemingway
Narrator(s): Donald Sutherland
<b>2007 Audie Award Finalist for Solo Narration—Male</b><br><br><b>*Winner of the Pulitzer Prize*</b><br> <b>“A beautiful tale, awash in the seasalt and sweat, bait and beer of the Havana coast. It tells a fundamental human truth: in a volatile world, from our first breath to our last wish, through triumphs and pitfalls both trivial and profound, what sustains us, ultimately, is hope.” —<i>The Guardian</i> </b><br><br>The last of his novels Ernest Hemingway saw published, <i>The Old Man and the Sea</i> has proved itself to be one of the most enduring works of American fiction. The story of a down-on-his-luck Cuban fisherman and his supreme ordeal—a relentless, agonizing battle with a giant marlin far out in the Gulf Stream—has been cherished by generations of readers.<br> <br>Hemingway takes the timeless themes of courage in the face of adversity and personal triumph won from loss and transforms them into a magnificent twentieth-century classic. First published in 1952, this hugely popular tale confirmed his power and presence in the literary world and played a large part in his winning the 1954 Nobel Prize in Literature.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7IuHomVGGGTXBYdF5gsnc3" - }, - "href": "https://api.spotify.com/v1/audiobooks/7IuHomVGGGTXBYdF5gsnc3", - "id": "7IuHomVGGGTXBYdF5gsnc3", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a84cf5d2837c74a867fd4e4186", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b4cf5d2837c74a867fd4e4186", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b4cf5d2837c74a867fd4e4186", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "The Old Man and the Sea", - "narrators": [ - { - "name": "Donald Sutherland" - } - ], - "publisher": "Ernest Hemingway", - "type": "audiobook", - "uri": "spotify:show:7IuHomVGGGTXBYdF5gsnc3", - "total_chapters": 6 - }, - { - "authors": [ - { - "name": "Kim Mitzo Thompson" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Twin Sisters 2006", - "type": "C" - } - ], - "description": "Author(s): Kim Mitzo Thompson\nNarrator(s): Various Contributors

Visit Old MacDonald's classic farm with these fun arrangements of favorite nursery rhymes and children's songs.

", - "html_description": "Author(s): Kim Mitzo Thompson
Narrator(s): Various Contributors
<P>Visit Old MacDonald's classic farm with these fun arrangements of favorite nursery rhymes and children's songs.</P>", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7n4kkb28OrN8zr5GEthLNe" - }, - "href": "https://api.spotify.com/v1/audiobooks/7n4kkb28OrN8zr5GEthLNe", - "id": "7n4kkb28OrN8zr5GEthLNe", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a804ef5d641ec031e609b53b0f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b04ef5d641ec031e609b53b0f", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b04ef5d641ec031e609b53b0f", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en" - ], - "media_type": "audio", - "name": "Old MacDonald Had A Farm", - "narrators": [ - { - "name": "Various Contributors" - } - ], - "publisher": "Kim Mitzo Thompson", - "type": "audiobook", - "uri": "spotify:show:7n4kkb28OrN8zr5GEthLNe", - "total_chapters": 17 - } - ] - } + } } diff --git a/tests/fixtures/show.json b/tests/fixtures/show.json index dc9d95f..b4883b2 100644 --- a/tests/fixtures/show.json +++ b/tests/fixtures/show.json @@ -1,2435 +1,2333 @@ { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD?locale=en-US%2Cen%3Bq%3D0.5", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": [ - "en-US" - ], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD", - "total_episodes": 120, - "episodes": { - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=0&limit=50&locale=en-US,en;q%3D0.5", - "limit": 50, - "next": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=50&limit=50&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 120, - "items": [ - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6msRFio3561me28DofTad7/clip_570865_630865.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5690591, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj" - }, - "href": "https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj", - "id": "7CbsFHQq8ljztiUSGw46Fj", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Math Haters vs Math Nerd - Safety Third 118", - "release_date": "2024-07-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7CbsFHQq8ljztiUSGw46Fj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59kIitZiPVjT9KScqbQ4ud/clip_287735_347735.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5808720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk" - }, - "href": "https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk", - "id": "7I6SU4lQbmxipsRNN5hGGk", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117", - "release_date": "2024-07-11", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7I6SU4lQbmxipsRNN5hGGk" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2bqHwGWLlsEMSNIg59Odlv/clip_135559_195559.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5290728, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe" - }, - "href": "https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe", - "id": "5RTOrKLydGUJxiebaBbEbe", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "NileRed's Most Important Employee - Safety Third 116", - "release_date": "2024-07-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5RTOrKLydGUJxiebaBbEbe" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7uj2npDbrFuQ1HWLuPKeo5/clip_236465_296465.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6685800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0" - }, - "href": "https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0", - "id": "2cxiMfCIlOPiMQhsdRMKG0", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "How Real Engineering Got Fired - Safety Third 115", - "release_date": "2024-06-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2cxiMfCIlOPiMQhsdRMKG0" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6iuiZ3W7DV0DUl9dvK5tF1/clip_439813_499813.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5509825, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR" - }, - "href": "https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR", - "id": "2jALMGr63flWEdRl8NxvQR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Thin Mint Zyns - Safety Third 114", - "release_date": "2024-06-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2jALMGr63flWEdRl8NxvQR" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0KgFGEHvoKXPBDVJurNrJA/clip_303096_363096.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2731702, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj" - }, - "href": "https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj", - "id": "0Rr3sI7wj3VaNQFPhalCVj", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Live from Open Sauce 2023 - Safety Third 113", - "release_date": "2024-06-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0Rr3sI7wj3VaNQFPhalCVj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7A38OhaLYIZK55NEw4BHQu/clip_552910_612910.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5192437, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4" - }, - "href": "https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4", - "id": "3XKOIVuGVzzEPNnlyz7PX4", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "He Tried Hiring a Child Bartender - Safety Third 112", - "release_date": "2024-06-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3XKOIVuGVzzEPNnlyz7PX4" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0eTBmBv351dUpUjip2VOnB/clip_489832_549832.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4338191, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb" - }, - "href": "https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb", - "id": "5qGMPBYEW5Izdm9W5F7PSb", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Ted Nivison Has a Disgusting Keyboard - Safety Third 111", - "release_date": "2024-05-30", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5qGMPBYEW5Izdm9W5F7PSb" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3SEynoolqW895KB999YBU8/clip_433955_493955.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5367528, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq" - }, - "href": "https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq", - "id": "7G5CGTUvtSpLP67O4cYAWq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Worst Parts of Dating a Mad Scientist - Safety Third 110", - "release_date": "2024-05-23", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7G5CGTUvtSpLP67O4cYAWq" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0jxt3zWP6S5HHnMpoCtdNn/clip_452775_512775.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6502817, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p" - }, - "href": "https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p", - "id": "3cJk5Cfvpkrdf9hxY5Hi3p", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Confronting His Old Boss - Safety Third 109", - "release_date": "2024-05-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6q6bQKNthNUlXeUgmX0urr/clip_328344_388344.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5386488, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0OV7VAkyKacrcmBEsBtyWJ" - }, - "href": "https://api.spotify.com/v1/episodes/0OV7VAkyKacrcmBEsBtyWJ", - "id": "0OV7VAkyKacrcmBEsBtyWJ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Is the Nuclear Power in Fallout Realistic? ft. Kyle Hill - Safety Third 108", - "release_date": "2024-05-09", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0OV7VAkyKacrcmBEsBtyWJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29GZx84L50GEYA0mJs5KL8/clip_471016_531016.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5431056, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6QzBsbaokkbGKee5Y19KHR" - }, - "href": "https://api.spotify.com/v1/episodes/6QzBsbaokkbGKee5Y19KHR", - "id": "6QzBsbaokkbGKee5Y19KHR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "What’s the Fastest Way to Melt Butter - Safety Third 107", - "release_date": "2024-05-02", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6QzBsbaokkbGKee5Y19KHR" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2sfskCDblwQfCrBMiW1NDr/clip_201036_261036.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5152800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4gl883BUIWA8KolJGzefMp" - }, - "href": "https://api.spotify.com/v1/episodes/4gl883BUIWA8KolJGzefMp", - "id": "4gl883BUIWA8KolJGzefMp", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Science Used to Be Weird - Safety Third 106", - "release_date": "2024-04-25", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4gl883BUIWA8KolJGzefMp" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7xPLUCuz7Ge8rinQM9es3t/clip_1935197_1991760.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3784803, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0am1OCbZW8AbxRI8eqHVhc" - }, - "href": "https://api.spotify.com/v1/episodes/0am1OCbZW8AbxRI8eqHVhc", - "id": "0am1OCbZW8AbxRI8eqHVhc", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Bill Nye Stole Your Mom - Safety Third 105", - "release_date": "2024-04-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0am1OCbZW8AbxRI8eqHVhc" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2TJaXa8G1ocZRVm6D19Hd1/clip_1685523_1748057.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6872842, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6EDbQAIcNbDEIylf2LADzi" - }, - "href": "https://api.spotify.com/v1/episodes/6EDbQAIcNbDEIylf2LADzi", - "id": "6EDbQAIcNbDEIylf2LADzi", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Trolling Chevron with DougDoug - Safety Third 104", - "release_date": "2024-04-11", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6EDbQAIcNbDEIylf2LADzi" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3iPfBEJSpkVEfH6zere9GI/clip_2499680_2544221.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6336360, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0XKM3iy8JuMpaW5ohU3zUu" - }, - "href": "https://api.spotify.com/v1/episodes/0XKM3iy8JuMpaW5ohU3zUu", - "id": "0XKM3iy8JuMpaW5ohU3zUu", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "How Allen Sneaks Knives Past TSA - Safety Third 103", - "release_date": "2024-04-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0XKM3iy8JuMpaW5ohU3zUu" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/63PMrJgc4LqYJZrGZ1QDBp/clip_550250_614796.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4120560, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2LQerIBzWHRSVuRFLYLC0s" - }, - "href": "https://api.spotify.com/v1/episodes/2LQerIBzWHRSVuRFLYLC0s", - "id": "2LQerIBzWHRSVuRFLYLC0s", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Mythbusters vs Killdozer - Safety Third 102", - "release_date": "2024-03-28", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2LQerIBzWHRSVuRFLYLC0s" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4OngbhMyKTzmBMSPb6GlLd/clip_2528200_2572370.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4992470, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0Ybbd43X9KtiZKL3I2f6df" - }, - "href": "https://api.spotify.com/v1/episodes/0Ybbd43X9KtiZKL3I2f6df", - "id": "0Ybbd43X9KtiZKL3I2f6df", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Uncle Roger Roasts - Safety Third 101", - "release_date": "2024-03-21", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0Ybbd43X9KtiZKL3I2f6df" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6Xn9AHgzE6EUpg1pfjnlrg/clip_2695377_2746379.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5745263, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4mcoLIatd3aofPnkTcfB2a" - }, - "href": "https://api.spotify.com/v1/episodes/4mcoLIatd3aofPnkTcfB2a", - "id": "4mcoLIatd3aofPnkTcfB2a", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "We Kidnapped NileRed - Safety Third 100", - "release_date": "2024-03-07", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4mcoLIatd3aofPnkTcfB2a" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6wSG8GhPx5U4chpkPHLHSO/clip_2750200_2796000.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3589056, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1ghUYVMZwHiManmG68lbwP" - }, - "href": "https://api.spotify.com/v1/episodes/1ghUYVMZwHiManmG68lbwP", - "id": "1ghUYVMZwHiManmG68lbwP", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Making Salt Out of Blood - Safety Third 99", - "release_date": "2024-02-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1ghUYVMZwHiManmG68lbwP" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4pxTWzy02Jjhb0byJ4MlGA/clip_2312751_2370562.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4496928, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5Rbsn0a8lCjrXMvOnMNkHb" - }, - "href": "https://api.spotify.com/v1/episodes/5Rbsn0a8lCjrXMvOnMNkHb", - "id": "5Rbsn0a8lCjrXMvOnMNkHb", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Eating a Giant Ostrich Egg - Safety Third 98", - "release_date": "2024-02-22", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5Rbsn0a8lCjrXMvOnMNkHb" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2SJFEHzbDtcQ0J53vGbQVI/clip_2021458_2085154.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5378591, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0T9S0GAx8XMrRcOhY93ywy" - }, - "href": "https://api.spotify.com/v1/episodes/0T9S0GAx8XMrRcOhY93ywy", - "id": "0T9S0GAx8XMrRcOhY93ywy", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "We’re in New Zealand - Safety Third 97", - "release_date": "2024-02-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0T9S0GAx8XMrRcOhY93ywy" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2M7tuFTCkjRY9MBp7sKUS0/clip_2231862_2283614.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4408398, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/402Qeru3caMcL8EF4fKVGd" - }, - "href": "https://api.spotify.com/v1/episodes/402Qeru3caMcL8EF4fKVGd", - "id": "402Qeru3caMcL8EF4fKVGd", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "9 Boys 1 House - Safety Third 96", - "release_date": "2024-02-08", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:402Qeru3caMcL8EF4fKVGd" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4HWz1xKIc7ivOLyf7zB3Sg/clip_1845912_1904811.mp3", - "description": "Jabrils' Site: https://www.haxware.io/ubearlyPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Jabrils' Site: https://www.haxware.io/ubearly

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4754016, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0YFLBqCKdPEhaz7RGdCC71" - }, - "href": "https://api.spotify.com/v1/episodes/0YFLBqCKdPEhaz7RGdCC71", - "id": "0YFLBqCKdPEhaz7RGdCC71", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "We’re Obsessed With Cookie Clicker - Safety Third 95", - "release_date": "2024-02-02", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0YFLBqCKdPEhaz7RGdCC71" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/05hKJa2Z6lJKpZfIBONWkU/clip_2840200_2887280.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6086582, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6n1pJAaVA5BZeiQeGO5ERh" - }, - "href": "https://api.spotify.com/v1/episodes/6n1pJAaVA5BZeiQeGO5ERh", - "id": "6n1pJAaVA5BZeiQeGO5ERh", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Becoming Radioactive With Hank Green - Safety Third 94", - "release_date": "2024-01-25", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6n1pJAaVA5BZeiQeGO5ERh" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2NTk9G21QaGtRJSYfzigm5/clip_134214_215052.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5252597, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4QokmiQDvlRx6NGKNEW9xZ" - }, - "href": "https://api.spotify.com/v1/episodes/4QokmiQDvlRx6NGKNEW9xZ", - "id": "4QokmiQDvlRx6NGKNEW9xZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Micha - Safety Third 93", - "release_date": "2024-01-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4QokmiQDvlRx6NGKNEW9xZ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1sgqMqxD9ObT8BDk64WNmn/clip_1461400_1522150.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3821113, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0aA6a1o0GlNjp8hvBBEWp2" - }, - "href": "https://api.spotify.com/v1/episodes/0aA6a1o0GlNjp8hvBBEWp2", - "id": "0aA6a1o0GlNjp8hvBBEWp2", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Hacking Into Billionaire Discord Groups - Safety Third 92", - "release_date": "2024-01-11", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0aA6a1o0GlNjp8hvBBEWp2" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5JwAi0lZiT3O4SByCdvZpm/clip_327551_384026.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5902236, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/24DaIDj7RU30dBwi2AlVVz" - }, - "href": "https://api.spotify.com/v1/episodes/24DaIDj7RU30dBwi2AlVVz", - "id": "24DaIDj7RU30dBwi2AlVVz", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Building a Sexy Robot Therapist - Safety Third 91", - "release_date": "2024-01-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:24DaIDj7RU30dBwi2AlVVz" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3klu0j2LK1iL4WQ7gyt9u3/clip_471880_531880.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4540003, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3jarlp7UfYZG5K1MVuOly9" - }, - "href": "https://api.spotify.com/v1/episodes/3jarlp7UfYZG5K1MVuOly9", - "id": "3jarlp7UfYZG5K1MVuOly9", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Mythbusters Are Upset With Allen - Safety Third 90", - "release_date": "2023-12-28", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3jarlp7UfYZG5K1MVuOly9" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/02Wgo5icKgYywAArtfDrG1/clip_1526850_1591800.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3922680, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4ms1xU3AOGTPBqoOHU0krv" - }, - "href": "https://api.spotify.com/v1/episodes/4ms1xU3AOGTPBqoOHU0krv", - "id": "4ms1xU3AOGTPBqoOHU0krv", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Internet Is Cursed With Tom Scott - Safety Third 89", - "release_date": "2023-12-21", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4ms1xU3AOGTPBqoOHU0krv" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6kKWZKorh23t7y66p1IsBN/clip_309526_369526.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3879209, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/26T6rILJ0HfpXDLabPsmFF" - }, - "href": "https://api.spotify.com/v1/episodes/26T6rILJ0HfpXDLabPsmFF", - "id": "26T6rILJ0HfpXDLabPsmFF", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Podcast in a Ball Pit - Safety Third 88", - "release_date": "2023-12-14", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:26T6rILJ0HfpXDLabPsmFF" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/62B6M8SorDVfmIFd4jQwbm/clip_558575_618575.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4298448, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4BwSypd7qt2yItrj4lQAzM" - }, - "href": "https://api.spotify.com/v1/episodes/4BwSypd7qt2yItrj4lQAzM", - "id": "4BwSypd7qt2yItrj4lQAzM", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Trapped in a Room With a Combat Robot - Safety Third 87", - "release_date": "2023-12-07", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4BwSypd7qt2yItrj4lQAzM" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0KFMVhqUWrQT0JkxLhsOgC/clip_546475_606475.mp3", - "description": "Watch us fight our robot live at NHRL Havoc All-Stars, three pulsating nights of robot combat with NHRL stars.Livestream - https://bit.ly/WatchNHRLAllStarsTickets - https://bit.ly/HavocAllStarsTicketsDec 5th, 6th, 7th4pm-7pm PacificPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Watch us fight our robot live at NHRL Havoc All-Stars, three pulsating nights of robot combat with NHRL stars.

Livestream - https://bit.ly/WatchNHRLAllStars

Tickets - https://bit.ly/HavocAllStarsTickets

Dec 5th, 6th, 7th

4pm-7pm Pacific

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5365629, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5YYkQuJVOT6tKUJPTTUJDA" - }, - "href": "https://api.spotify.com/v1/episodes/5YYkQuJVOT6tKUJPTTUJDA", - "id": "5YYkQuJVOT6tKUJPTTUJDA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Does Ball Lightning Actually Exist - Safety Third 86", - "release_date": "2023-11-30", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5YYkQuJVOT6tKUJPTTUJDA" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3LENJeQpwGaAhlWc9Njbli/clip_479465_539465.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5767653, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2xhUEr1zUZVtjHnd4xVLaC" - }, - "href": "https://api.spotify.com/v1/episodes/2xhUEr1zUZVtjHnd4xVLaC", - "id": "2xhUEr1zUZVtjHnd4xVLaC", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Living Off Grid in LA - Safety Third 85", - "release_date": "2023-11-23", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2xhUEr1zUZVtjHnd4xVLaC" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7l7MXR2V0QY1tu2ZF8B1QU/clip_913350_959550.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5213910, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3MZaSUfsw9fxo6pGlgdIYS" - }, - "href": "https://api.spotify.com/v1/episodes/3MZaSUfsw9fxo6pGlgdIYS", - "id": "3MZaSUfsw9fxo6pGlgdIYS", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Baiting Rats With Milk Duds - Safety Third 84", - "release_date": "2023-11-17", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3MZaSUfsw9fxo6pGlgdIYS" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5rKrjYF09CbklL20w0YJKB/clip_1232720_1281800.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4436532, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5VhmbKirE6qtU383S1eU5E" - }, - "href": "https://api.spotify.com/v1/episodes/5VhmbKirE6qtU383S1eU5E", - "id": "5VhmbKirE6qtU383S1eU5E", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Don’t Listen to YouTube Scientists - Safety Third 83", - "release_date": "2023-11-09", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5VhmbKirE6qtU383S1eU5E" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4eYc0AtMns5crefEFOTLqo/clip_321179_389348.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4394657, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0h89PlADXgTCT9vuaqYUmV" - }, - "href": "https://api.spotify.com/v1/episodes/0h89PlADXgTCT9vuaqYUmV", - "id": "0h89PlADXgTCT9vuaqYUmV", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Murdering Children for XP - Safety Third 82", - "release_date": "2023-11-02", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0h89PlADXgTCT9vuaqYUmV" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3brPz2cenBvoaKH7KeDGiP/clip_1383897_1444844.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4442640, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1Foe3FZd7BvRs38I8dH7Sq" - }, - "href": "https://api.spotify.com/v1/episodes/1Foe3FZd7BvRs38I8dH7Sq", - "id": "1Foe3FZd7BvRs38I8dH7Sq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Mark Rober Makes a Lot of Money - Safety Third 81", - "release_date": "2023-10-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1Foe3FZd7BvRs38I8dH7Sq" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1VkOWYoyjcNonaHEMml60h/clip_388540_448540.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5048320, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/08fFiLgTzEZrbFIvAoeQQf" - }, - "href": "https://api.spotify.com/v1/episodes/08fFiLgTzEZrbFIvAoeQQf", - "id": "08fFiLgTzEZrbFIvAoeQQf", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Cooking Burgers With Lasers - Safety Third 80", - "release_date": "2023-10-05", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:08fFiLgTzEZrbFIvAoeQQf" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6hnaibpYIcU8gG4f9Zfdpx/clip_971896_1015730.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4946599, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3eq79MRpzfuGB7Grixux8R" - }, - "href": "https://api.spotify.com/v1/episodes/3eq79MRpzfuGB7Grixux8R", - "id": "3eq79MRpzfuGB7Grixux8R", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Building the World’s Largest Bear Trap - Safety Third 79", - "release_date": "2023-09-28", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3eq79MRpzfuGB7Grixux8R" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5vhmpdoVLQkqp8eVYsHAx2/clip_2784112_2833250.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4390817, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6iRGwNvFSwTI9HqOiBBm3Q" - }, - "href": "https://api.spotify.com/v1/episodes/6iRGwNvFSwTI9HqOiBBm3Q", - "id": "6iRGwNvFSwTI9HqOiBBm3Q", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Making a Tesla Boat - Safety Third 78", - "release_date": "2023-09-14", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6iRGwNvFSwTI9HqOiBBm3Q" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/47WR04AaApttNEboJu2KNi/clip_112400_166200.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4180609, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1OKJ9A9sAzEaZMLY8acimk" - }, - "href": "https://api.spotify.com/v1/episodes/1OKJ9A9sAzEaZMLY8acimk", - "id": "1OKJ9A9sAzEaZMLY8acimk", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Code Bullet - Safety Third 77", - "release_date": "2023-09-07", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1OKJ9A9sAzEaZMLY8acimk" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5gkFop1pjgx0xXfW2DVUyx/clip_3233500_3276950.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4458292, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2I1GcL68euLDaxLu3GU5AP" - }, - "href": "https://api.spotify.com/v1/episodes/2I1GcL68euLDaxLu3GU5AP", - "id": "2I1GcL68euLDaxLu3GU5AP", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Getting Rejected by MIT - Safety Third 76", - "release_date": "2023-08-24", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2I1GcL68euLDaxLu3GU5AP" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3lfGDKN1pQEWmbIGOhy1LB/clip_654000_709500.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5523905, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/23FWMozdgC4ypzyFJAew3Y" - }, - "href": "https://api.spotify.com/v1/episodes/23FWMozdgC4ypzyFJAew3Y", - "id": "23FWMozdgC4ypzyFJAew3Y", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "images": [ + { "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Nigel - Safety Third 75", - "release_date": "2023-06-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:23FWMozdgC4ypzyFJAew3Y" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/025H01XwvNUR1hb1NYDxeq/clip_3364300_3418700.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4153025, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4raWEAFTONzYXt8ghbvmNd" - }, - "href": "https://api.spotify.com/v1/episodes/4raWEAFTONzYXt8ghbvmNd", - "id": "4raWEAFTONzYXt8ghbvmNd", - "images": [ - { "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Mother's Day Podcast - Safety Third 74", - "release_date": "2023-06-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4raWEAFTONzYXt8ghbvmNd" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6mspxEDexuA9kIPyna334W/clip_1263600_1309800.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3716702, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/34dyUuqVHVxMdttDNHnxb8" - }, - "href": "https://api.spotify.com/v1/episodes/34dyUuqVHVxMdttDNHnxb8", - "id": "34dyUuqVHVxMdttDNHnxb8", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + { "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "We Got Moist! - Safety Third 73", - "release_date": "2023-06-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:34dyUuqVHVxMdttDNHnxb8" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2RVSMEeaQpVbg5qHU2L3Dq/clip_1919400_1968550.mp3", - "description": "Open Sauce tickets on sale NOW: https://opensauce.liveAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Open Sauce tickets on sale NOW: https://opensauce.live



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4187926, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/41IkE6whRLBBzZPLkvH67x" - }, - "href": "https://api.spotify.com/v1/episodes/41IkE6whRLBBzZPLkvH67x", - "id": "41IkE6whRLBBzZPLkvH67x", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Eating Illegal German Candy - Safety Third 72", - "release_date": "2023-04-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:41IkE6whRLBBzZPLkvH67x" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3FuVqnWa8kThFZ12UZSheQ/clip_2100834_2149100.mp3", - "description": "https://www.patreon.com/safetythirdAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

https://www.patreon.com/safetythird



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3597049, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3xH6uxYcVMKrajKi394Ii1" - }, - "href": "https://api.spotify.com/v1/episodes/3xH6uxYcVMKrajKi394Ii1", - "id": "3xH6uxYcVMKrajKi394Ii1", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + { "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Kevin's VRChat Mistake - Safety Third 71", - "release_date": "2023-04-14", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3xH6uxYcVMKrajKi394Ii1" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7l1ER6ZUqEMbW8maPjFTxs/clip_1775494_1836704.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYoutube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

Youtube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3905724, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1hNvtZECICRmbEjjFqgk3O" - }, - "href": "https://api.spotify.com/v1/episodes/1hNvtZECICRmbEjjFqgk3O", - "id": "1hNvtZECICRmbEjjFqgk3O", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Who Can Open Their Mouth the Biggest? - Safety Third 70", - "release_date": "2023-04-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1hNvtZECICRmbEjjFqgk3O" - } - ] - } + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD", + "total_episodes": 159, + "episodes": { + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=0&limit=50", + "limit": 50, + "next": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=50&limit=50", + "offset": 0, + "previous": null, + "total": 159, + "items": [ + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4iiYwCmm1Z7VQYxuYQjVLW/clip_134000_195840.mp3", + "description": "Don't back this Kickstarter: http://kck.st/4qBbxoEPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Don't back this Kickstarter: http://kck.st/4qBbxoE

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4749648, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3TFqlEpcxCgD118RdWy4l6" + }, + "href": "https://api.spotify.com/v1/episodes/3TFqlEpcxCgD118RdWy4l6", + "id": "3TFqlEpcxCgD118RdWy4l6", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Tried Making a Better Coke - Safety Third 158", + "release_date": "2026-02-19", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3TFqlEpcxCgD118RdWy4l6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/53aYZXFzw2WFuECEAKgC6m/clip_100000_165360.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069@WilliamOsman2\u2069\u2068@NileRed\u2069Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4190616, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7237hqixNa5Pa1bV5Pak2p" + }, + "href": "https://api.spotify.com/v1/episodes/7237hqixNa5Pa1bV5Pak2p", + "id": "7237hqixNa5Pa1bV5Pak2p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ae32a1a91e4974bf4cfe752a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fe32a1a91e4974bf4cfe752a1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68de32a1a91e4974bf4cfe752a1", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how long can we actually keep this up? - Safety Third 157", + "release_date": "2026-02-12", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7237hqixNa5Pa1bV5Pak2p" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QnEB6W3KCZjmozkmrMukR/clip_539000_607200.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5486976, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2X2dSrYifdwxzNA5I9YGpl" + }, + "href": "https://api.spotify.com/v1/episodes/2X2dSrYifdwxzNA5I9YGpl", + "id": "2X2dSrYifdwxzNA5I9YGpl", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "are you actually angry or just frustrated? - Safety Third 156", + "release_date": "2026-02-05", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2X2dSrYifdwxzNA5I9YGpl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4RDe7tNjpMBwAN4youDtBM/clip_1137000_1197600.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0\u2068@TheBackyardScientist\u2069\u00a0\u00a0\u2068@WilliamOsman2\u2069\u00a0\u00a0\u2068@NileRed\u2069\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0\u2068@TheBackyardScientist\u2069\u00a0

\u00a0\u2068@WilliamOsman2\u2069\u00a0

\u00a0\u2068@NileRed\u2069\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3047904, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2bA0hdVhjQOR4fwgYwfJK4" + }, + "href": "https://api.spotify.com/v1/episodes/2bA0hdVhjQOR4fwgYwfJK4", + "id": "2bA0hdVhjQOR4fwgYwfJK4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a8a97f0d163dfdc3020ddc6a4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f8a97f0d163dfdc3020ddc6a4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d8a97f0d163dfdc3020ddc6a4", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is your workshop just a storage unit? - Safety Third 155", + "release_date": "2026-01-29", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2bA0hdVhjQOR4fwgYwfJK4" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7GUYFFkecsDVlychEf2InD/clip_126000_182000.mp3", + "description": "Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUwPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUw


Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5867928, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5jg6DwBwVPbRtafX2bMXfW" + }, + "href": "https://api.spotify.com/v1/episodes/5jg6DwBwVPbRtafX2bMXfW", + "id": "5jg6DwBwVPbRtafX2bMXfW", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "He STOLE Coke's Secret Recipe - Safety Third 154", + "release_date": "2026-01-22", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5jg6DwBwVPbRtafX2bMXfW" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2uItv6ETouDgXk8HyWOWmk/clip_643061_703061.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5365080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7qu6i0NNgDSQy76Z3HRZ6S" + }, + "href": "https://api.spotify.com/v1/episodes/7qu6i0NNgDSQy76Z3HRZ6S", + "id": "7qu6i0NNgDSQy76Z3HRZ6S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c7f05ad6605e500a55302ee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c7f05ad6605e500a55302ee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c7f05ad6605e500a55302ee", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "RAM prices DESTROYED our computer builds- Safety Third 153", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7qu6i0NNgDSQy76Z3HRZ6S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1VvF0Vr5gU12RuTK53azWX/clip_612629_672629.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3635800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3uNZj71kjRvHqSfRhDuat3" + }, + "href": "https://api.spotify.com/v1/episodes/3uNZj71kjRvHqSfRhDuat3", + "id": "3uNZj71kjRvHqSfRhDuat3", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c9b586110f14bfebfc8d12e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c9b586110f14bfebfc8d12e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c9b586110f14bfebfc8d12e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Confessing Our Worst Childhood Pranks - Safety Third 152", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3uNZj71kjRvHqSfRhDuat3" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/73Q1vDOqBIDKeCjni7Vpwy/clip_160811_220811.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed2\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed2\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5826951, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6lhqiOpaAuxilP07sLfuV8" + }, + "href": "https://api.spotify.com/v1/episodes/6lhqiOpaAuxilP07sLfuV8", + "id": "6lhqiOpaAuxilP07sLfuV8", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c8e9118ee68825631a8a2fb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c8e9118ee68825631a8a2fb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c8e9118ee68825631a8a2fb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "I Survived PayMoneyWubby's 24-Hour Torture Stream (And Got PTSD) - Safety Third 151", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6lhqiOpaAuxilP07sLfuV8" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2DjgwqRBurO3mqxJnm4osk/clip_414947_474947.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4026932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4w4d295F7QwCCy2dCCIVoq" + }, + "href": "https://api.spotify.com/v1/episodes/4w4d295F7QwCCy2dCCIVoq", + "id": "4w4d295F7QwCCy2dCCIVoq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a1caeb53f42c57c5041db2e12", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f1caeb53f42c57c5041db2e12", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d1caeb53f42c57c5041db2e12", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how far back do we remember - Safety Third 150", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4w4d295F7QwCCy2dCCIVoq" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QfopdIgQr3fvuTLShkCSM/clip_382497_442497.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4417018, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2Xfuh9pem3qCEA5wWIE3mC" + }, + "href": "https://api.spotify.com/v1/episodes/2Xfuh9pem3qCEA5wWIE3mC", + "id": "2Xfuh9pem3qCEA5wWIE3mC", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a76337e64fb02e22fed37928f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f76337e64fb02e22fed37928f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d76337e64fb02e22fed37928f", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "even NileRed can\u2019t afford this - Safety Third 149", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2Xfuh9pem3qCEA5wWIE3mC" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0JqVmZxFWOHlCGeE1tOho5/clip_253651_313651.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4553012, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2zh1C31QQj9d4zddWtBX1N" + }, + "href": "https://api.spotify.com/v1/episodes/2zh1C31QQj9d4zddWtBX1N", + "id": "2zh1C31QQj9d4zddWtBX1N", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a1dea658e2ab066895d4cf5bd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f1dea658e2ab066895d4cf5bd", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d1dea658e2ab066895d4cf5bd", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Why Carbon Nanotubes Are Nearly Impossible to Make - Safety Third 148", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2zh1C31QQj9d4zddWtBX1N" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4aBKEjr3O0sk3Z1P71SuDu/clip_185387_245387.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3794181, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6ilVUUydSRAnaJvjjwNuzt" + }, + "href": "https://api.spotify.com/v1/episodes/6ilVUUydSRAnaJvjjwNuzt", + "id": "6ilVUUydSRAnaJvjjwNuzt", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a0860f82a32b6efecac503e1e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f0860f82a32b6efecac503e1e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d0860f82a32b6efecac503e1e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "solar is a scam - Safety Third 147", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6ilVUUydSRAnaJvjjwNuzt" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lQl1sOEbvAlGKMlAKXP4k/clip_621363_681363.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRedExtra\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRedExtra\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4410697, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4yYkLICPT4hwKiE12ahmaS" + }, + "href": "https://api.spotify.com/v1/episodes/4yYkLICPT4hwKiE12ahmaS", + "id": "4yYkLICPT4hwKiE12ahmaS", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "there's an infestation - Safety Third 146", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4yYkLICPT4hwKiE12ahmaS" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3Snl0NRM30ypAv7d983PTP/clip_124425_184425.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@TommyCallaway\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@TommyCallaway\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5904953, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/71lgHMUv6DqIPVSBR0lHIe" + }, + "href": "https://api.spotify.com/v1/episodes/71lgHMUv6DqIPVSBR0lHIe", + "id": "71lgHMUv6DqIPVSBR0lHIe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a8271d8dab008b881d45a7876", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f8271d8dab008b881d45a7876", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d8271d8dab008b881d45a7876", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how to make $100000 on youtube - Safety Third 145", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:71lgHMUv6DqIPVSBR0lHIe" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2UN4fJLpsEzfKbXTxpQ5uH/clip_499916_559916.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4753006, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/31Z5wPeZ2QF2ETpX94aTTz" + }, + "href": "https://api.spotify.com/v1/episodes/31Z5wPeZ2QF2ETpX94aTTz", + "id": "31Z5wPeZ2QF2ETpX94aTTz", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aced64cb5f44b398cf1cb0a93", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fced64cb5f44b398cf1cb0a93", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dced64cb5f44b398cf1cb0a93", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We SAVED Will's Farm - Safety Third 144", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:31Z5wPeZ2QF2ETpX94aTTz" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6U2QTlEN4ShUvdV67eRHy3/clip_454599_514599.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5129952, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/57IS2fYCmc0tRR1jtREKXp" + }, + "href": "https://api.spotify.com/v1/episodes/57IS2fYCmc0tRR1jtREKXp", + "id": "57IS2fYCmc0tRR1jtREKXp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aca97ae44e72b12aafb9d98b9", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fca97ae44e72b12aafb9d98b9", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dca97ae44e72b12aafb9d98b9", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Our Stupid Childhood Inventions - Safety Third 143", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:57IS2fYCmc0tRR1jtREKXp" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KbdRPVyErDuzNwZJ1yc1Z/clip_286965_346965.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4548284, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3m0ohH2FGgFIhyOLnbBc5D" + }, + "href": "https://api.spotify.com/v1/episodes/3m0ohH2FGgFIhyOLnbBc5D", + "id": "3m0ohH2FGgFIhyOLnbBc5D", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a07a2e7c0152f1061053d04f4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f07a2e7c0152f1061053d04f4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d07a2e7c0152f1061053d04f4", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "we're back again baby! - Safety Third 142", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3m0ohH2FGgFIhyOLnbBc5D" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2lkbJiYHRe2nK5BIB7ECUH/clip_430502_490502.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4619050, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3Djm1peAXhH2DJAcf5EI4t" + }, + "href": "https://api.spotify.com/v1/episodes/3Djm1peAXhH2DJAcf5EI4t", + "id": "3Djm1peAXhH2DJAcf5EI4t", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aed276654b59a905bfa8d3fdb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fed276654b59a905bfa8d3fdb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68ded276654b59a905bfa8d3fdb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How We Keep Getting Through TSA - Safety Third 141", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3Djm1peAXhH2DJAcf5EI4t" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0SDCE30uIy8sqTgtq2ZsFR/clip_259000_318000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5121048, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0RGDUnfGOJmsSgoTu6A9wb" + }, + "href": "https://api.spotify.com/v1/episodes/0RGDUnfGOJmsSgoTu6A9wb", + "id": "0RGDUnfGOJmsSgoTu6A9wb", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aaa7ca654e29007b236cf268a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1faa7ca654e29007b236cf268a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68daa7ca654e29007b236cf268a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "What happen to NileRed? - Safety Third 140", + "release_date": "2025-06-19", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0RGDUnfGOJmsSgoTu6A9wb" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2gFA17kTnwBG3krxcFt4O5/clip_430000_494640.mp3", + "description": "\ud83e\udd24Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

🤤



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3700631, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6hh4HTvEggU2CtulBw5Bfd" + }, + "href": "https://api.spotify.com/v1/episodes/6hh4HTvEggU2CtulBw5Bfd", + "id": "6hh4HTvEggU2CtulBw5Bfd", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a24544d9f88e8bea1c4a43541", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f24544d9f88e8bea1c4a43541", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d24544d9f88e8bea1c4a43541", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Gourmet or a Biohazard - Safety Third 139", + "release_date": "2025-06-05", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6hh4HTvEggU2CtulBw5Bfd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6z0N1CzQC5HUlD0vuCNdiu/clip_227000_289520.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6014520, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1pBmRheQbSnndzrsyQxcoO" + }, + "href": "https://api.spotify.com/v1/episodes/1pBmRheQbSnndzrsyQxcoO", + "id": "1pBmRheQbSnndzrsyQxcoO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a9f444dde32e222b2e0ea809a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f9f444dde32e222b2e0ea809a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d9f444dde32e222b2e0ea809a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Did It In 6 Days - Safety Third 138", + "release_date": "2025-05-29", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1pBmRheQbSnndzrsyQxcoO" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5v1lnveozYoewqMXszJCFZ/clip_442500_502500.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4768368, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4xxuGDc2mV6D4Ilv3Ok8dA" + }, + "href": "https://api.spotify.com/v1/episodes/4xxuGDc2mV6D4Ilv3Ok8dA", + "id": "4xxuGDc2mV6D4Ilv3Ok8dA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aa7871036b390d33b743dacf2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fa7871036b390d33b743dacf2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68da7871036b390d33b743dacf2", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "What's In Water?- Safety Third 137", + "release_date": "2025-05-15", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4xxuGDc2mV6D4Ilv3Ok8dA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7l2yrS8bujDB96ZesqAabR/clip_636000_702880.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5291760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0K68py3R90cjUQJiMJypoB" + }, + "href": "https://api.spotify.com/v1/episodes/0K68py3R90cjUQJiMJypoB", + "id": "0K68py3R90cjUQJiMJypoB", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a172a24c4cd98acaa6651f071", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f172a24c4cd98acaa6651f071", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d172a24c4cd98acaa6651f071", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Investigate the Bee Problem - Safety Third 136", + "release_date": "2025-05-08", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0K68py3R90cjUQJiMJypoB" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3M6RrQbRtxz4nSqTMI9WgH/clip_666000_726080.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5255231, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3NMwNuYdExWcYKmyml7Y9S" + }, + "href": "https://api.spotify.com/v1/episodes/3NMwNuYdExWcYKmyml7Y9S", + "id": "3NMwNuYdExWcYKmyml7Y9S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a94a8d4c84116774b11869dea", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f94a8d4c84116774b11869dea", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d94a8d4c84116774b11869dea", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Future of Science Videos... - Safety Third 135", + "release_date": "2025-05-01", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3NMwNuYdExWcYKmyml7Y9S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5aH5s1Jdc7ZECuh5Ur6S93/clip_358000_419240.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5718840, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1a77xkMaa0L6Ry7deZmX7C" + }, + "href": "https://api.spotify.com/v1/episodes/1a77xkMaa0L6Ry7deZmX7C", + "id": "1a77xkMaa0L6Ry7deZmX7C", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a2d89fc55b99736a3f0dc37d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f2d89fc55b99736a3f0dc37d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d2d89fc55b99736a3f0dc37d2", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Let's Do Dangerous Experiments - Safety Third 134", + "release_date": "2025-04-24", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1a77xkMaa0L6Ry7deZmX7C" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/17gOJyjGswQZ5vivGw6s7L/clip_1088000_1148200.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5144640, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7Iddb7fU6NQK4CVQzg8pRt" + }, + "href": "https://api.spotify.com/v1/episodes/7Iddb7fU6NQK4CVQzg8pRt", + "id": "7Iddb7fU6NQK4CVQzg8pRt", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a677a69719097ce8c3b30a8bc", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f677a69719097ce8c3b30a8bc", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d677a69719097ce8c3b30a8bc", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Getting Away with Crime - Safety Third 133", + "release_date": "2025-04-17", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7Iddb7fU6NQK4CVQzg8pRt" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0h4eqly7xNTOm9rMrfwjEw/clip_344000_407760.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4117583, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3GMMfTQFAKluh2ZCmDBq0B" + }, + "href": "https://api.spotify.com/v1/episodes/3GMMfTQFAKluh2ZCmDBq0B", + "id": "3GMMfTQFAKluh2ZCmDBq0B", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a3a79d75ad1e43fcd54120273", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f3a79d75ad1e43fcd54120273", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d3a79d75ad1e43fcd54120273", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is Bigger Better? - Safety Third 132", + "release_date": "2025-04-10", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3GMMfTQFAKluh2ZCmDBq0B" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29ABfx7S04owFtgqCxPK76/clip_482000_542360.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5034768, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1e0uQx6quq5Q8pGkBvmI4z" + }, + "href": "https://api.spotify.com/v1/episodes/1e0uQx6quq5Q8pGkBvmI4z", + "id": "1e0uQx6quq5Q8pGkBvmI4z", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We're Not Lovin\u2019 It - Safety Third 131 - Safety Third 131", + "release_date": "2025-04-03", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1e0uQx6quq5Q8pGkBvmI4z" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6mhkoYXxx9lm9Q0mmBulln/clip_100000_164040.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5616576, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/62DQPE6rzL6QubfVmc6wiJ" + }, + "href": "https://api.spotify.com/v1/episodes/62DQPE6rzL6QubfVmc6wiJ", + "id": "62DQPE6rzL6QubfVmc6wiJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a09dd0918e72f37f4e45e3484", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f09dd0918e72f37f4e45e3484", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d09dd0918e72f37f4e45e3484", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Space is Hard - Safety Third 130", + "release_date": "2025-03-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:62DQPE6rzL6QubfVmc6wiJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4XZFcfqSE1MGgKOOpsAouX/clip_585553_645553.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5608823, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5xbFenzg8j2MMvVSmUnlR2" + }, + "href": "https://api.spotify.com/v1/episodes/5xbFenzg8j2MMvVSmUnlR2", + "id": "5xbFenzg8j2MMvVSmUnlR2", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a390f4a4fd6167520cbe06250", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f390f4a4fd6167520cbe06250", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d390f4a4fd6167520cbe06250", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed\u2019s Childhood Trauma - Safety Third 129", + "release_date": "2025-03-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5xbFenzg8j2MMvVSmUnlR2" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0ZytdKQ7py9sner1Bh23f6/clip_261000_321880.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5331480, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2W8M0lrvTSd6HM4ByLbVBg" + }, + "href": "https://api.spotify.com/v1/episodes/2W8M0lrvTSd6HM4ByLbVBg", + "id": "2W8M0lrvTSd6HM4ByLbVBg", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac6b7e3a8e1c8b10906f82deb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc6b7e3a8e1c8b10906f82deb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc6b7e3a8e1c8b10906f82deb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is it good internship? - Safety Third 128", + "release_date": "2025-03-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2W8M0lrvTSd6HM4ByLbVBg" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3CphxvM8FnTjP1NR71NPtn/clip_151690_211690.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/





Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4423368, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1cbSydOSIAElmsZ2wG55YF" + }, + "href": "https://api.spotify.com/v1/episodes/1cbSydOSIAElmsZ2wG55YF", + "id": "1cbSydOSIAElmsZ2wG55YF", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ab618e09100a574e2410b8075", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fb618e09100a574e2410b8075", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68db618e09100a574e2410b8075", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Our best business idea yet - Safety Third 127", + "release_date": "2025-03-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1cbSydOSIAElmsZ2wG55YF" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2zwJ2nHFxrdBqVCklWH6rM/clip_615000_674000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5128248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7nkWaQCTwCl0Dy7KQzVKgJ" + }, + "href": "https://api.spotify.com/v1/episodes/7nkWaQCTwCl0Dy7KQzVKgJ", + "id": "7nkWaQCTwCl0Dy7KQzVKgJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aaeca1df66b68db2b6ae8eb55", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1faeca1df66b68db2b6ae8eb55", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68daeca1df66b68db2b6ae8eb55", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed - Safety Third 126", + "release_date": "2025-02-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7nkWaQCTwCl0Dy7KQzVKgJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4l0px7lf31GG4zv0VXUSxL/clip_268000_318000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5082240, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/316huXjTjaHz3sMZt77F2S" + }, + "href": "https://api.spotify.com/v1/episodes/316huXjTjaHz3sMZt77F2S", + "id": "316huXjTjaHz3sMZt77F2S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8adcf056832b32a240b38888fe", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fdcf056832b32a240b38888fe", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68ddcf056832b32a240b38888fe", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Hiding NSFW Material in Optical Illusions - Safety Third 125", + "release_date": "2025-02-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:316huXjTjaHz3sMZt77F2S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2KiZkHl0EHfdJnXsR5Q8Hy/clip_788000_848120.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3842933, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/70DaOV8Y2u28R5OCbMGq40" + }, + "href": "https://api.spotify.com/v1/episodes/70DaOV8Y2u28R5OCbMGq40", + "id": "70DaOV8Y2u28R5OCbMGq40", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How NileRed Almost Lost a Video - Safety Third 124", + "release_date": "2025-02-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:70DaOV8Y2u28R5OCbMGq40" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4JJ8gU3d9HSzVglb3Zq99R/clip_110000_169600.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4225946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7HmmkFKjEns2aALdxmBrRL" + }, + "href": "https://api.spotify.com/v1/episodes/7HmmkFKjEns2aALdxmBrRL", + "id": "7HmmkFKjEns2aALdxmBrRL", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Have Problems - Safety Third 123", + "release_date": "2025-02-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7HmmkFKjEns2aALdxmBrRL" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ESsCWp7leiVH7XQu4Yi2l/clip_311257_371257.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5018209, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/56kSgt0rYKVILw7IMjqi5S" + }, + "href": "https://api.spotify.com/v1/episodes/56kSgt0rYKVILw7IMjqi5S", + "id": "56kSgt0rYKVILw7IMjqi5S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Someone Keeps Pulling Money Out of His Bank Account - Safety Third 122", + "release_date": "2025-01-30", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:56kSgt0rYKVILw7IMjqi5S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1Uzu7dEcUjqdbAzsFEVFXy/clip_271000_331000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4313258, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4a1OnVZout7utVcxNJLDeA" + }, + "href": "https://api.spotify.com/v1/episodes/4a1OnVZout7utVcxNJLDeA", + "id": "4a1OnVZout7utVcxNJLDeA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed's Most Dangerous Machine - Safety Third 121", + "release_date": "2025-01-23", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4a1OnVZout7utVcxNJLDeA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/66Ml5is5EqhjI64imKtOpF/clip_489000_550040.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4364976, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3zrPDefh3l6bIswzU3KbkB" + }, + "href": "https://api.spotify.com/v1/episodes/3zrPDefh3l6bIswzU3KbkB", + "id": "3zrPDefh3l6bIswzU3KbkB", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "More Machines, More Problems - Safety Third 120", + "release_date": "2025-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3zrPDefh3l6bIswzU3KbkB" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" + }, + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "id": "3o0RYoo5iOMKSmEbunsbvW", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 90000 + }, + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6msRFio3561me28DofTad7/clip_570865_630865.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5690591, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj" + }, + "href": "https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj", + "id": "7CbsFHQq8ljztiUSGw46Fj", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Math Haters vs Math Nerd - Safety Third 118", + "release_date": "2024-07-18", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7CbsFHQq8ljztiUSGw46Fj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59kIitZiPVjT9KScqbQ4ud/clip_287735_347735.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5808720, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk" + }, + "href": "https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk", + "id": "7I6SU4lQbmxipsRNN5hGGk", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117", + "release_date": "2024-07-11", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7I6SU4lQbmxipsRNN5hGGk" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2bqHwGWLlsEMSNIg59Odlv/clip_135559_195559.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5290728, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe" + }, + "href": "https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe", + "id": "5RTOrKLydGUJxiebaBbEbe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed's Most Important Employee - Safety Third 116", + "release_date": "2024-07-04", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5RTOrKLydGUJxiebaBbEbe" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7uj2npDbrFuQ1HWLuPKeo5/clip_236465_296465.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6685800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0" + }, + "href": "https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0", + "id": "2cxiMfCIlOPiMQhsdRMKG0", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How Real Engineering Got Fired - Safety Third 115", + "release_date": "2024-06-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2cxiMfCIlOPiMQhsdRMKG0" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6iuiZ3W7DV0DUl9dvK5tF1/clip_439813_499813.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5509825, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR" + }, + "href": "https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR", + "id": "2jALMGr63flWEdRl8NxvQR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Thin Mint Zyns - Safety Third 114", + "release_date": "2024-06-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2jALMGr63flWEdRl8NxvQR" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0KgFGEHvoKXPBDVJurNrJA/clip_303096_363096.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2731702, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj" + }, + "href": "https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj", + "id": "0Rr3sI7wj3VaNQFPhalCVj", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Live from Open Sauce 2023 - Safety Third 113", + "release_date": "2024-06-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0Rr3sI7wj3VaNQFPhalCVj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7A38OhaLYIZK55NEw4BHQu/clip_552910_612910.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5192437, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4" + }, + "href": "https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4", + "id": "3XKOIVuGVzzEPNnlyz7PX4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "He Tried Hiring a Child Bartender - Safety Third 112", + "release_date": "2024-06-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3XKOIVuGVzzEPNnlyz7PX4" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0eTBmBv351dUpUjip2VOnB/clip_489832_549832.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4338191, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb" + }, + "href": "https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb", + "id": "5qGMPBYEW5Izdm9W5F7PSb", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Ted Nivison Has a Disgusting Keyboard - Safety Third 111", + "release_date": "2024-05-30", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5qGMPBYEW5Izdm9W5F7PSb" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3SEynoolqW895KB999YBU8/clip_433955_493955.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5367528, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq" + }, + "href": "https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq", + "id": "7G5CGTUvtSpLP67O4cYAWq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Worst Parts of Dating a Mad Scientist - Safety Third 110", + "release_date": "2024-05-23", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7G5CGTUvtSpLP67O4cYAWq" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0jxt3zWP6S5HHnMpoCtdNn/clip_452775_512775.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6502817, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p" + }, + "href": "https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p", + "id": "3cJk5Cfvpkrdf9hxY5Hi3p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Confronting His Old Boss - Safety Third 109", + "release_date": "2024-05-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p" + } + ] + } } diff --git a/tests/fixtures/show_episodes.json b/tests/fixtures/show_episodes.json index 48d7023..ad8c112 100644 --- a/tests/fixtures/show_episodes.json +++ b/tests/fixtures/show_episodes.json @@ -1,890 +1,1882 @@ { - "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=0&limit=20&locale=en-US,en;q%3D0.5", - "items": [ - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2O4OLlf7wsvLzCeUbNB3UK/clip_1204000_1256300.mp3", - "description": "The Great War of 2077 and how the Fallout world diverged from our own.Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecastBuy cool stuff and support the show!Fallout 76: https://amzn.to/3h99B3UFallout Cookbook: https://amzn.to/3aGjeodFallout Boardgame: https://amzn.to/2EgmBq3The Art of Fallout 4: https://amzn.to/3gfQST3Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zGFallout Funco Pop Figures: https://amzn.to/3gcYsOcLinks: Live Shows every Monday Night and game streams: twitch.tv/robotsradioFallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hubTalk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2117616, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU" - }, - "href": "https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU", - "html_description": "

The Great War of 2077 and how the Fallout world diverged from our own.

Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast

Buy cool stuff and support the show!

Fallout 76: https://amzn.to/3h99B3U

Fallout Cookbook: https://amzn.to/3aGjeod

Fallout Boardgame: https://amzn.to/2EgmBq3

The Art of Fallout 4: https://amzn.to/3gfQST3

Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG

Fallout Funco Pop Figures: https://amzn.to/3gcYsOc

Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio

Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub

Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3ssmxnilHYaKhwRWoBGMbU", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8af44e9ef63c2d6fb44cb0c9bf", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1ff44e9ef63c2d6fb44cb0c9bf", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68df44e9ef63c2d6fb44cb0c9bf", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Great War - Fallout Lorecast EP 1", - "release_date": "2019-01-09", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3ssmxnilHYaKhwRWoBGMbU" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0PGDORXTYiO2Til9131l6X/clip_310950_371500.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2376881, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03" - }, - "href": "https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1bbj9aqeeZ3UMUlcWN0S03", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a655b54a66471089d27dbb03f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f655b54a66471089d27dbb03f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d655b54a66471089d27dbb03f", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Who Dropped the First Bomb?", - "release_date": "2019-01-15", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1bbj9aqeeZ3UMUlcWN0S03" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0N5EO40BNQtEz6zjhFsbW6/clip_762300_807200.mp3", - "description": "The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2163252, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0" - }, - "href": "https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0", - "html_description": "

The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4zui8zWBisCfnTkZ1vgIc0", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac2181d67c5a5072353f70cc5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc2181d67c5a5072353f70cc5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc2181d67c5a5072353f70cc5", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault-Tec Corporation", - "release_date": "2019-01-22", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4zui8zWBisCfnTkZ1vgIc0" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5ypTLYoEXp2qOat0QB14M9/clip_295200_367000.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 499968, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF" - }, - "href": "https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "7wH4iaoceRIympxiLVZPHF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a7c3370eabc0c6db7b2936fe2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f7c3370eabc0c6db7b2936fe2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d7c3370eabc0c6db7b2936fe2", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 3 A Fiendish Finish", - "release_date": "2019-01-24", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7wH4iaoceRIympxiLVZPHF" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6Mn9KUpeg00hZ11xvnp8Pu/clip_586200_651600.mp3", - "description": "The lore behind Vault 8 and Vault City. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 713586, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl" - }, - "href": "https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl", - "html_description": "

The lore behind Vault 8 and Vault City. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4Z2MUOz9GBHzHsEIAc5Ltl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab3e39f9b402368fc2698dedb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb3e39f9b402368fc2698dedb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db3e39f9b402368fc2698dedb", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 8 & Vault City", - "release_date": "2019-01-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3L2qzz2eb1IzQE0FJtl3So/clip_1584700_1652600.mp3", - "description": "The origins of the Brotherhood of Steel and Roger Maxson. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2211631, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V" - }, - "href": "https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V", - "html_description": "

The origins of the Brotherhood of Steel and Roger Maxson. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "24IzdUok36xLkgQEjOjS6V", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a7cc679b360d6c0b7088890c5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f7cc679b360d6c0b7088890c5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d7cc679b360d6c0b7088890c5", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Brotherhood of Steel (Origin)", - "release_date": "2019-01-28", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:24IzdUok36xLkgQEjOjS6V" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5uUtfiFrXSmP7c0TxhE3Rm/clip_454900_514100.mp3", - "description": "The lore behind Vault 11 and the dilemma of self-preservation versus morality. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 737593, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX" - }, - "href": "https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX", - "html_description": "

The lore behind Vault 11 and the dilemma of self-preservation versus morality. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "6fUziggVu74s6JwZ0lsIjX", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a302e925456f7ac2727bc1d63", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f302e925456f7ac2727bc1d63", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d302e925456f7ac2727bc1d63", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 11 The Sacrifice", - "release_date": "2019-01-31", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6fUziggVu74s6JwZ0lsIjX" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6ALp31KeoyF99qnSC0bnwP/clip_307200_365000.mp3", - "description": "The lore behind Vault 12 and the origins of a ghoulish city. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 529606, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx" - }, - "href": "https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx", - "html_description": "

The lore behind Vault 12 and the origins of a ghoulish city. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1pYEeMveLHGbbIo10G34dx", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3e610ca700324f3bef0a48cc", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3e610ca700324f3bef0a48cc", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3e610ca700324f3bef0a48cc", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 12 A Ghoulish Experience", - "release_date": "2019-02-02", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1pYEeMveLHGbbIo10G34dx" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0C9ff8UGuNmSgJ3HbWhMRN/clip_1536400_1588550.mp3", - "description": "The origins and ideology of the Enclave. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1996538, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl" - }, - "href": "https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl", - "html_description": "

The origins and ideology of the Enclave. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1h69SINnBwMCqfEXjPAVIl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a848643fae2be31bac82cc05a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f848643fae2be31bac82cc05a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d848643fae2be31bac82cc05a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "The Enclave (Origin)", - "release_date": "2019-02-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1h69SINnBwMCqfEXjPAVIl" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0AYDYfGlCTAVLJUEaiggyy/clip_734450_782400.mp3", - "description": "The lore behind Vault 13 and an invasion by intelligent deathclaws. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 930638, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO" - }, - "href": "https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO", - "html_description": "

The lore behind Vault 13 and an invasion by intelligent deathclaws. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "33UquUg4oftJ4ereH4nrNO", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a87fd9a8d362fd30aaab4e9d5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f87fd9a8d362fd30aaab4e9d5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d87fd9a8d362fd30aaab4e9d5", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 13 & Intelligent Deathclaws", - "release_date": "2019-02-07", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:33UquUg4oftJ4ereH4nrNO" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5qA3U8POTyVLtrcyZULbCs/clip_563900_618800.mp3", - "description": "Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show. Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2282187, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er" - }, - "href": "https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er", - "html_description": "

Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show. Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5nkbQDDCKSH4CwYalm62er", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "[SNEAK PEEK] - Elder Scrolls Lorecast First Episode", - "release_date": "2019-02-11", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5nkbQDDCKSH4CwYalm62er" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5NWGfkeWYPfLHOqtZWi3T4/clip_2174788_2232762.mp3", - "description": "Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4648594, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ" - }, - "href": "https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ", - "html_description": "

Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "18tLLTavfPIPoJxau3xDQJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a28474d982684a3bd43d68198", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f28474d982684a3bd43d68198", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d28474d982684a3bd43d68198", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Power Armor w/ Duke from Out of the Vault", - "release_date": "2019-02-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:18tLLTavfPIPoJxau3xDQJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0HBrSsJ1Z073A9OqxEzQfS/clip_362300_410000.mp3", - "description": "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 716591, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm" - }, - "href": "https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm", - "html_description": "

The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1EQ6z4eaCRs6kJeVXjWIcm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a7d1afb3118607dba3602faff", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f7d1afb3118607dba3602faff", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d7d1afb3118607dba3602faff", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 15 The Origin of The Khans", - "release_date": "2019-02-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1sa5nDUBgakALt6SSJHw1f/clip_387600_449450.mp3", - "description": "In this episode, we discuss the origin, research, and importance of West Tek. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2103248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn" - }, - "href": "https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn", - "html_description": "

In this episode, we discuss the origin, research, and importance of West Tek. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5ia7J0CaNRhuxsB0yVxdcn", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8af2608bb76816d3baffba9fd1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1ff2608bb76816d3baffba9fd1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68df2608bb76816d3baffba9fd1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "West Tek - FEV & Power Armor", - "release_date": "2019-02-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5ia7J0CaNRhuxsB0yVxdcn" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6Tw1tZqW6owjO74bDIrGI6/clip_471100_549400.mp3", - "description": "In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 786625, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V" - }, - "href": "https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V", - "html_description": "

In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1rzpxakE5YSwvSX6rXlG1V", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a7f0006d898957db4dacc948b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f7f0006d898957db4dacc948b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d7f0006d898957db4dacc948b", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 19 Red vs Blue (or On Tribalism)", - "release_date": "2019-02-25", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1rzpxakE5YSwvSX6rXlG1V" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2p7VgDrRBXBRkOQTeKnoSk/clip_457300_517115.mp3", - "description": "Super Mutants. Nuff said. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2156747, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV" - }, - "href": "https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV", - "html_description": "

Super Mutants. Nuff said. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1PI4CPzbfD5HFEMWlaNQAV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a30f58504d487e1f3bb5a9595", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f30f58504d487e1f3bb5a9595", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d30f58504d487e1f3bb5a9595", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Super Mutants", - "release_date": "2019-02-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1PI4CPzbfD5HFEMWlaNQAV" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/25oWNJeJgArtHjwKZHDbLi/clip_1135685_1189735.mp3", - "description": "Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2779715, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6" - }, - "href": "https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6", - "html_description": "

Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4CZKdqqXWP5ez2rOzT5eL6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a9c2656a3e5f340dfa5f7e82c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f9c2656a3e5f340dfa5f7e82c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d9c2656a3e5f340dfa5f7e82c", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "West Virginia and Fallout 76 w/ Dave from Vault Boys WV", - "release_date": "2019-03-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4CZKdqqXWP5ez2rOzT5eL6" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/77KkRvNXx3ijVZI48Y4syV/clip_1014450_1064800.mp3", - "description": "This episode we discuss Ghouls! Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2051500, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj" - }, - "href": "https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj", - "html_description": "

This episode we discuss Ghouls! Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1SOZlOQl3FYwatj6Zvfrsj", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3a68fdbc55e15ba2b6a720b6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3a68fdbc55e15ba2b6a720b6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3a68fdbc55e15ba2b6a720b6", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Ghouls!", - "release_date": "2019-03-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1SOZlOQl3FYwatj6Zvfrsj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/16tB6P4M27YKbKgSrJC7iy/clip_1728000_1778800.mp3", - "description": "Vault 21, where everything was determined randomly. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1923134, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA" - }, - "href": "https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA", - "html_description": "

Vault 21, where everything was determined randomly. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "16hX5oaM52mREneUOHdBiA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a605e65537b9b382e2161d602", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f605e65537b9b382e2161d602", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d605e65537b9b382e2161d602", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Vault 21 - A Roll of the Dice", - "release_date": "2019-03-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:16hX5oaM52mREneUOHdBiA" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0Yl9WsFCwR3Ar6fp8XBkvX/clip_1135650_1183000.mp3", - "description": "This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Bandai Namco: unknown9.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2674024, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS" - }, - "href": "https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS", - "html_description": "

This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Sponsors: Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others: https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam: Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Bandai Namco: unknown9.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2qvIReQpMaGK9OEeuW47VS", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2a75dc2b800ef5d83571ac27", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2a75dc2b800ef5d83571ac27", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2a75dc2b800ef5d83571ac27", - "width": 64 + "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=0&limit=48", + "items": [ + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ZMPQqrY7A7LNKI7dwuGil/clip_452960_512960.mp3", + "description": "The Great War of 2077 and how the Fallout world diverged from our own. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2193893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU" + }, + "href": "https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU", + "html_description": "

The Great War of 2077 and how the Fallout world diverged from our own.

Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3ssmxnilHYaKhwRWoBGMbU", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a224b816136e4325c58a7c15b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f224b816136e4325c58a7c15b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d224b816136e4325c58a7c15b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Great War - Fallout Lorecast EP 1", + "release_date": "2019-01-09", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3ssmxnilHYaKhwRWoBGMbU" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dnqUE3bfxuhGmFbMPogR5/clip_183364_243364.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2472333, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03" + }, + "href": "https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1bbj9aqeeZ3UMUlcWN0S03", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a60efcce283f3eebea03b01", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a60efcce283f3eebea03b01", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a60efcce283f3eebea03b01", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Who Dropped the First Bomb?", + "release_date": "2019-01-15", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1bbj9aqeeZ3UMUlcWN0S03" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29Xq81kppwk8whpFIdUFrM/clip_384506_444506.mp3", + "description": "The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2263640, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0" + }, + "href": "https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0", + "html_description": "

The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4zui8zWBisCfnTkZ1vgIc0", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a15b2cb1cf646a9b161d1226b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f15b2cb1cf646a9b161d1226b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d15b2cb1cf646a9b161d1226b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault-Tec Corporation", + "release_date": "2019-01-22", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4zui8zWBisCfnTkZ1vgIc0" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2Gl0P5Eit50XryFyCAGwG5/clip_202281_262281.mp3", + "description": "Most of the vaults are terrible, this one is ghoulish.Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 520044, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF" + }, + "href": "https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF", + "html_description": "

Most of the vaults are terrible, this one is ghoulish.

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "7wH4iaoceRIympxiLVZPHF", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aace3770451596db4137aa9e5", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1face3770451596db4137aa9e5", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dace3770451596db4137aa9e5", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 3 A Fiendish Finish", + "release_date": "2019-01-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:7wH4iaoceRIympxiLVZPHF" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/615513Vr8mT2vIfzKyE07J/clip_652466_712466.mp3", + "description": "The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 814027, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl" + }, + "href": "https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl", + "html_description": "

The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4Z2MUOz9GBHzHsEIAc5Ltl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a13d0eefc4d146b76eea15d67", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f13d0eefc4d146b76eea15d67", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d13d0eefc4d146b76eea15d67", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 8 & Vault City", + "release_date": "2019-01-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1IU4s7yN8BguHeSYGtsVhN/clip_132961_192961.mp3", + "description": "The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2312124, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V" + }, + "href": "https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V", + "html_description": "

The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "24IzdUok36xLkgQEjOjS6V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a0c6fc7fba3ac1ee8579693db", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f0c6fc7fba3ac1ee8579693db", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d0c6fc7fba3ac1ee8579693db", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Brotherhood of Steel (Origin)", + "release_date": "2019-01-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:24IzdUok36xLkgQEjOjS6V" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3U6ehsNGxMpR6NppP8Sv1t/clip_404185_464185.mp3", + "description": "The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 833097, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX" + }, + "href": "https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX", + "html_description": "

The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "6fUziggVu74s6JwZ0lsIjX", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a177e9739e349a411d3feaeb8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f177e9739e349a411d3feaeb8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d177e9739e349a411d3feaeb8", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 11 The Sacrifice", + "release_date": "2019-01-31", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:6fUziggVu74s6JwZ0lsIjX" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5t7Bbh0PeOT51HG8TKU6d2/clip_131424_191424.mp3", + "description": "The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 549668, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx" + }, + "href": "https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx", + "html_description": "

The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1pYEeMveLHGbbIo10G34dx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac219ed826eed5a53e8630fd1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc219ed826eed5a53e8630fd1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc219ed826eed5a53e8630fd1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 12 A Ghoulish Experience", + "release_date": "2019-02-02", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1pYEeMveLHGbbIo10G34dx" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2MmgcnXeIBQbYGvS6U77Oa/clip_178564_238564.mp3", + "description": "The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2096979, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl" + }, + "href": "https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl", + "html_description": "

The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1h69SINnBwMCqfEXjPAVIl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a8bc610b5319ed5d7174131af", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f8bc610b5319ed5d7174131af", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d8bc610b5319ed5d7174131af", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Origin of the Enclave", + "release_date": "2019-02-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1h69SINnBwMCqfEXjPAVIl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KWEyZ1ucu9JBOUOBwJxYp/clip_147647_207647.mp3", + "description": "The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1026089, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO" + }, + "href": "https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO", + "html_description": "

The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "33UquUg4oftJ4ereH4nrNO", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a409536212a26657ac7eefa5a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f409536212a26657ac7eefa5a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d409536212a26657ac7eefa5a", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 13 & Intelligent Deathclaws", + "release_date": "2019-02-07", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:33UquUg4oftJ4ereH4nrNO" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3bEayi2Mx8F1bq2dFbzLSv/clip_417827_477827.mp3", + "description": "Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2362592, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er" + }, + "href": "https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er", + "html_description": "

Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5nkbQDDCKSH4CwYalm62er", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "[SNEAK PEEK] - Elder Scrolls Lorecast First Episode", + "release_date": "2019-02-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5nkbQDDCKSH4CwYalm62er" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4Mave1BG7EHeU0qq1twtAn/clip_459968_519968.mp3", + "description": "Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4749139, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ" + }, + "href": "https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ", + "html_description": "

Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "18tLLTavfPIPoJxau3xDQJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ae51cfa015cbd544a002bccbe", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fe51cfa015cbd544a002bccbe", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68de51cfa015cbd544a002bccbe", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Power Armor w/ Duke from Out of the Vault", + "release_date": "2019-02-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:18tLLTavfPIPoJxau3xDQJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7fz7lIYIOwji5rAzsPnPLl/clip_149474_209474.mp3", + "description": "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 806974, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm" + }, + "href": "https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm", + "html_description": "

The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1EQ6z4eaCRs6kJeVXjWIcm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5ec46a0a8e2a9bd2da0ff0ed", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5ec46a0a8e2a9bd2da0ff0ed", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5ec46a0a8e2a9bd2da0ff0ed", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 15 The Origin of The Khans", + "release_date": "2019-02-16", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/13AFXYxT2YCrDCMzgN2jh8/clip_437695_497695.mp3", + "description": "In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2198700, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn" + }, + "href": "https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn", + "html_description": "

In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5ia7J0CaNRhuxsB0yVxdcn", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ad78d04bb088afb0a28507ae3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fd78d04bb088afb0a28507ae3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dd78d04bb088afb0a28507ae3", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "West Tek - FEV & Power Armor", + "release_date": "2019-02-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5ia7J0CaNRhuxsB0yVxdcn" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/513rEkpn7WJz0Htlf4U1mW/clip_264594_324594.mp3", + "description": "In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 882076, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V" + }, + "href": "https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V", + "html_description": "

In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1rzpxakE5YSwvSX6rXlG1V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aff81331e3ff9b334529acf3d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fff81331e3ff9b334529acf3d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dff81331e3ff9b334529acf3d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 19 Red vs Blue (or On Tribalism)", + "release_date": "2019-02-25", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1rzpxakE5YSwvSX6rXlG1V" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7E5XBMlZJ1xDCikgXyFWD9/clip_417053_477053.mp3", + "description": "Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2252251, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV" + }, + "href": "https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV", + "html_description": "

Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1PI4CPzbfD5HFEMWlaNQAV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac6f34f6430f9c4a3ad47c295", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc6f34f6430f9c4a3ad47c295", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc6f34f6430f9c4a3ad47c295", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Super Mutants", + "release_date": "2019-02-27", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1PI4CPzbfD5HFEMWlaNQAV" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59AarJkmlwPHocAqoRzmjL/clip_506150_566150.mp3", + "description": "Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2875219, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6" + }, + "href": "https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6", + "html_description": "

Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4CZKdqqXWP5ez2rOzT5eL6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a671b875905fa85a37794e728", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f671b875905fa85a37794e728", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d671b875905fa85a37794e728", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "West Virginia and Fallout 76 w/ Dave from Vault Boys WV", + "release_date": "2019-03-06", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4CZKdqqXWP5ez2rOzT5eL6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4uCmQqEm9FvkGJde3XNGq3/clip_499141_559141.mp3", + "description": "This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2147004, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj" + }, + "href": "https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj", + "html_description": "

This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1SOZlOQl3FYwatj6Zvfrsj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a231f303240fb4cff66631727", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f231f303240fb4cff66631727", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d231f303240fb4cff66631727", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Ghouls!", + "release_date": "2019-03-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1SOZlOQl3FYwatj6Zvfrsj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/10pW151AvQJo91XBk3nhOv/clip_491656_551656.mp3", + "description": "Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2028669, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA" + }, + "href": "https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA", + "html_description": "

Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "16hX5oaM52mREneUOHdBiA", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3b1dde4fdcf1bd80837f188d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3b1dde4fdcf1bd80837f188d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3b1dde4fdcf1bd80837f188d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 21 - A Roll of the Dice", + "release_date": "2019-03-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:16hX5oaM52mREneUOHdBiA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3VLKYxi0uNf6K5jvCWQKZe/clip_192390_252390.mp3", + "description": "This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2764538, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS" + }, + "href": "https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS", + "html_description": "

This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2qvIReQpMaGK9OEeuW47VS", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a96e9fbfd524c6a0c883d9600", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f96e9fbfd524c6a0c883d9600", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d96e9fbfd524c6a0c883d9600", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Deathclaws", + "release_date": "2019-03-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2qvIReQpMaGK9OEeuW47VS" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/674KUlwHqUgINDmE1ktTSH/clip_169257_229257.mp3", + "description": "How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2129684, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3zEdqLh9PXFGCKAdvZcVPa" + }, + "href": "https://api.spotify.com/v1/episodes/3zEdqLh9PXFGCKAdvZcVPa", + "html_description": "

How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3zEdqLh9PXFGCKAdvZcVPa", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a2b2c2191341a700f6357f5", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a2b2c2191341a700f6357f5", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a2b2c2191341a700f6357f5", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 22 - Fungus Zombies", + "release_date": "2019-04-03", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3zEdqLh9PXFGCKAdvZcVPa" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/33k0bqpfn2GmKl1EFtbiYm/clip_356761_416761.mp3", + "description": "How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4128705, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2tTa25CiLYBnlJtYc2B5Mj" + }, + "href": "https://api.spotify.com/v1/episodes/2tTa25CiLYBnlJtYc2B5Mj", + "html_description": "

How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2tTa25CiLYBnlJtYc2B5Mj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2bf6dc2d6838fab7ab17e223", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2bf6dc2d6838fab7ab17e223", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2bf6dc2d6838fab7ab17e223", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Movie Influences w/ Stuart from Committee Quest", + "release_date": "2019-04-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2tTa25CiLYBnlJtYc2B5Mj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6AiDmRa0IIvAzEjFKuE0Kf/clip_590064_650064.mp3", + "description": "The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2118086, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4Tyt0Prd9yqd2vv4wC1TJE" + }, + "href": "https://api.spotify.com/v1/episodes/4Tyt0Prd9yqd2vv4wC1TJE", + "html_description": "

The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4Tyt0Prd9yqd2vv4wC1TJE", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aaf31ef37c37e6cdc2262e0cb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1faf31ef37c37e6cdc2262e0cb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68daf31ef37c37e6cdc2262e0cb", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The New California Republic (NCR)", + "release_date": "2019-04-17", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4Tyt0Prd9yqd2vv4wC1TJE" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1jpHL9hopn1ql3h84em1qI/clip_478118_538118.mp3", + "description": "Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1838393, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2N9dQBdUq02DWnZ7NalLGv" + }, + "href": "https://api.spotify.com/v1/episodes/2N9dQBdUq02DWnZ7NalLGv", + "html_description": "

Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2N9dQBdUq02DWnZ7NalLGv", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3bbb6db2291ce62d8e50e6cf", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3bbb6db2291ce62d8e50e6cf", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3bbb6db2291ce62d8e50e6cf", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Extra Episode - Generational Perspectives w/ Tom's Daughter Laney", + "release_date": "2019-04-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2N9dQBdUq02DWnZ7NalLGv" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1B7LR09SzOeCKeJ1nSisFz/clip_232334_292334.mp3", + "description": "What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1894478, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7sTC5e0OLOn1e164IRsoUH" + }, + "href": "https://api.spotify.com/v1/episodes/7sTC5e0OLOn1e164IRsoUH", + "html_description": "

What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "7sTC5e0OLOn1e164IRsoUH", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a52c5396a2915758428a83fbb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f52c5396a2915758428a83fbb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d52c5396a2915758428a83fbb", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Fallout Bible & Vault 27", + "release_date": "2019-04-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:7sTC5e0OLOn1e164IRsoUH" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1FCDxILnIZHfeeJHj5KpCo/clip_142855_202855.mp3", + "description": "Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 831451, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4hkn51b92Zss7v41zODTHV" + }, + "href": "https://api.spotify.com/v1/episodes/4hkn51b92Zss7v41zODTHV", + "html_description": "

Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4hkn51b92Zss7v41zODTHV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8af3df1626a78fac918e9c928e", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1ff3df1626a78fac918e9c928e", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68df3df1626a78fac918e9c928e", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Robots Thoughts - Safest Place During Nuclear Fallout", + "release_date": "2019-04-27", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4hkn51b92Zss7v41zODTHV" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5f3X21w0sDwecfDILNhWFO/clip_177316_237316.mp3", + "description": "What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2550804, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yQIvJJLlJMphCsGMqAcPk" + }, + "href": "https://api.spotify.com/v1/episodes/1yQIvJJLlJMphCsGMqAcPk", + "html_description": "

What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1yQIvJJLlJMphCsGMqAcPk", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a143949ea0c4c48ee398a2f84", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f143949ea0c4c48ee398a2f84", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d143949ea0c4c48ee398a2f84", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Synths & The Institute", + "release_date": "2019-05-01", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1yQIvJJLlJMphCsGMqAcPk" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1oOFshFO0CVzi3QUMyLcP4/clip_543693_603693.mp3", + "description": "A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2160404, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/69MYgP6oCkzkcwXZjBYkCp" + }, + "href": "https://api.spotify.com/v1/episodes/69MYgP6oCkzkcwXZjBYkCp", + "html_description": "

A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "69MYgP6oCkzkcwXZjBYkCp", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a8a4ef3ed09c6169d6f23bfff", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f8a4ef3ed09c6169d6f23bfff", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d8a4ef3ed09c6169d6f23bfff", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Derek Greenway, Vault 29, Twin Mothers & The Goddess Diana", + "release_date": "2019-05-08", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:69MYgP6oCkzkcwXZjBYkCp" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3P5BCmuFZZ1cCxFReOWCtj/clip_509707_569707.mp3", + "description": "A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2430223, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/67FIGQqDzfYVrXOoPMrQge" + }, + "href": "https://api.spotify.com/v1/episodes/67FIGQqDzfYVrXOoPMrQge", + "html_description": "

A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "67FIGQqDzfYVrXOoPMrQge", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8adee8b3a349e65a704ec081f2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fdee8b3a349e65a704ec081f2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68ddee8b3a349e65a704ec081f2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout: A Post Nuclear Role Playing Game - A Recap of Fallout 1", + "release_date": "2019-05-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:67FIGQqDzfYVrXOoPMrQge" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3h1CaMJCD0IFLSisLJzzsC/clip_433092_493092.mp3", + "description": "What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2052571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4e4V4bLrK56k996hd2oPUo" + }, + "href": "https://api.spotify.com/v1/episodes/4e4V4bLrK56k996hd2oPUo", + "html_description": "

What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4e4V4bLrK56k996hd2oPUo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a0b647fbec32544ce2d4eac1b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f0b647fbec32544ce2d4eac1b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d0b647fbec32544ce2d4eac1b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 34, Boomers & a Pulse Rifle", + "release_date": "2019-05-29", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4e4V4bLrK56k996hd2oPUo" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1icAMgzGw40UTMZogcEFNz/clip_172139_232139.mp3", + "description": "Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3112228, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1XhqJdNSG4odYRhtH8G6nJ" + }, + "href": "https://api.spotify.com/v1/episodes/1XhqJdNSG4odYRhtH8G6nJ", + "html_description": "

Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1XhqJdNSG4odYRhtH8G6nJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab4343aace50ee621af668691", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb4343aace50ee621af668691", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db4343aace50ee621af668691", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Mr Handy Line of Robots", + "release_date": "2019-06-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1XhqJdNSG4odYRhtH8G6nJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6UOiTaXUelyxAmPy0ri7rc/clip_462757_522757.mp3", + "description": "Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4420466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1WQVLB4QRJj4QKZ4z1RRhr" + }, + "href": "https://api.spotify.com/v1/episodes/1WQVLB4QRJj4QKZ4z1RRhr", + "html_description": "

Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1WQVLB4QRJj4QKZ4z1RRhr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3f66f4de0e3b85f69b2d0092", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3f66f4de0e3b85f69b2d0092", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3f66f4de0e3b85f69b2d0092", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Bethesda E3 2019 w/ Jameson from The DL", + "release_date": "2019-06-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1WQVLB4QRJj4QKZ4z1RRhr" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3hXn3LiOepTXswCkiRogl2/clip_0_60000.mp3", + "description": "A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2413217, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/394kPEIAQCUgZCw48L4zae" + }, + "href": "https://api.spotify.com/v1/episodes/394kPEIAQCUgZCw48L4zae", + "html_description": "

A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "394kPEIAQCUgZCw48L4zae", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a82acca7a8cf9e7c32dd33bc7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f82acca7a8cf9e7c32dd33bc7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d82acca7a8cf9e7c32dd33bc7", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Fallout RPG Play Instructions", + "release_date": "2019-06-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:394kPEIAQCUgZCw48L4zae" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4zo4oiGxqAGWjryjaBwnGs/clip_434147_494147.mp3", + "description": "These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1768359, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4eM1aVDBA5eMyrXD0ymk0w" + }, + "href": "https://api.spotify.com/v1/episodes/4eM1aVDBA5eMyrXD0ymk0w", + "html_description": "

These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4eM1aVDBA5eMyrXD0ymk0w", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a25115c8baee2b48ed33d245f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f25115c8baee2b48ed33d245f", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d25115c8baee2b48ed33d245f", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities - 36, 42, 43", + "release_date": "2019-06-19", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4eM1aVDBA5eMyrXD0ymk0w" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4oqhrOVT8OcXTARawk5XRi/clip_426370_486370.mp3", + "description": "The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2481031, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3B4iAXTy5LHvMwNHSzYMRu" + }, + "href": "https://api.spotify.com/v1/episodes/3B4iAXTy5LHvMwNHSzYMRu", + "html_description": "

The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3B4iAXTy5LHvMwNHSzYMRu", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aaa912f37a83111b4f8038dc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1faa912f37a83111b4f8038dc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68daa912f37a83111b4f8038dc1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout 2 Recap & Details", + "release_date": "2019-06-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3B4iAXTy5LHvMwNHSzYMRu" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QYGjgIoyhm83eR7DUQni0/clip_163978_223978.mp3", + "description": "More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net Our Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2313900, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6fp6VYhWvDTc627nhRcY34" + }, + "href": "https://api.spotify.com/v1/episodes/6fp6VYhWvDTc627nhRcY34", + "html_description": "

More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast

Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM

Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "6fp6VYhWvDTc627nhRcY34", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a080c23afb045d70c6f5b14d2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f080c23afb045d70c6f5b14d2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d080c23afb045d70c6f5b14d2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities 2 - 53, 55, 56", + "release_date": "2019-07-03", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:6fp6VYhWvDTc627nhRcY34" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/30gt9ujJ23p5Qac4J7LyiG/clip_395357_455357.mp3", + "description": "Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3289338, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0MldixXFwkWY2EPNX8J1U9" + }, + "href": "https://api.spotify.com/v1/episodes/0MldixXFwkWY2EPNX8J1U9", + "html_description": "

Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "0MldixXFwkWY2EPNX8J1U9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa1c2d6a9cf1dc66c9e3dfc8d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa1c2d6a9cf1dc66c9e3dfc8d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da1c2d6a9cf1dc66c9e3dfc8d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout 76 Update w/ Toon", + "release_date": "2019-07-17", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:0MldixXFwkWY2EPNX8J1U9" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5KrPsxdfcoa2pCRBHFWI50/clip_177414_237414.mp3", + "description": "Too many men? Too many women? Not enough... pants?\u00a0 Become a patron! https://patreon.com/falloutlorecast Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2086555, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3L5KhEbyCRaBSeYcE6naD6" + }, + "href": "https://api.spotify.com/v1/episodes/3L5KhEbyCRaBSeYcE6naD6", + "html_description": "

Too many men? Too many women? Not enough... pants?\u00a0

Become a patron! https://patreon.com/falloutlorecast

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3L5KhEbyCRaBSeYcE6naD6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa3f242bdb73a658e2c7106d8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa3f242bdb73a658e2c7106d8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da3f242bdb73a658e2c7106d8", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities 3 - 68, 69, 70", + "release_date": "2019-07-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3L5KhEbyCRaBSeYcE6naD6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/173fF8LRsjiMYfDlBqyVFO/clip_143332_203332.mp3", + "description": "Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3471281, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3iA0ZfSQpzR7zGzI5SpNgx" + }, + "href": "https://api.spotify.com/v1/episodes/3iA0ZfSQpzR7zGzI5SpNgx", + "html_description": "

Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3iA0ZfSQpzR7zGzI5SpNgx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa901fc638a1c1da08b6bbada", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa901fc638a1c1da08b6bbada", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da901fc638a1c1da08b6bbada", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Which Fallout 4 Faction was \"Right\" w/ Patron Guests Kryptex & Mustang", + "release_date": "2019-07-31", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3iA0ZfSQpzR7zGzI5SpNgx" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3aC748UISaCSNNB06EE64F/clip_371355_431355.mp3", + "description": "Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2389838, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5OD0lEvUHg0BkNL3V1Stpg" + }, + "href": "https://api.spotify.com/v1/episodes/5OD0lEvUHg0BkNL3V1Stpg", + "html_description": "

Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5OD0lEvUHg0BkNL3V1Stpg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8abb35f07556cdd2c8e5628194", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fbb35f07556cdd2c8e5628194", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dbb35f07556cdd2c8e5628194", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault City - Fallout 2 Factions", + "release_date": "2019-08-07", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5OD0lEvUHg0BkNL3V1Stpg" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lNoGzZ7idbXP4TydKReRL/clip_141796_201796.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1839386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1p1GiQSxFSvkcS3BdXNZM9" + }, + "href": "https://api.spotify.com/v1/episodes/1p1GiQSxFSvkcS3BdXNZM9", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1p1GiQSxFSvkcS3BdXNZM9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5938a31803fc47dac08ea6b2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5938a31803fc47dac08ea6b2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5938a31803fc47dac08ea6b2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 75 - Human Genetic Conditioning", + "release_date": "2019-08-12", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1p1GiQSxFSvkcS3BdXNZM9" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/69Q6ESqk0hmLhSZE2UcH8w/clip_310006_370006.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1956310, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5lRRLF7Y9EPwzWPUjL4wBi" + }, + "href": "https://api.spotify.com/v1/episodes/5lRRLF7Y9EPwzWPUjL4wBi", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5lRRLF7Y9EPwzWPUjL4wBi", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5c1e373a2e0367acc93fb596", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5c1e373a2e0367acc93fb596", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5c1e373a2e0367acc93fb596", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Khans, New Khans, & Great Khans", + "release_date": "2019-08-21", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5lRRLF7Y9EPwzWPUjL4wBi" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2jstDAomT4wI5M1c8vh2rQ/clip_163496_223496.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3789453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bVSlmo3VHL5egu8hacUHd" + }, + "href": "https://api.spotify.com/v1/episodes/0bVSlmo3VHL5egu8hacUHd", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "0bVSlmo3VHL5egu8hacUHd", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a37d92e2a399e11989028f571", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f37d92e2a399e11989028f571", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d37d92e2a399e11989028f571", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Most Evil Faction - Monthly Patron Call", + "release_date": "2019-08-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:0bVSlmo3VHL5egu8hacUHd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dqqLMizQRxJXDg57KjsIR/clip_636820_696820.mp3", + "description": "Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1872326, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/53j8zWJoetnjS0borOSC68" + }, + "href": "https://api.spotify.com/v1/episodes/53j8zWJoetnjS0borOSC68", + "html_description": "

Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "53j8zWJoetnjS0borOSC68", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a9aefca1e45c07f2ba6cbcf52", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f9aefca1e45c07f2ba6cbcf52", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d9aefca1e45c07f2ba6cbcf52", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 81 & Curie", + "release_date": "2019-09-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:53j8zWJoetnjS0borOSC68" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2qc7zmFNhQ44hVW8YUTM9h/clip_230605_290605.mp3", + "description": "What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1950876, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2FjaAQfmyFnc12gJNr1yDT" + }, + "href": "https://api.spotify.com/v1/episodes/2FjaAQfmyFnc12gJNr1yDT", + "html_description": "

What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2FjaAQfmyFnc12gJNr1yDT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac45911c1f83d566d8ceeade1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc45911c1f83d566d8ceeade1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc45911c1f83d566d8ceeade1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Being Paladin Danse - The Fallout Lorecast", + "release_date": "2019-09-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2FjaAQfmyFnc12gJNr1yDT" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1nNtTnZ6A7n367UjXP6InT/clip_455264_515264.mp3", + "description": "Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4927608, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3OZ75wJY5jgqxciFhjoxpd" + }, + "href": "https://api.spotify.com/v1/episodes/3OZ75wJY5jgqxciFhjoxpd", + "html_description": "

Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3OZ75wJY5jgqxciFhjoxpd", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa0dbb924716a66008ffa5295", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa0dbb924716a66008ffa5295", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da0dbb924716a66008ffa5295", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "EXTENDED EPISODE: Mr. House w/ Ken (Chad A Fallout 76 Story)", + "release_date": "2019-09-19", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3OZ75wJY5jgqxciFhjoxpd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7jXkeShygyis1vOR77Rsn1/clip_272656_332656.mp3", + "description": "Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4302968, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2BV0OCNWY2hCjArmHAQH60" + }, + "href": "https://api.spotify.com/v1/episodes/2BV0OCNWY2hCjArmHAQH60", + "html_description": "

Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2BV0OCNWY2hCjArmHAQH60", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a270ef7e866cc87449d1ce6a1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f270ef7e866cc87449d1ce6a1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d270ef7e866cc87449d1ce6a1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Who is the Best Companion? | Monthly Patron Call | Fallout Lorecast", + "release_date": "2019-09-25", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2BV0OCNWY2hCjArmHAQH60" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4hlzS7WW27RWImhiDYX3Gl/clip_342553_402553.mp3", + "description": "Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1998027, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3Ta9ouqOcHnYRTAIo0XRGU" + }, + "href": "https://api.spotify.com/v1/episodes/3Ta9ouqOcHnYRTAIo0XRGU", + "html_description": "

Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3Ta9ouqOcHnYRTAIo0XRGU", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a01af91e0364108d405f274d2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f01af91e0364108d405f274d2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d01af91e0364108d405f274d2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 87 & Capital Wasteland Super Mutants | Fallout Lorecast", + "release_date": "2019-10-02", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3Ta9ouqOcHnYRTAIo0XRGU" } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": [ - "en-US" - ], - "name": "Deathclaws", - "release_date": "2019-03-28", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2qvIReQpMaGK9OEeuW47VS" - } - ], - "limit": 20, - "next": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 323 + ], + "limit": 48, + "next": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 395 } diff --git a/tests/fixtures/shows_saved.json b/tests/fixtures/shows_saved.json deleted file mode 100644 index 870284e..0000000 --- a/tests/fixtures/shows_saved.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - true, - false -] diff --git a/tests/fixtures/top_artists.json b/tests/fixtures/top_artists.json index 3045778..7d7746c 100644 --- a/tests/fixtures/top_artists.json +++ b/tests/fixtures/top_artists.json @@ -1,725 +1,1512 @@ { - "items": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" - }, - "followers": { - "href": null, - "total": 488 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebf749f53f8bb5ffccf6105ce3", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174f749f53f8bb5ffccf6105ce3", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178f749f53f8bb5ffccf6105ce3", - "width": 160 - } - ], - "name": "Onkruid", - "popularity": 7, - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "followers": { - "href": null, - "total": 805497 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb8e750249623067fe3c557cf0", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051748e750249623067fe3c557cf0", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1788e750249623067fe3c557cf0", - "width": 160 - } - ], - "name": "Joost", - "popularity": 69, - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "followers": { - "href": null, - "total": 856867 - }, - "genres": [ - "electronica", - "future garage", - "indie soul", - "indietronica" - ], - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", - "width": 160 - } - ], - "name": "Jamie xx", - "popularity": 70, - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "followers": { - "href": null, - "total": 141270 - }, - "genres": [ - "dutch pop", - "dutch rock", - "lustrum", - "piratenmuziek" - ], - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb1844d25e43cbfb017a74ca77", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051741844d25e43cbfb017a74ca77", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1781844d25e43cbfb017a74ca77", - "width": 160 - } - ], - "name": "Goldband", - "popularity": 59, - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "followers": { - "href": null, - "total": 1711925 - }, - "genres": [ - "edm", - "house", - "stutter house" - ], - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb2302e6ba3091fcbc6fd5bb54", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051742302e6ba3091fcbc6fd5bb54", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1782302e6ba3091fcbc6fd5bb54", - "width": 160 - } - ], - "name": "Fred again..", - "popularity": 81, - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0bLxXoUrh0kANKQMWts8KV" - }, - "followers": { - "href": null, - "total": 22087 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0bLxXoUrh0kANKQMWts8KV", - "id": "0bLxXoUrh0kANKQMWts8KV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb03c950304cd6fce910de8c59", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517403c950304cd6fce910de8c59", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17803c950304cd6fce910de8c59", - "width": 160 - } - ], - "name": "Felicia Lu", - "popularity": 35, - "type": "artist", - "uri": "spotify:artist:0bLxXoUrh0kANKQMWts8KV" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "followers": { - "href": null, - "total": 166512 - }, - "genres": [ - "modern alternative pop" - ], - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb7f3519b082ec961f35be7a44", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051747f3519b082ec961f35be7a44", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1787f3519b082ec961f35be7a44", - "width": 160 - } - ], - "name": "Alfie Templeman", - "popularity": 53, - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0PCCGZ0wGLizHt2KZ7hhA2" - }, - "followers": { - "href": null, - "total": 948532 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0PCCGZ0wGLizHt2KZ7hhA2", - "id": "0PCCGZ0wGLizHt2KZ7hhA2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb597f1c8c92c4a82734e3af43", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174597f1c8c92c4a82734e3af43", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178597f1c8c92c4a82734e3af43", - "width": 160 - } - ], - "name": "Artemas", - "popularity": 80, - "type": "artist", - "uri": "spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "followers": { - "href": null, - "total": 126882 - }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebef66595edf6f913e0f7c5b93", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174ef66595edf6f913e0f7c5b93", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178ef66595edf6f913e0f7c5b93", - "width": 160 - } - ], - "name": "Romy", - "popularity": 62, - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Lwn2PjwIw7QaoN7gHyqCA" - }, - "followers": { - "href": null, - "total": 4773 - }, - "genres": [ - "canadian electropop", - "london on indie" - ], - "href": "https://api.spotify.com/v1/artists/0Lwn2PjwIw7QaoN7gHyqCA", - "id": "0Lwn2PjwIw7QaoN7gHyqCA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb659cb7ca4d5e02f48a2ef9f0", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174659cb7ca4d5e02f48a2ef9f0", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178659cb7ca4d5e02f48a2ef9f0", - "width": 160 - } - ], - "name": "Wolf Saga", - "popularity": 20, - "type": "artist", - "uri": "spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "followers": { - "href": null, - "total": 3840216 - }, - "genres": [ - "indietronica", - "modern alternative rock", - "modern rock", - "rock" - ], - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb", - "width": 160 - } - ], - "name": "Foster The People", - "popularity": 75, - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hE8S8ohRErocpkY7uJW4a" - }, - "followers": { - "href": null, - "total": 1312836 - }, - "genres": [ - "dutch metal", - "gothic metal", - "gothic symphonic metal", - "symphonic metal" - ], - "href": "https://api.spotify.com/v1/artists/3hE8S8ohRErocpkY7uJW4a", - "id": "3hE8S8ohRErocpkY7uJW4a", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebd7fd83f3a54ab822936034b6", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174d7fd83f3a54ab822936034b6", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178d7fd83f3a54ab822936034b6", - "width": 160 - } - ], - "name": "Within Temptation", - "popularity": 64, - "type": "artist", - "uri": "spotify:artist:3hE8S8ohRErocpkY7uJW4a" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "followers": { - "href": null, - "total": 29260 - }, - "genres": [ - "antiviral pop", - "neo-industrial rock" - ], - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc", - "width": 160 - } - ], - "name": "Area 11", - "popularity": 32, - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" - }, - "followers": { - "href": null, - "total": 741463 - }, - "genres": [ - "deep house", - "house" - ], - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7", - "width": 160 - } - ], - "name": "Purple Disco Machine", - "popularity": 74, - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M2wZ9GZgrQXHCFfjv46we" - }, - "followers": { - "href": null, - "total": 44768356 - }, - "genres": [ - "dance pop", - "pop", - "uk pop" - ], - "href": "https://api.spotify.com/v1/artists/6M2wZ9GZgrQXHCFfjv46we", - "id": "6M2wZ9GZgrQXHCFfjv46we", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb0c68f6c95232e716f0abee8d", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051740c68f6c95232e716f0abee8d", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1780c68f6c95232e716f0abee8d", - "width": 160 - } - ], - "name": "Dua Lipa", - "popularity": 88, - "type": "artist", - "uri": "spotify:artist:6M2wZ9GZgrQXHCFfjv46we" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Ndq6RparrhEoceel7LC4Z" - }, - "followers": { - "href": null, - "total": 28307 - }, - "genres": [ - "gaming edm" - ], - "href": "https://api.spotify.com/v1/artists/2Ndq6RparrhEoceel7LC4Z", - "id": "2Ndq6RparrhEoceel7LC4Z", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebf44a22ddf0de309ddf0ae8a9", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174f44a22ddf0de309ddf0ae8a9", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178f44a22ddf0de309ddf0ae8a9", - "width": 160 - } - ], - "name": "Anna Yvette", - "popularity": 46, - "type": "artist", - "uri": "spotify:artist:2Ndq6RparrhEoceel7LC4Z" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "followers": { - "href": null, - "total": 869953 - }, - "genres": [ - "aussietronica", - "indie soul" - ], - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebd178e3af6da2eef262630ee2", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174d178e3af6da2eef262630ee2", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178d178e3af6da2eef262630ee2", - "width": 160 - } - ], - "name": "Parcels", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "followers": { - "href": null, - "total": 109805 - }, - "genres": [ - "australian electropop" - ], - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16", - "width": 160 - } - ], - "name": "Confidence Man", - "popularity": 55, - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3PyJHH2wyfQK3WZrk9rpmP" - }, - "followers": { - "href": null, - "total": 2375769 - }, - "genres": [ - "alt z", - "escape room" - ], - "href": "https://api.spotify.com/v1/artists/3PyJHH2wyfQK3WZrk9rpmP", - "id": "3PyJHH2wyfQK3WZrk9rpmP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb200914459687748118b36954", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174200914459687748118b36954", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178200914459687748118b36954", - "width": 160 - } - ], - "name": "Ashnikko", - "popularity": 69, - "type": "artist", - "uri": "spotify:artist:3PyJHH2wyfQK3WZrk9rpmP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "followers": { - "href": null, - "total": 929696 - }, - "genres": [ - "downtempo", - "electronica", - "indietronica", - "neo-synthpop", - "trip hop" - ], - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb804f352e162347a18f6401fa", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174804f352e162347a18f6401fa", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178804f352e162347a18f6401fa", - "width": 160 + "items": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "followers": { "href": null, "total": 68073 }, + "genres": ["power metal"], + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb1f6d7d07049a2e47d19ac5fc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051741f6d7d07049a2e47d19ac5fc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1781f6d7d07049a2e47d19ac5fc", + "width": 160 + } + ], + "name": "Machinae Supremacy", + "popularity": 37, + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "followers": { "href": null, "total": 1078839 }, + "genres": [ + "power metal", + "metal", + "symphonic metal", + "folk metal", + "medieval metal", + "heavy metal" + ], + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb7eebe31d9542992df74099f3", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051747eebe31d9542992df74099f3", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1787eebe31d9542992df74099f3", + "width": 160 + } + ], + "name": "Powerwolf", + "popularity": 60, + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "followers": { "href": null, "total": 28638 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc", + "width": 160 + } + ], + "name": "Area 11", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "followers": { "href": null, "total": 64722 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb0dc6a1a0c7741d136176c027", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051740dc6a1a0c7741d136176c027", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1780dc6a1a0c7741d136176c027", + "width": 160 + } + ], + "name": "Starbenders", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "followers": { "href": null, "total": 51318 }, + "genres": [ + "german indie", + "german indie pop", + "neue deutsche welle", + "german pop" + ], + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebfa3d426be3f5de7abfa48e74", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174fa3d426be3f5de7abfa48e74", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178fa3d426be3f5de7abfa48e74", + "width": 160 + } + ], + "name": "Dilla", + "popularity": 43, + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "followers": { "href": null, "total": 424114 }, + "genres": ["comedy"], + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb39f5c5c876f9c86fb1f7869e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517439f5c5c876f9c86fb1f7869e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17839f5c5c876f9c86fb1f7869e", + "width": 160 + } + ], + "name": "Ninja Sex Party", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" + }, + "followers": { "href": null, "total": 29781 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", + "id": "5UlJRJmlRLhQJX8lJuerVq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", + "width": 160 + } + ], + "name": "Telenova", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "followers": { "href": null, "total": 740284 }, + "genres": ["norwegian pop"], + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", + "width": 160 + } + ], + "name": "Sigrid", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "followers": { "href": null, "total": 2506437 }, + "genres": [ + "power metal", + "metal", + "heavy metal", + "symphonic metal", + "folk metal" + ], + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", + "width": 160 + } + ], + "name": "Sabaton", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "followers": { "href": null, "total": 2464287 }, + "genres": ["stutter house", "house", "edm"], + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", + "width": 160 + } + ], + "name": "Fred again..", + "popularity": 78, + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "followers": { "href": null, "total": 1734133 }, + "genres": ["chillwave", "chillstep"], + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", + "width": 160 + } + ], + "name": "ODESZA", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" + }, + "followers": { "href": null, "total": 57004 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", + "id": "0r6IrOHMBaKiiZPV1zeIu2", + "images": [ + { + "height": 1000, + "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", + "width": 1000 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", + "width": 640 + }, + { + "height": 200, + "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", + "width": 200 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", + "width": 64 + } + ], + "name": "Follow The Cipher", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" + }, + "followers": { "href": null, "total": 3744534 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2360c963315739fc33b01687", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742360c963315739fc33b01687", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782360c963315739fc33b01687", + "width": 160 + } + ], + "name": "Tove Lo", + "popularity": 72, + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6tkhw6PSVw7b2M7h5fLBLE" + }, + "followers": { "href": null, "total": 46596 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/6tkhw6PSVw7b2M7h5fLBLE", + "id": "6tkhw6PSVw7b2M7h5fLBLE", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5a6feb4fd2ea111ae426e789", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745a6feb4fd2ea111ae426e789", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785a6feb4fd2ea111ae426e789", + "width": 160 + } + ], + "name": "Cyhra", + "popularity": 38, + "type": "artist", + "uri": "spotify:artist:6tkhw6PSVw7b2M7h5fLBLE" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "followers": { "href": null, "total": 961706 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", + "width": 160 + } + ], + "name": "Jamie xx", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "followers": { "href": null, "total": 259619 }, + "genres": [ + "gothic rock", + "gothic metal", + "industrial rock", + "industrial", + "darkwave" + ], + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb916d2275e3b91d069e6e7683", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174916d2275e3b91d069e6e7683", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178916d2275e3b91d069e6e7683", + "width": 160 + } + ], + "name": "The Birthday Massacre", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "followers": { "href": null, "total": 210183 }, + "genres": [ + "gothic metal", + "industrial metal", + "gothic rock", + "medieval metal", + "industrial", + "industrial rock" + ], + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5e090d979d9e9811a0f4e434", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745e090d979d9e9811a0f4e434", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785e090d979d9e9811a0f4e434", + "width": 160 + } + ], + "name": "Lord Of The Lost", + "popularity": 51, + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "followers": { "href": null, "total": 301337 }, + "genres": [ + "power metal", + "symphonic metal", + "metal", + "heavy metal" + ], + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb736a6608998f7d7b5d8d3205", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174736a6608998f7d7b5d8d3205", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178736a6608998f7d7b5d8d3205", + "width": 160 + } + ], + "name": "Battle Beast", + "popularity": 53, + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "followers": { "href": null, "total": 8621 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb44659e33a0314ddfb9bfae77", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517444659e33a0314ddfb9bfae77", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17844659e33a0314ddfb9bfae77", + "width": 160 + } + ], + "name": "The Bardic DM", + "popularity": 44, + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "followers": { "href": null, "total": 6175 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb66006f5c150c98afb32adab", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b66006f5c150c98afb32adab", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b66006f5c150c98afb32adab", + "width": 160 + } + ], + "name": "Anike Ekina", + "popularity": 21, + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "followers": { "href": null, "total": 172224 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", + "width": 160 + } + ], + "name": "Alfie Templeman", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hE8S8ohRErocpkY7uJW4a" + }, + "followers": { "href": null, "total": 1441830 }, + "genres": [ + "symphonic metal", + "gothic metal", + "gothic rock", + "power metal", + "metal" + ], + "href": "https://api.spotify.com/v1/artists/3hE8S8ohRErocpkY7uJW4a", + "id": "3hE8S8ohRErocpkY7uJW4a", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb9d081a5e8f131e9076ac74de", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051749d081a5e8f131e9076ac74de", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1789d081a5e8f131e9076ac74de", + "width": 160 + } + ], + "name": "Within Temptation", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:3hE8S8ohRErocpkY7uJW4a" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" + }, + "followers": { "href": null, "total": 146164 }, + "genres": ["slap house"], + "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", + "id": "25sJFKMqDENdsTF7zRXoif", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", + "width": 160 + } + ], + "name": "Klaas", + "popularity": 63, + "type": "artist", + "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" + }, + "followers": { "href": null, "total": 636869 }, + "genres": ["phonk", "brazilian phonk"], + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb649f083a33e92e1e03ea77a0", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174649f083a33e92e1e03ea77a0", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178649f083a33e92e1e03ea77a0", + "width": 160 + } + ], + "name": "LXNGVX", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "followers": { "href": null, "total": 31244 }, + "genres": [ + "industrial metal", + "industrial rock", + "industrial", + "symphonic metal" + ], + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb24f41a362f0e9217226ec0c0", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517424f41a362f0e9217226ec0c0", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17824f41a362f0e9217226ec0c0", + "width": 160 + } + ], + "name": "Rave The Reqviem", + "popularity": 36, + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5KKpBU5eC2tJDzf0wmlRp2" + }, + "followers": { "href": null, "total": 3524083 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5KKpBU5eC2tJDzf0wmlRp2", + "id": "5KKpBU5eC2tJDzf0wmlRp2", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebde2e2ac1d53fdf9518354798", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174de2e2ac1d53fdf9518354798", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178de2e2ac1d53fdf9518354798", + "width": 160 + } + ], + "name": "RAYE", + "popularity": 82, + "type": "artist", + "uri": "spotify:artist:5KKpBU5eC2tJDzf0wmlRp2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "followers": { "href": null, "total": 399626 }, + "genres": ["power metal", "symphonic metal", "metal"], + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", + "width": 160 + } + ], + "name": "Beast In Black", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" + }, + "followers": { "href": null, "total": 1282232 }, + "genres": [ + "power metal", + "speed metal", + "metal", + "symphonic metal" + ], + "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", + "id": "2pH3wEn4eYlMMIIQyKPbVR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", + "width": 160 + } + ], + "name": "DragonForce", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "followers": { "href": null, "total": 981067 }, + "genres": ["gabber", "europop"], + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", + "width": 160 + } + ], + "name": "Joost", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2PQVMx0BpRQhzMWLa7X0T6" + }, + "followers": { "href": null, "total": 153017 }, + "genres": [ + "melodic death metal", + "metal", + "death metal", + "progressive metal" + ], + "href": "https://api.spotify.com/v1/artists/2PQVMx0BpRQhzMWLa7X0T6", + "id": "2PQVMx0BpRQhzMWLa7X0T6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb371a2a051989643acde8cd83", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174371a2a051989643acde8cd83", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178371a2a051989643acde8cd83", + "width": 160 + } + ], + "name": "Scar Symmetry", + "popularity": 40, + "type": "artist", + "uri": "spotify:artist:2PQVMx0BpRQhzMWLa7X0T6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "followers": { "href": null, "total": 259421 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb05dacd07ad341a94d7bf33fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517405dacd07ad341a94d7bf33fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17805dacd07ad341a94d7bf33fe", + "width": 160 + } + ], + "name": "The Knocks", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3kcwSBHk3lMgHMHuxjJLNZ" + }, + "followers": { "href": null, "total": 103284 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/3kcwSBHk3lMgHMHuxjJLNZ", + "id": "3kcwSBHk3lMgHMHuxjJLNZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6cb811eb3e3f4e65ef1931fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746cb811eb3e3f4e65ef1931fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786cb811eb3e3f4e65ef1931fe", + "width": 160 + } + ], + "name": "Bazart", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:3kcwSBHk3lMgHMHuxjJLNZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "followers": { "href": null, "total": 347387 }, + "genres": ["dubstep", "edm", "drumstep", "glitch", "electro house"], + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e", + "width": 160 + } + ], + "name": "Pegboard Nerds", + "popularity": 47, + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12Zk1DFhCbHY6v3xep2ZjI" + }, + "followers": { "href": null, "total": 742195 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/12Zk1DFhCbHY6v3xep2ZjI", + "id": "12Zk1DFhCbHY6v3xep2ZjI", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6338990250f5d5a447650ba9", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746338990250f5d5a447650ba9", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786338990250f5d5a447650ba9", + "width": 160 + } + ], + "name": "070 Shake", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:12Zk1DFhCbHY6v3xep2ZjI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5WId4o5jdGVhptNU0uqKxu" + }, + "followers": { "href": null, "total": 247134 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5WId4o5jdGVhptNU0uqKxu", + "id": "5WId4o5jdGVhptNU0uqKxu", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb8a5ad7938183d6c07858d8f6", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051748a5ad7938183d6c07858d8f6", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1788a5ad7938183d6c07858d8f6", + "width": 160 + } + ], + "name": "St. Lucia", + "popularity": 43, + "type": "artist", + "uri": "spotify:artist:5WId4o5jdGVhptNU0uqKxu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2KaW48xlLnXC2v8tvyhWsa" + }, + "followers": { "href": null, "total": 632068 }, + "genres": ["symphonic metal", "power metal", "metal"], + "href": "https://api.spotify.com/v1/artists/2KaW48xlLnXC2v8tvyhWsa", + "id": "2KaW48xlLnXC2v8tvyhWsa", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb293f7f4aebb31292f607bf3b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174293f7f4aebb31292f607bf3b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178293f7f4aebb31292f607bf3b", + "width": 160 + } + ], + "name": "Amaranthe", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2KaW48xlLnXC2v8tvyhWsa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/538iX6YCTybcgzsrjDTrFi" + }, + "followers": { "href": null, "total": 57806 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/538iX6YCTybcgzsrjDTrFi", + "id": "538iX6YCTybcgzsrjDTrFi", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb107cf7007e710fc7c68046fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174107cf7007e710fc7c68046fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178107cf7007e710fc7c68046fe", + "width": 160 + } + ], + "name": "LEAP", + "popularity": 52, + "type": "artist", + "uri": "spotify:artist:538iX6YCTybcgzsrjDTrFi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RbFulf0Q38msfpcgh8e0m" + }, + "followers": { "href": null, "total": 22406 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6RbFulf0Q38msfpcgh8e0m", + "id": "6RbFulf0Q38msfpcgh8e0m", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eba8406532e63d57825205e082", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174a8406532e63d57825205e082", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178a8406532e63d57825205e082", + "width": 160 + } + ], + "name": "Ember Falls", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:6RbFulf0Q38msfpcgh8e0m" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0GG2cWaonE4JPrjcCCQ1EG" + }, + "followers": { "href": null, "total": 405797 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0GG2cWaonE4JPrjcCCQ1EG", + "id": "0GG2cWaonE4JPrjcCCQ1EG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb3e048d910001f75091fd46f3", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051743e048d910001f75091fd46f3", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1783e048d910001f75091fd46f3", + "width": 160 + } + ], + "name": "SG Lewis", + "popularity": 60, + "type": "artist", + "uri": "spotify:artist:0GG2cWaonE4JPrjcCCQ1EG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "followers": { "href": null, "total": 1144334 }, + "genres": ["indie soul"], + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", + "width": 160 + } + ], + "name": "Parcels", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "followers": { "href": null, "total": 154064 }, + "genres": ["nederpop", "hollands"], + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", + "width": 160 + } + ], + "name": "Goldband", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6nDLku5uL3ou60kvCGZorh" + }, + "followers": { "href": null, "total": 1147281 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6nDLku5uL3ou60kvCGZorh", + "id": "6nDLku5uL3ou60kvCGZorh", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb37fd268f79456bf904d617e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b37fd268f79456bf904d617e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b37fd268f79456bf904d617e", + "width": 160 + } + ], + "name": "Bloodhound Gang", + "popularity": 62, + "type": "artist", + "uri": "spotify:artist:6nDLku5uL3ou60kvCGZorh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5J9s2Y6roGagMAipTa5XqV" + }, + "followers": { "href": null, "total": 32248 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5J9s2Y6roGagMAipTa5XqV", + "id": "5J9s2Y6roGagMAipTa5XqV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5f08c6f971b426cceb0738cc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745f08c6f971b426cceb0738cc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785f08c6f971b426cceb0738cc", + "width": 160 + } + ], + "name": "HONEYMOAN", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:5J9s2Y6roGagMAipTa5XqV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "followers": { "href": null, "total": 148270 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb866041cc76e685f65b40474", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b866041cc76e685f65b40474", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b866041cc76e685f65b40474", + "width": 160 + } + ], + "name": "Youngr", + "popularity": 41, + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gCEvTSonJD4GLMZwBnMzg" + }, + "followers": { "href": null, "total": 7079 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0gCEvTSonJD4GLMZwBnMzg", + "id": "0gCEvTSonJD4GLMZwBnMzg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebec2eb89a9ed518335d17330b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174ec2eb89a9ed518335d17330b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178ec2eb89a9ed518335d17330b", + "width": 160 + } + ], + "name": "Walking On Rivers", + "popularity": 41, + "type": "artist", + "uri": "spotify:artist:0gCEvTSonJD4GLMZwBnMzg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/57ylwQTnFnIhJh4nu4rxCs" + }, + "followers": { "href": null, "total": 1314180 }, + "genres": ["melodic death metal", "metal", "death metal"], + "href": "https://api.spotify.com/v1/artists/57ylwQTnFnIhJh4nu4rxCs", + "id": "57ylwQTnFnIhJh4nu4rxCs", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5c3bd919d1344a738af14136", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745c3bd919d1344a738af14136", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785c3bd919d1344a738af14136", + "width": 160 + } + ], + "name": "In Flames", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:57ylwQTnFnIhJh4nu4rxCs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4wKbEwlRYNLlwUu9OCgLBr" + }, + "followers": { "href": null, "total": 13844 }, + "genres": ["synthwave"], + "href": "https://api.spotify.com/v1/artists/4wKbEwlRYNLlwUu9OCgLBr", + "id": "4wKbEwlRYNLlwUu9OCgLBr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb39fa4c7432b484e90689df14", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517439fa4c7432b484e90689df14", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17839fa4c7432b484e90689df14", + "width": 160 + } + ], + "name": "Jeremiah Kane", + "popularity": 36, + "type": "artist", + "uri": "spotify:artist:4wKbEwlRYNLlwUu9OCgLBr" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1Qp56T7n950O3EGMsSl81D" + }, + "followers": { "href": null, "total": 3880121 }, + "genres": ["metal", "hard rock"], + "href": "https://api.spotify.com/v1/artists/1Qp56T7n950O3EGMsSl81D", + "id": "1Qp56T7n950O3EGMsSl81D", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2d972470f1f8110be7c07017", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742d972470f1f8110be7c07017", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782d972470f1f8110be7c07017", + "width": 160 + } + ], + "name": "Ghost", + "popularity": 72, + "type": "artist", + "uri": "spotify:artist:1Qp56T7n950O3EGMsSl81D" } - ], - "name": "Röyksopp", - "popularity": 60, - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - } - ], - "total": 192, - "limit": 20, - "offset": 0, - "href": "https://api.spotify.com/v1/me/top/artists?locale=en-US,en;q%3D0.5", - "next": "https://api.spotify.com/v1/me/top/artists?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "previous": null + ], + "total": 198, + "limit": 48, + "offset": 0, + "href": "https://api.spotify.com/v1/me/top/artists?limit=48", + "next": "https://api.spotify.com/v1/me/top/artists?offset=48&limit=48", + "previous": null } diff --git a/tests/fixtures/top_tracks.json b/tests/fixtures/top_tracks.json index 35ee055..c24b87f 100644 --- a/tests/fixtures/top_tracks.json +++ b/tests/fixtures/top_tracks.json @@ -1,8820 +1,19979 @@ { - "items": [ - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "items": [ + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/30g6j2xuqynpAiohatDOW6" + }, + "href": "https://api.spotify.com/v1/albums/30g6j2xuqynpAiohatDOW6", + "id": "30g6j2xuqynpAiohatDOW6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27322e8fe51124a59f85957aa1b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0222e8fe51124a59f85957aa1b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485122e8fe51124a59f85957aa1b", + "width": 64 + } + ], + "is_playable": true, + "name": "OPVS NOIR Vol. 1", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:30g6j2xuqynpAiohatDOW6" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173023, + "explicit": false, + "external_ids": { "isrc": "ATN262528501" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/0PCCGZ0wGLizHt2KZ7hhA2" + "spotify": "https://open.spotify.com/track/28p5fdZ2TAGx8z88KFZo5d" }, - "href": "https://api.spotify.com/v1/artists/0PCCGZ0wGLizHt2KZ7hhA2", - "id": "0PCCGZ0wGLizHt2KZ7hhA2", - "name": "Artemas", - "type": "artist", - "uri": "spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/45Qix7gFNajr6IofEIhhE4" + "href": "https://api.spotify.com/v1/tracks/28p5fdZ2TAGx8z88KFZo5d", + "id": "28p5fdZ2TAGx8z88KFZo5d", + "is_local": false, + "is_playable": true, + "name": "My Sanctuary", + "popularity": 37, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:28p5fdZ2TAGx8z88KFZo5d" }, - "href": "https://api.spotify.com/v1/albums/45Qix7gFNajr6IofEIhhE4", - "id": "45Qix7gFNajr6IofEIhhE4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c88e6a4447087f41eb388b14", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c88e6a4447087f41eb388b14", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c88e6a4447087f41eb388b14", - "width": 64 - } - ], - "name": "i like the way you kiss me (burnt)", - "release_date": "2024-03-26", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:45Qix7gFNajr6IofEIhhE4" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0PCCGZ0wGLizHt2KZ7hhA2" - }, - "href": "https://api.spotify.com/v1/artists/0PCCGZ0wGLizHt2KZ7hhA2", - "id": "0PCCGZ0wGLizHt2KZ7hhA2", - "name": "Artemas", - "type": "artist", - "uri": "spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 142514, - "explicit": false, - "external_ids": { - "isrc": "QZJ842400387" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3oRoMXsP2NRzm51lldj1RO" - }, - "href": "https://api.spotify.com/v1/tracks/3oRoMXsP2NRzm51lldj1RO", - "id": "3oRoMXsP2NRzm51lldj1RO", - "is_local": false, - "name": "i like the way you kiss me", - "popularity": 51, - "preview_url": "https://p.scdn.co/mp3-preview/6ce9233edb212fe7cf02273f4369d2c60c28e887?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 2, - "type": "track", - "uri": "spotify:track:3oRoMXsP2NRzm51lldj1RO" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" + }, + "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", + "id": "1N2FgBLehaq77UEdJhCt7f", + "name": "Saint Etienne", + "type": "artist", + "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5CEt8piPRnEk8BAE9gpdAz" + }, + "href": "https://api.spotify.com/v1/albums/5CEt8piPRnEk8BAE9gpdAz", + "id": "5CEt8piPRnEk8BAE9gpdAz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731cef74bb3b67d18911704d1c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021cef74bb3b67d18911704d1c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511cef74bb3b67d18911704d1c", + "width": 64 + } + ], + "is_playable": true, + "name": "International", + "release_date": "2025-09-05", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:5CEt8piPRnEk8BAE9gpdAz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" + }, + "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", + "id": "1N2FgBLehaq77UEdJhCt7f", + "name": "Saint Etienne", + "type": "artist", + "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183960, + "explicit": false, + "external_ids": { "isrc": "GBPVV2400755" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/4YLtscXsxbVgi031ovDDdh" + "spotify": "https://open.spotify.com/track/6UYzOKGh4hXae0reTWKK24" }, - "href": "https://api.spotify.com/v1/artists/4YLtscXsxbVgi031ovDDdh", - "id": "4YLtscXsxbVgi031ovDDdh", - "name": "Chris Stapleton", - "type": "artist", - "uri": "spotify:artist:4YLtscXsxbVgi031ovDDdh" - }, - { + "href": "https://api.spotify.com/v1/tracks/6UYzOKGh4hXae0reTWKK24", + "id": "6UYzOKGh4hXae0reTWKK24", + "is_local": false, + "is_playable": true, + "name": "Brand New Me", + "popularity": 32, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:6UYzOKGh4hXae0reTWKK24" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" + }, + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "name": "LXNGVX", + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1l8if9zQ8F0MEHVWYrMREe" + }, + "href": "https://api.spotify.com/v1/albums/1l8if9zQ8F0MEHVWYrMREe", + "id": "1l8if9zQ8F0MEHVWYrMREe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273427c80da235cb76fc89b8e27", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02427c80da235cb76fc89b8e27", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851427c80da235cb76fc89b8e27", + "width": 64 + } + ], + "is_playable": true, + "name": "Montagem Mysterious Game", + "release_date": "2023-12-01", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1l8if9zQ8F0MEHVWYrMREe" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" + }, + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "name": "LXNGVX", + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 103495, + "explicit": false, + "external_ids": { "isrc": "QZTBF2315869" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6M2wZ9GZgrQXHCFfjv46we" + "spotify": "https://open.spotify.com/track/7vOmSP2647oNUGGEhWd1cr" }, - "href": "https://api.spotify.com/v1/artists/6M2wZ9GZgrQXHCFfjv46we", - "id": "6M2wZ9GZgrQXHCFfjv46we", - "name": "Dua Lipa", - "type": "artist", - "uri": "spotify:artist:6M2wZ9GZgrQXHCFfjv46we" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3pjMBXbDLg2oGL7HtVxWgY" + "href": "https://api.spotify.com/v1/tracks/7vOmSP2647oNUGGEhWd1cr", + "id": "7vOmSP2647oNUGGEhWd1cr", + "is_local": false, + "is_playable": true, + "name": "Montagem Mysterious Game", + "popularity": 71, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7vOmSP2647oNUGGEhWd1cr" }, - "href": "https://api.spotify.com/v1/albums/3pjMBXbDLg2oGL7HtVxWgY", - "id": "3pjMBXbDLg2oGL7HtVxWgY", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27386f028311a5a746aa46b412f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0286f028311a5a746aa46b412f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485186f028311a5a746aa46b412f", - "width": 64 - } - ], - "name": "Think I'm In Love With You (With Dua Lipa) (Live From The 59th ACM Awards)", - "release_date": "2024-05-01", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:3pjMBXbDLg2oGL7HtVxWgY" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4YLtscXsxbVgi031ovDDdh" - }, - "href": "https://api.spotify.com/v1/artists/4YLtscXsxbVgi031ovDDdh", - "id": "4YLtscXsxbVgi031ovDDdh", - "name": "Chris Stapleton", - "type": "artist", - "uri": "spotify:artist:4YLtscXsxbVgi031ovDDdh" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" + }, + "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", + "id": "3Jvz71ZoKZaTQbbQyXfHwT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", + "width": 64 + } + ], + "is_playable": true, + "name": "USB", + "release_date": "2026-01-23", + "release_date_precision": "day", + "total_tracks": 35, + "type": "album", + "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" + }, + "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", + "id": "3NqV2DJoAWsjl787bWaHW7", + "name": "Amyl and The Sniffers", + "type": "artist", + "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_ids": { "isrc": "GBAHS2501375" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1A3XE7nDuLKrgnzXNNoFlW" + }, + "href": "https://api.spotify.com/v1/tracks/1A3XE7nDuLKrgnzXNNoFlW", + "id": "1A3XE7nDuLKrgnzXNNoFlW", + "is_local": false, + "is_playable": true, + "name": "you're a star", + "popularity": 55, + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:1A3XE7nDuLKrgnzXNNoFlW" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M2wZ9GZgrQXHCFfjv46we" - }, - "href": "https://api.spotify.com/v1/artists/6M2wZ9GZgrQXHCFfjv46we", - "id": "6M2wZ9GZgrQXHCFfjv46we", - "name": "Dua Lipa", - "type": "artist", - "uri": "spotify:artist:6M2wZ9GZgrQXHCFfjv46we" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 277066, - "explicit": false, - "external_ids": { - "isrc": "USUG12403278" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/69zgu5rlAie3IPZOEXLxyS" - }, - "href": "https://api.spotify.com/v1/tracks/69zgu5rlAie3IPZOEXLxyS", - "id": "69zgu5rlAie3IPZOEXLxyS", - "is_local": false, - "name": "Think I'm In Love With You (With Dua Lipa) (Live From The 59th ACM Awards)", - "popularity": 60, - "preview_url": "https://p.scdn.co/mp3-preview/c4fa0377538248e0a3c7e92bcf5a58be2f32b342?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:69zgu5rlAie3IPZOEXLxyS" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" + }, + "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", + "id": "6kACVPfCOnqzgfEF5ryl0x", + "name": "Johnny Cash", + "type": "artist", + "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" + } + ], + "available_markets": ["ES", "PT"], + "external_urls": { + "spotify": "https://open.spotify.com/album/2D071Op9WrIRHEfQYRdjDc" + }, + "href": "https://api.spotify.com/v1/albums/2D071Op9WrIRHEfQYRdjDc", + "id": "2D071Op9WrIRHEfQYRdjDc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2733323a7383204e24a5f91f54c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e023323a7383204e24a5f91f54c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048513323a7383204e24a5f91f54c", + "width": 64 + } + ], + "is_playable": true, + "name": "Silver", + "release_date": "1979", + "release_date_precision": "year", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2D071Op9WrIRHEfQYRdjDc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" + }, + "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", + "id": "6kACVPfCOnqzgfEF5ryl0x", + "name": "Johnny Cash", + "type": "artist", + "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" + } + ], + "available_markets": ["ES", "PT"], + "disc_number": 1, + "duration_ms": 225493, + "explicit": false, + "external_ids": { "isrc": "USSM17900687" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + "spotify": "https://open.spotify.com/track/6WrgT3Ztfis3E9V64u7u6t" }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AD", - "AG", - "AL", - "AM", - "AT", - "AZ", - "BA", - "BB", - "BE", - "BG", - "BS", - "BY", - "BZ", - "CA", - "CH", - "CR", - "CW", - "CY", - "CZ", - "DE", - "DK", - "DM", - "DO", - "EE", - "ES", - "FI", - "FR", - "GB", - "GD", - "GE", - "GR", - "GT", - "HN", - "HR", - "HT", - "HU", - "IE", - "IL", - "IS", - "IT", - "JM", - "KN", - "LC", - "LI", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MK", - "MT", - "MX", - "NI", - "NL", - "NO", - "PA", - "PL", - "PR", - "PT", - "RO", - "RS", - "SE", - "SI", - "SK", - "SM", - "SV", - "TR", - "TT", - "UA", - "US", - "VC", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0X9CpcnwoPgzznLDDGx8PI" + "href": "https://api.spotify.com/v1/tracks/6WrgT3Ztfis3E9V64u7u6t", + "id": "6WrgT3Ztfis3E9V64u7u6t", + "is_local": false, + "is_playable": true, + "name": "(Ghost) Riders in the Sky", + "popularity": 29, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6WrgT3Ztfis3E9V64u7u6t" }, - "href": "https://api.spotify.com/v1/albums/0X9CpcnwoPgzznLDDGx8PI", - "id": "0X9CpcnwoPgzznLDDGx8PI", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f9f4f5a25c823292baed3ae1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f9f4f5a25c823292baed3ae1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f9f4f5a25c823292baed3ae1", - "width": 64 - } - ], - "name": "TILT", - "release_date": "2022-04-01", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:0X9CpcnwoPgzznLDDGx8PI" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AD", - "AG", - "AL", - "AM", - "AT", - "AZ", - "BA", - "BB", - "BE", - "BG", - "BS", - "BY", - "BZ", - "CA", - "CH", - "CR", - "CW", - "CY", - "CZ", - "DE", - "DK", - "DM", - "DO", - "EE", - "ES", - "FI", - "FR", - "GB", - "GD", - "GE", - "GR", - "GT", - "HN", - "HR", - "HT", - "HU", - "IE", - "IL", - "IS", - "IT", - "JM", - "KN", - "LC", - "LI", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MK", - "MT", - "MX", - "NI", - "NL", - "NO", - "PA", - "PL", - "PR", - "PT", - "RO", - "RS", - "SE", - "SI", - "SK", - "SM", - "SV", - "TR", - "TT", - "UA", - "US", - "VC", - "XK" - ], - "disc_number": 1, - "duration_ms": 288160, - "explicit": false, - "external_ids": { - "isrc": "AUZEI2000027" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/53wnscuzFnH8jaGymzqgfi" - }, - "href": "https://api.spotify.com/v1/tracks/53wnscuzFnH8jaGymzqgfi", - "id": "53wnscuzFnH8jaGymzqgfi", - "is_local": false, - "name": "Holiday", - "popularity": 49, - "preview_url": "https://p.scdn.co/mp3-preview/ffd4631ef01404a1ed2f4e954caea3bd92d28854?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 6, - "type": "track", - "uri": "spotify:track:53wnscuzFnH8jaGymzqgfi" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" + }, + "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", + "id": "05U0USUzKB8vLfdOWggfqC", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491", + "width": 64 + } + ], + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217243, + "explicit": true, + "external_ids": { "isrc": "USUG12508483" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", + "id": "55QDC1UHFcqlnH0xSvvB7T", + "is_local": false, + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "popularity": 63, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733126a95bb7ed4146a80c7fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023126a95bb7ed4146a80c7fc6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513126a95bb7ed4146a80c7fc6", - "width": 64 - } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5Oc8vZtWeKU5aikCtKXDYK" + }, + "href": "https://api.spotify.com/v1/albums/5Oc8vZtWeKU5aikCtKXDYK", + "id": "5Oc8vZtWeKU5aikCtKXDYK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273060527443968eda6776ba762", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02060527443968eda6776ba762", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851060527443968eda6776ba762", + "width": 64 + } + ], + "is_playable": true, + "name": "Modern Synthesis", + "release_date": "2016-07-01", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:5Oc8vZtWeKU5aikCtKXDYK" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216506, + "explicit": false, + "external_ids": { "isrc": "UK9291600010" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1PkSZNDQNdgCLG4RtgMjlD" + }, + "href": "https://api.spotify.com/v1/tracks/1PkSZNDQNdgCLG4RtgMjlD", + "id": "1PkSZNDQNdgCLG4RtgMjlD", + "is_local": false, + "is_playable": true, + "name": "After the Flags", + "popularity": 15, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1PkSZNDQNdgCLG4RtgMjlD" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" - }, - "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", - "id": "2Q4FR4Ss0mh6EvbiQBHEOU", - "name": "Oona Doherty", - "type": "artist", - "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 337414, - "explicit": true, - "external_ids": { - "isrc": "UK7MC2400059" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" - }, - "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", - "id": "08Jhu8OZ6gCIGWQn6vP3uI", - "is_local": false, - "name": "Falling Together", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/2fa5fc5e733495719170f672a07b172bf678a89f?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 12, - "type": "track", - "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" + }, + "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", + "id": "6gePAokYlEquPQ4LDVc1ri", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099", + "width": 64 + } + ], + "is_playable": true, + "name": "I Run", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 129565, + "explicit": false, + "external_ids": { "isrc": "CA5KR2603887" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/0PCCGZ0wGLizHt2KZ7hhA2" + "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" }, - "href": "https://api.spotify.com/v1/artists/0PCCGZ0wGLizHt2KZ7hhA2", - "id": "0PCCGZ0wGLizHt2KZ7hhA2", - "name": "Artemas", - "type": "artist", - "uri": "spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5HIWDdg3g9CTOtnevKDl1z" + "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", + "id": "1WwQ714xuznu44tEnkem2g", + "is_local": false, + "is_playable": true, + "name": "I Run", + "popularity": 86, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" }, - "href": "https://api.spotify.com/v1/albums/5HIWDdg3g9CTOtnevKDl1z", - "id": "5HIWDdg3g9CTOtnevKDl1z", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e67611dbbf69a90d0b6cb738", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e67611dbbf69a90d0b6cb738", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e67611dbbf69a90d0b6cb738", - "width": 64 - } - ], - "name": "i like the way you kiss me", - "release_date": "2024-03-19", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5HIWDdg3g9CTOtnevKDl1z" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0PCCGZ0wGLizHt2KZ7hhA2" - }, - "href": "https://api.spotify.com/v1/artists/0PCCGZ0wGLizHt2KZ7hhA2", - "id": "0PCCGZ0wGLizHt2KZ7hhA2", - "name": "Artemas", - "type": "artist", - "uri": "spotify:artist:0PCCGZ0wGLizHt2KZ7hhA2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 142514, - "explicit": false, - "external_ids": { - "isrc": "QZJ842400387" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2GxrNKugF82CnoRFbQfzPf" - }, - "href": "https://api.spotify.com/v1/tracks/2GxrNKugF82CnoRFbQfzPf", - "id": "2GxrNKugF82CnoRFbQfzPf", - "is_local": false, - "name": "i like the way you kiss me", - "popularity": 87, - "preview_url": "https://p.scdn.co/mp3-preview/6ce9233edb212fe7cf02273f4369d2c60c28e887?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2GxrNKugF82CnoRFbQfzPf" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" + }, + "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", + "id": "76TvRLbqtgOcAoIsBplbfz", + "name": "Soft Faith", + "type": "artist", + "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" + }, + "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", + "id": "0lDo9zbShSX0EXnxLpUZIU", + "name": "LEXXE", + "type": "artist", + "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2k9qbwMJmO8HTT9TiYIeTG" + }, + "href": "https://api.spotify.com/v1/albums/2k9qbwMJmO8HTT9TiYIeTG", + "id": "2k9qbwMJmO8HTT9TiYIeTG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27340a6359bfce111ee9afedf92", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0240a6359bfce111ee9afedf92", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485140a6359bfce111ee9afedf92", + "width": 64 + } + ], + "is_playable": true, + "name": "Hold Me Closer", + "release_date": "2025-07-03", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2k9qbwMJmO8HTT9TiYIeTG" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" + }, + "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", + "id": "76TvRLbqtgOcAoIsBplbfz", + "name": "Soft Faith", + "type": "artist", + "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" + }, + "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", + "id": "0lDo9zbShSX0EXnxLpUZIU", + "name": "LEXXE", + "type": "artist", + "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 199680, + "explicit": false, + "external_ids": { "isrc": "QZTB52535927" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" + "spotify": "https://open.spotify.com/track/3Z9opAvcyRGRJBV6VcaptT" }, - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "name": "Onkruid", - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3zdCJ99bye9e0G6U8w4ajS" + "href": "https://api.spotify.com/v1/tracks/3Z9opAvcyRGRJBV6VcaptT", + "id": "3Z9opAvcyRGRJBV6VcaptT", + "is_local": false, + "is_playable": true, + "name": "Hold Me Closer", + "popularity": 18, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3Z9opAvcyRGRJBV6VcaptT" }, - "href": "https://api.spotify.com/v1/albums/3zdCJ99bye9e0G6U8w4ajS", - "id": "3zdCJ99bye9e0G6U8w4ajS", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27310b56c729a899af9d12a5a27", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0210b56c729a899af9d12a5a27", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485110b56c729a899af9d12a5a27", - "width": 64 - } - ], - "name": "Zo Gemeen", - "release_date": "2023-09-23", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:3zdCJ99bye9e0G6U8w4ajS" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" - }, - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "name": "Onkruid", - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 149116, - "explicit": false, - "external_ids": { - "isrc": "SEYOK2329533" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/09D3ELdbZ4JZ1si0Nitv9t" - }, - "href": "https://api.spotify.com/v1/tracks/09D3ELdbZ4JZ1si0Nitv9t", - "id": "09D3ELdbZ4JZ1si0Nitv9t", - "is_local": false, - "name": "Zo Gemeen", - "popularity": 3, - "preview_url": "https://p.scdn.co/mp3-preview/a135cb600cc40e0927b4a64d7aac9d6f22539db7?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:09D3ELdbZ4JZ1si0Nitv9t" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" + }, + "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", + "id": "5pdyjBIaY5o1yOyexGIUc6", + "name": "Lights", + "type": "artist", + "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4aR6RrvJDzBrXYQTx7x5p5" + }, + "href": "https://api.spotify.com/v1/albums/4aR6RrvJDzBrXYQTx7x5p5", + "id": "4aR6RrvJDzBrXYQTx7x5p5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c9f25860a66cf9f593b38b57", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c9f25860a66cf9f593b38b57", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c9f25860a66cf9f593b38b57", + "width": 64 + } + ], + "is_playable": true, + "name": "A6EXTENDED", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 21, + "type": "album", + "uri": "spotify:album:4aR6RrvJDzBrXYQTx7x5p5" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" + }, + "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", + "id": "5pdyjBIaY5o1yOyexGIUc6", + "name": "Lights", + "type": "artist", + "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230117, + "explicit": false, + "external_ids": { "isrc": "CACN02500016" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/4yvcSjfu4PC0CYQyLy4wSq" + "spotify": "https://open.spotify.com/track/3J3RYcIvUlauZxZI6hPLun" }, - "href": "https://api.spotify.com/v1/artists/4yvcSjfu4PC0CYQyLy4wSq", - "id": "4yvcSjfu4PC0CYQyLy4wSq", - "name": "Glass Animals", - "type": "artist", - "uri": "spotify:artist:4yvcSjfu4PC0CYQyLy4wSq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6X2fbRz8huOXlxzId6ET7J" + "href": "https://api.spotify.com/v1/tracks/3J3RYcIvUlauZxZI6hPLun", + "id": "3J3RYcIvUlauZxZI6hPLun", + "is_local": false, + "is_playable": true, + "name": "EDUCATION", + "popularity": 41, + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3J3RYcIvUlauZxZI6hPLun" }, - "href": "https://api.spotify.com/v1/albums/6X2fbRz8huOXlxzId6ET7J", - "id": "6X2fbRz8huOXlxzId6ET7J", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27339266eeddfd90b43ba544f7b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0239266eeddfd90b43ba544f7b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485139266eeddfd90b43ba544f7b", - "width": 64 - } - ], - "name": "A Tear in Space (Airlock)", - "release_date": "2024-06-07", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6X2fbRz8huOXlxzId6ET7J" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4yvcSjfu4PC0CYQyLy4wSq" - }, - "href": "https://api.spotify.com/v1/artists/4yvcSjfu4PC0CYQyLy4wSq", - "id": "4yvcSjfu4PC0CYQyLy4wSq", - "name": "Glass Animals", - "type": "artist", - "uri": "spotify:artist:4yvcSjfu4PC0CYQyLy4wSq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203989, - "explicit": false, - "external_ids": { - "isrc": "GBUM72400788" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Bi1Y7TD70eWTCKn7jsQQm" - }, - "href": "https://api.spotify.com/v1/tracks/6Bi1Y7TD70eWTCKn7jsQQm", - "id": "6Bi1Y7TD70eWTCKn7jsQQm", - "is_local": false, - "name": "A Tear in Space (Airlock)", - "popularity": 64, - "preview_url": "https://p.scdn.co/mp3-preview/639317613071022ae5b463bd23ba3613c429c5c9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:6Bi1Y7TD70eWTCKn7jsQQm" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" + }, + "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", + "id": "54apQNp3ruFrK20sYZvmdf", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95", + "width": 64 + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 1", + "release_date": "2025-09-24", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_ids": { "isrc": "QT3F22572862" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" + "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" }, - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "name": "Purple Disco Machine", - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" - }, - { + "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", + "id": "0f56nfzpUaXE6t5E3oza3q", + "is_local": false, + "is_playable": true, + "name": "Arrow splitter", + "popularity": 37, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" + }, + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "width": 64 + } + ], + "is_playable": true, + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173251, + "explicit": false, + "external_ids": { "isrc": "GBUM72501847" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/7jEEE187pVG6InOxn03oA5" + "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" }, - "href": "https://api.spotify.com/v1/artists/7jEEE187pVG6InOxn03oA5", - "id": "7jEEE187pVG6InOxn03oA5", - "name": "Benjamin Ingrosso", - "type": "artist", - "uri": "spotify:artist:7jEEE187pVG6InOxn03oA5" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0WWjvPdLmnwYrTi03XJ9ib" + "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", + "id": "4qM72D1GHUQRXwnmLZUcMH", + "is_local": false, + "is_playable": true, + "name": "Do It Again", + "popularity": 42, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH" }, - "href": "https://api.spotify.com/v1/albums/0WWjvPdLmnwYrTi03XJ9ib", - "id": "0WWjvPdLmnwYrTi03XJ9ib", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27351254e0f220bfed7028497ac", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0251254e0f220bfed7028497ac", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485151254e0f220bfed7028497ac", - "width": 64 - } - ], - "name": "Honey Boy (feat. Nile Rodgers & Shenseea)", - "release_date": "2024-05-03", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:0WWjvPdLmnwYrTi03XJ9ib" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" - }, - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "name": "Purple Disco Machine", - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4pPLwz3J2zEskvu1Z6ATQ6" + }, + "href": "https://api.spotify.com/v1/albums/4pPLwz3J2zEskvu1Z6ATQ6", + "id": "4pPLwz3J2zEskvu1Z6ATQ6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273209cf8ab39b8856a6ab9668e", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02209cf8ab39b8856a6ab9668e", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851209cf8ab39b8856a6ab9668e", + "width": 64 + } + ], + "is_playable": true, + "name": "Avenue", + "release_date": "2022-10-07", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4pPLwz3J2zEskvu1Z6ATQ6" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 182013, + "explicit": false, + "external_ids": { "isrc": "DEQ322200330" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CjwjsGzDVn2hwREI6BKoY" + }, + "href": "https://api.spotify.com/v1/tracks/6CjwjsGzDVn2hwREI6BKoY", + "id": "6CjwjsGzDVn2hwREI6BKoY", + "is_local": false, + "is_playable": true, + "name": "Avenue", + "popularity": 42, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6CjwjsGzDVn2hwREI6BKoY" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7jEEE187pVG6InOxn03oA5" - }, - "href": "https://api.spotify.com/v1/artists/7jEEE187pVG6InOxn03oA5", - "id": "7jEEE187pVG6InOxn03oA5", - "name": "Benjamin Ingrosso", - "type": "artist", - "uri": "spotify:artist:7jEEE187pVG6InOxn03oA5" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6NBVjRVV1TNiZ3a9odGlOQ" + }, + "href": "https://api.spotify.com/v1/albums/6NBVjRVV1TNiZ3a9odGlOQ", + "id": "6NBVjRVV1TNiZ3a9odGlOQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736549db795138dc2b76258712", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026549db795138dc2b76258712", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516549db795138dc2b76258712", + "width": 64 + } + ], + "is_playable": true, + "name": "A View From The End Of The World", + "release_date": "2010-01-01", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:6NBVjRVV1TNiZ3a9odGlOQ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212000, + "explicit": false, + "external_ids": { "isrc": "FIUM71001654" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3YjFUYTXrJrFsYXmxaXmqY" + }, + "href": "https://api.spotify.com/v1/tracks/3YjFUYTXrJrFsYXmxaXmqY", + "id": "3YjFUYTXrJrFsYXmxaXmqY", + "is_local": false, + "is_playable": true, + "name": "The Greatest Show On Earth", + "popularity": 17, + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:3YjFUYTXrJrFsYXmxaXmqY" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3yDIp0kaq9EFKe07X1X2rz" - }, - "href": "https://api.spotify.com/v1/artists/3yDIp0kaq9EFKe07X1X2rz", - "id": "3yDIp0kaq9EFKe07X1X2rz", - "name": "Nile Rodgers", - "type": "artist", - "uri": "spotify:artist:3yDIp0kaq9EFKe07X1X2rz" + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" + }, + "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", + "id": "1jmVSpWhzD8vciWg2Qtd5V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae", + "width": 64 + } + ], + "is_playable": true, + "name": "Think About Us", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178148, + "explicit": false, + "external_ids": { "isrc": "US39N2510213" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" + }, + "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", + "id": "0lRnxwJeUOxwEvWMw4uQKj", + "is_local": false, + "is_playable": true, + "name": "Think About Us", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1OFOShsIbhy1l5x73yuVyB" - }, - "href": "https://api.spotify.com/v1/artists/1OFOShsIbhy1l5x73yuVyB", - "id": "1OFOShsIbhy1l5x73yuVyB", - "name": "Shenseea", - "type": "artist", - "uri": "spotify:artist:1OFOShsIbhy1l5x73yuVyB" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227283, - "explicit": false, - "external_ids": { - "isrc": "DEE862400579" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1NpIUD4KqHaMT91kw0YV40" - }, - "href": "https://api.spotify.com/v1/tracks/1NpIUD4KqHaMT91kw0YV40", - "id": "1NpIUD4KqHaMT91kw0YV40", - "is_local": false, - "name": "Honey Boy (feat. Nile Rodgers & Shenseea)", - "popularity": 73, - "preview_url": "https://p.scdn.co/mp3-preview/de716bf343165b7f50dac1020d72cc442aa19182?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1NpIUD4KqHaMT91kw0YV40" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" + }, + "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", + "id": "48QP1FCIq76VufzDPShGi5", + "name": "Auger", + "type": "artist", + "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/468UoiP1ZXTvpSERBIri1j" + }, + "href": "https://api.spotify.com/v1/albums/468UoiP1ZXTvpSERBIri1j", + "id": "468UoiP1ZXTvpSERBIri1j", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a61bd5bca56d2b07e1d1ee11", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a61bd5bca56d2b07e1d1ee11", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a61bd5bca56d2b07e1d1ee11", + "width": 64 + } + ], + "is_playable": true, + "name": "Too Soon", + "release_date": "2025-09-26", + "release_date_precision": "day", + "total_tracks": 2, + "type": "album", + "uri": "spotify:album:468UoiP1ZXTvpSERBIri1j" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" + }, + "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", + "id": "48QP1FCIq76VufzDPShGi5", + "name": "Auger", + "type": "artist", + "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0O6Y0Loo99vhWd86Hls3L5" + }, + "href": "https://api.spotify.com/v1/artists/0O6Y0Loo99vhWd86Hls3L5", + "id": "0O6Y0Loo99vhWd86Hls3L5", + "name": "Bonnie Mavis", + "type": "artist", + "uri": "spotify:artist:0O6Y0Loo99vhWd86Hls3L5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220754, + "explicit": false, + "external_ids": { "isrc": "DEZC62514448" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/74KM79TiuVKeVCqs8QtB0B" + "spotify": "https://open.spotify.com/track/2N3GqfCKAbHkmGW69RzWN9" }, - "href": "https://api.spotify.com/v1/artists/74KM79TiuVKeVCqs8QtB0B", - "id": "74KM79TiuVKeVCqs8QtB0B", - "name": "Sabrina Carpenter", - "type": "artist", - "uri": "spotify:artist:74KM79TiuVKeVCqs8QtB0B" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5quMTd5zeI9yW5UDua8wS4" + "href": "https://api.spotify.com/v1/tracks/2N3GqfCKAbHkmGW69RzWN9", + "id": "2N3GqfCKAbHkmGW69RzWN9", + "is_local": false, + "is_playable": true, + "name": "Too Soon", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2N3GqfCKAbHkmGW69RzWN9" }, - "href": "https://api.spotify.com/v1/albums/5quMTd5zeI9yW5UDua8wS4", - "id": "5quMTd5zeI9yW5UDua8wS4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273659cd4673230913b3918e0d5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02659cd4673230913b3918e0d5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851659cd4673230913b3918e0d5", - "width": 64 - } - ], - "name": "Espresso", - "release_date": "2024-04-12", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5quMTd5zeI9yW5UDua8wS4" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74KM79TiuVKeVCqs8QtB0B" - }, - "href": "https://api.spotify.com/v1/artists/74KM79TiuVKeVCqs8QtB0B", - "id": "74KM79TiuVKeVCqs8QtB0B", - "name": "Sabrina Carpenter", - "type": "artist", - "uri": "spotify:artist:74KM79TiuVKeVCqs8QtB0B" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 175459, - "explicit": true, - "external_ids": { - "isrc": "USUM72403305" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75" - }, - "href": "https://api.spotify.com/v1/tracks/2qSkIjg1o9h3YT9RAgYN75", - "id": "2qSkIjg1o9h3YT9RAgYN75", - "is_local": false, - "name": "Espresso", - "popularity": 95, - "preview_url": "https://p.scdn.co/mp3-preview/c4f4406777deb17f09c0237b22044a8b18d986a4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2qSkIjg1o9h3YT9RAgYN75" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3q0YOrU7o2opcNSvPWwH5g" + }, + "href": "https://api.spotify.com/v1/albums/3q0YOrU7o2opcNSvPWwH5g", + "id": "3q0YOrU7o2opcNSvPWwH5g", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27381ddb1d811d3fbc640b4b123", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0281ddb1d811d3fbc640b4b123", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485181ddb1d811d3fbc640b4b123", + "width": 64 + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 3", + "release_date": "2025-11-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:3q0YOrU7o2opcNSvPWwH5g" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206439, + "explicit": false, + "external_ids": { "isrc": "QT6ED2527743" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/4MVyzYMgTwdP7Z49wAZHx0" + "spotify": "https://open.spotify.com/track/5syCodXydzRuemOKomfq7m" }, - "href": "https://api.spotify.com/v1/artists/4MVyzYMgTwdP7Z49wAZHx0", - "id": "4MVyzYMgTwdP7Z49wAZHx0", - "name": "Lynyrd Skynyrd", - "type": "artist", - "uri": "spotify:artist:4MVyzYMgTwdP7Z49wAZHx0" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6DExt1eX4lflLacVjHHbOs" + "href": "https://api.spotify.com/v1/tracks/5syCodXydzRuemOKomfq7m", + "id": "5syCodXydzRuemOKomfq7m", + "is_local": false, + "is_playable": true, + "name": "Slay It, Then Saut\u00e9 It", + "popularity": 36, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5syCodXydzRuemOKomfq7m" }, - "href": "https://api.spotify.com/v1/albums/6DExt1eX4lflLacVjHHbOs", - "id": "6DExt1eX4lflLacVjHHbOs", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273128450651c9f0442780d8eb8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02128450651c9f0442780d8eb8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851128450651c9f0442780d8eb8", - "width": 64 - } - ], - "name": "Pronounced' Leh-'Nerd 'Skin-'Nerd", - "release_date": "1973-01-01", - "release_date_precision": "day", - "total_tracks": 8, - "type": "album", - "uri": "spotify:album:6DExt1eX4lflLacVjHHbOs" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4MVyzYMgTwdP7Z49wAZHx0" - }, - "href": "https://api.spotify.com/v1/artists/4MVyzYMgTwdP7Z49wAZHx0", - "id": "4MVyzYMgTwdP7Z49wAZHx0", - "name": "Lynyrd Skynyrd", - "type": "artist", - "uri": "spotify:artist:4MVyzYMgTwdP7Z49wAZHx0" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 547106, - "explicit": false, - "external_ids": { - "isrc": "USMC17301722" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5EWPGh7jbTNO2wakv8LjUI" - }, - "href": "https://api.spotify.com/v1/tracks/5EWPGh7jbTNO2wakv8LjUI", - "id": "5EWPGh7jbTNO2wakv8LjUI", - "is_local": false, - "name": "Free Bird", - "popularity": 76, - "preview_url": "https://p.scdn.co/mp3-preview/52d7f7506e9ac5e3fc059183c2db33f0dfd9b8e4?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:5EWPGh7jbTNO2wakv8LjUI" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" + }, + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "name": "Tove Lo", + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0HO9NtwyP7ZqB1jZ70MJL6" + }, + "href": "https://api.spotify.com/v1/albums/0HO9NtwyP7ZqB1jZ70MJL6", + "id": "0HO9NtwyP7ZqB1jZ70MJL6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273aeb431774ee02fb6b7a9fea3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02aeb431774ee02fb6b7a9fea3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851aeb431774ee02fb6b7a9fea3", + "width": 64 + } + ], + "is_playable": true, + "name": "Dirt Femme", + "release_date": "2022-10-14", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:0HO9NtwyP7ZqB1jZ70MJL6" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" + }, + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "name": "Tove Lo", + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231333, + "explicit": false, + "external_ids": { "isrc": "QMUY42200072" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/66FZq0wsY6770bc4O9Dlig" + "spotify": "https://open.spotify.com/track/7owdogCJWuV3VFpluGIKgH" }, - "href": "https://api.spotify.com/v1/artists/66FZq0wsY6770bc4O9Dlig", - "id": "66FZq0wsY6770bc4O9Dlig", - "name": "Vieze Asbak", - "type": "artist", - "uri": "spotify:artist:66FZq0wsY6770bc4O9Dlig" - }, - { + "href": "https://api.spotify.com/v1/tracks/7owdogCJWuV3VFpluGIKgH", + "id": "7owdogCJWuV3VFpluGIKgH", + "is_local": false, + "is_playable": true, + "name": "Grapefruit", + "popularity": 49, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7owdogCJWuV3VFpluGIKgH" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" + }, + "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", + "id": "3Jvz71ZoKZaTQbbQyXfHwT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", + "width": 64 + } + ], + "is_playable": true, + "name": "USB", + "release_date": "2026-01-23", + "release_date_precision": "day", + "total_tracks": 35, + "type": "album", + "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" + }, + "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", + "id": "3an9rnsXKPCAMlZgH4A0n4", + "name": "KETTAMA", + "type": "artist", + "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" + }, + "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", + "id": "5fEdUhbIAf9JlPhlc3swPx", + "name": "Shady Nasty", + "type": "artist", + "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286285, + "explicit": true, + "external_ids": { "isrc": "GBAHS2501370" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6TQQsMsMKQBHjZrFv63d90" + "spotify": "https://open.spotify.com/track/2Fxdbus1OWJBhy3NMHUF7J" + }, + "href": "https://api.spotify.com/v1/tracks/2Fxdbus1OWJBhy3NMHUF7J", + "id": "2Fxdbus1OWJBhy3NMHUF7J", + "is_local": false, + "is_playable": true, + "name": "HARDSTYLE 2", + "popularity": 55, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2Fxdbus1OWJBhy3NMHUF7J" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" + }, + "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", + "id": "1gfIkFZ4hIs2gETkRVaY68", + "name": "Sons of the Pioneers", + "type": "artist", + "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" + } + ], + "available_markets": ["PR", "US"], + "external_urls": { + "spotify": "https://open.spotify.com/album/43W6LvGekoOd3Yk5ym8Bj7" + }, + "href": "https://api.spotify.com/v1/albums/43W6LvGekoOd3Yk5ym8Bj7", + "id": "43W6LvGekoOd3Yk5ym8Bj7", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27375b0c528969decafb51425a4", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0275b0c528969decafb51425a4", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485175b0c528969decafb51425a4", + "width": 64 + } + ], + "is_playable": true, + "name": "Cool Water (With Bonus Tracks)", + "release_date": "1959-05-10", + "release_date_precision": "day", + "total_tracks": 24, + "type": "album", + "uri": "spotify:album:43W6LvGekoOd3Yk5ym8Bj7" }, - "href": "https://api.spotify.com/v1/artists/6TQQsMsMKQBHjZrFv63d90", - "id": "6TQQsMsMKQBHjZrFv63d90", - "name": "HET POMPSTATION", - "type": "artist", - "uri": "spotify:artist:6TQQsMsMKQBHjZrFv63d90" - }, - { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" + }, + "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", + "id": "1gfIkFZ4hIs2gETkRVaY68", + "name": "Sons of the Pioneers", + "type": "artist", + "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" + } + ], + "available_markets": ["PR", "US"], + "disc_number": 1, + "duration_ms": 141946, + "explicit": false, + "external_ids": { "isrc": "USRN10100775" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/2DPRgxvMDx9oQNR25vUIIG" + "spotify": "https://open.spotify.com/track/5kI7vpum3qPDB8ZT6rSPNV" }, - "href": "https://api.spotify.com/v1/artists/2DPRgxvMDx9oQNR25vUIIG", - "id": "2DPRgxvMDx9oQNR25vUIIG", - "name": "Kamping Kitsch Club Soundsystem", - "type": "artist", - "uri": "spotify:artist:2DPRgxvMDx9oQNR25vUIIG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5rZHUmbp3BNHmPrwvGQfca" + "href": "https://api.spotify.com/v1/tracks/5kI7vpum3qPDB8ZT6rSPNV", + "id": "5kI7vpum3qPDB8ZT6rSPNV", + "is_local": false, + "is_playable": true, + "name": "Riders In The Sky", + "popularity": 38, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:5kI7vpum3qPDB8ZT6rSPNV" }, - "href": "https://api.spotify.com/v1/albums/5rZHUmbp3BNHmPrwvGQfca", - "id": "5rZHUmbp3BNHmPrwvGQfca", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734c76dc3658c213a1aae458e6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024c76dc3658c213a1aae458e6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514c76dc3658c213a1aae458e6", - "width": 64 - } - ], - "name": "De Kamping Is Van Ons (Official 2023 Kamping Kitsch Club Anthem)", - "release_date": "2023-06-09", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5rZHUmbp3BNHmPrwvGQfca" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66FZq0wsY6770bc4O9Dlig" - }, - "href": "https://api.spotify.com/v1/artists/66FZq0wsY6770bc4O9Dlig", - "id": "66FZq0wsY6770bc4O9Dlig", - "name": "Vieze Asbak", - "type": "artist", - "uri": "spotify:artist:66FZq0wsY6770bc4O9Dlig" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" + }, + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "width": 64 + } + ], + "is_playable": true, + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172889, + "explicit": false, + "external_ids": { "isrc": "GBUM72501846" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" + }, + "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", + "id": "67WAthizRvsLDjgzIZs27h", + "is_local": false, + "is_playable": true, + "name": "Two Years", + "popularity": 41, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:67WAthizRvsLDjgzIZs27h" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2DPRgxvMDx9oQNR25vUIIG" - }, - "href": "https://api.spotify.com/v1/artists/2DPRgxvMDx9oQNR25vUIIG", - "id": "2DPRgxvMDx9oQNR25vUIIG", - "name": "Kamping Kitsch Club Soundsystem", - "type": "artist", - "uri": "spotify:artist:2DPRgxvMDx9oQNR25vUIIG" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" + }, + "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", + "id": "2ZRQcIgzPCVaT9XKhXZIzh", + "name": "Gryffin", + "type": "artist", + "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2IAVHJdaRPFA6MQqXHoG75" + }, + "href": "https://api.spotify.com/v1/albums/2IAVHJdaRPFA6MQqXHoG75", + "id": "2IAVHJdaRPFA6MQqXHoG75", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730e5311993a01fb2e7169f6a7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020e5311993a01fb2e7169f6a7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048510e5311993a01fb2e7169f6a7", + "width": 64 + } + ], + "is_playable": true, + "name": "Gravity", + "release_date": "2019-10-24", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:2IAVHJdaRPFA6MQqXHoG75" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" + }, + "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", + "id": "2ZRQcIgzPCVaT9XKhXZIzh", + "name": "Gryffin", + "type": "artist", + "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2JfoFQs5wPHgLz8wnJ4wL2" + }, + "href": "https://api.spotify.com/v1/artists/2JfoFQs5wPHgLz8wnJ4wL2", + "id": "2JfoFQs5wPHgLz8wnJ4wL2", + "name": "ZOHARA", + "type": "artist", + "uri": "spotify:artist:2JfoFQs5wPHgLz8wnJ4wL2" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221129, + "explicit": false, + "external_ids": { "isrc": "USUM71817462" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3aFxfpfeATHYg1n750dhgq" + }, + "href": "https://api.spotify.com/v1/tracks/3aFxfpfeATHYg1n750dhgq", + "id": "3aFxfpfeATHYg1n750dhgq", + "is_local": false, + "is_playable": true, + "name": "Remember (with ZOHARA)", + "popularity": 54, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3aFxfpfeATHYg1n750dhgq" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6TQQsMsMKQBHjZrFv63d90" - }, - "href": "https://api.spotify.com/v1/artists/6TQQsMsMKQBHjZrFv63d90", - "id": "6TQQsMsMKQBHjZrFv63d90", - "name": "HET POMPSTATION", - "type": "artist", - "uri": "spotify:artist:6TQQsMsMKQBHjZrFv63d90" + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" + }, + "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", + "id": "543ccHFPnZfJMD8tRGPtu7", + "name": "James Smith", + "type": "artist", + "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7qo7ithHnDDufzWRUkpTHq" + }, + "href": "https://api.spotify.com/v1/albums/7qo7ithHnDDufzWRUkpTHq", + "id": "7qo7ithHnDDufzWRUkpTHq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2733ef65e80e82a07db7d2ce6f8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e023ef65e80e82a07db7d2ce6f8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048513ef65e80e82a07db7d2ce6f8", + "width": 64 + } + ], + "is_playable": true, + "name": "Jesus Is A Woman", + "release_date": "2025-08-29", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:7qo7ithHnDDufzWRUkpTHq" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" + }, + "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", + "id": "543ccHFPnZfJMD8tRGPtu7", + "name": "James Smith", + "type": "artist", + "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190529, + "explicit": false, + "external_ids": { "isrc": "GBQGW2500068" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/10ZuUH8nrb4IbRRJUmsFXq" + }, + "href": "https://api.spotify.com/v1/tracks/10ZuUH8nrb4IbRRJUmsFXq", + "id": "10ZuUH8nrb4IbRRJUmsFXq", + "is_local": false, + "is_playable": true, + "name": "Jesus Is A Woman", + "popularity": 29, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:10ZuUH8nrb4IbRRJUmsFXq" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3fLUixLOM1KxH2PgdN3PMK" - }, - "href": "https://api.spotify.com/v1/artists/3fLUixLOM1KxH2PgdN3PMK", - "id": "3fLUixLOM1KxH2PgdN3PMK", - "name": "Yung Petsi", - "type": "artist", - "uri": "spotify:artist:3fLUixLOM1KxH2PgdN3PMK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 195750, - "explicit": false, - "external_ids": { - "isrc": "UKZGC2303728" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/53OU7d2qWJskS1AL35vAUh" - }, - "href": "https://api.spotify.com/v1/tracks/53OU7d2qWJskS1AL35vAUh", - "id": "53OU7d2qWJskS1AL35vAUh", - "is_local": false, - "name": "De Kamping Is Van Ons - Official 2023 Kamping Kitsch Club Anthem", - "popularity": 24, - "preview_url": "https://p.scdn.co/mp3-preview/5768be92fb68ab86f7713be2c4eccc00c247d51d?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:53OU7d2qWJskS1AL35vAUh" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/06z3wshQtpYwZnDoVle3pw" + }, + "href": "https://api.spotify.com/v1/albums/06z3wshQtpYwZnDoVle3pw", + "id": "06z3wshQtpYwZnDoVle3pw", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c7f55a59f035464b5b97b305", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c7f55a59f035464b5b97b305", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c7f55a59f035464b5b97b305", + "width": 64 + } + ], + "is_playable": true, + "name": "Contact", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:06z3wshQtpYwZnDoVle3pw" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 184827, + "explicit": false, + "external_ids": { "isrc": "GBUM72500754" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/1YEGETLT2p8k97LIo3deHL" + "spotify": "https://open.spotify.com/track/3zMBJKHkqDqm0ZVMKGLHak" }, - "href": "https://api.spotify.com/v1/artists/1YEGETLT2p8k97LIo3deHL", - "id": "1YEGETLT2p8k97LIo3deHL", - "name": "Crash Test Dummies", - "type": "artist", - "uri": "spotify:artist:1YEGETLT2p8k97LIo3deHL" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/03dlqdFWY9gwJxGl3AREVy" + "href": "https://api.spotify.com/v1/tracks/3zMBJKHkqDqm0ZVMKGLHak", + "id": "3zMBJKHkqDqm0ZVMKGLHak", + "is_local": false, + "is_playable": true, + "name": "On & On (feat. bbyclose)", + "popularity": 59, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3zMBJKHkqDqm0ZVMKGLHak" }, - "href": "https://api.spotify.com/v1/albums/03dlqdFWY9gwJxGl3AREVy", - "id": "03dlqdFWY9gwJxGl3AREVy", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273df9d39dded05faa9ed520ca6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02df9d39dded05faa9ed520ca6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851df9d39dded05faa9ed520ca6", - "width": 64 - } - ], - "name": "God Shuffled His Feet", - "release_date": "1993-04-05", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:03dlqdFWY9gwJxGl3AREVy" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1YEGETLT2p8k97LIo3deHL" - }, - "href": "https://api.spotify.com/v1/artists/1YEGETLT2p8k97LIo3deHL", - "id": "1YEGETLT2p8k97LIo3deHL", - "name": "Crash Test Dummies", - "type": "artist", - "uri": "spotify:artist:1YEGETLT2p8k97LIo3deHL" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 235173, - "explicit": false, - "external_ids": { - "isrc": "CAA359300084" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/31v2AQlx4pDI7kmnLxBkem" - }, - "href": "https://api.spotify.com/v1/tracks/31v2AQlx4pDI7kmnLxBkem", - "id": "31v2AQlx4pDI7kmnLxBkem", - "is_local": false, - "name": "Mmm Mmm Mmm Mmm", - "popularity": 64, - "preview_url": "https://p.scdn.co/mp3-preview/9c0f2b94c3c85fc12c085e439ac0d8c8fef096fe?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:31v2AQlx4pDI7kmnLxBkem" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" + }, + "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", + "id": "10VNoWgGKiAas5dWkpCUHL", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0", + "width": 64 + } + ], + "is_playable": true, + "name": "Light Back In (Special Metal version)", + "release_date": "2025-08-01", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202805, + "explicit": false, + "external_ids": { "isrc": "DEA372013916" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/7uGeDBa1LJ7T1X4fpl8mwk" + "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" + }, + "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", + "id": "34vearIqjyFqWWPZKPPxvH", + "is_local": false, + "is_playable": true, + "name": "Light Back In - Special Metal Version - Radio Edit", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" + }, + "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", + "id": "4FmJD0mpgQ70SNt2EKK8tq", + "name": "Miracle Of Sound", + "type": "artist", + "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4HUG49D7cBMLrcavbReCG8" + }, + "href": "https://api.spotify.com/v1/albums/4HUG49D7cBMLrcavbReCG8", + "id": "4HUG49D7cBMLrcavbReCG8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736e156986dc730ab3f4379381", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026e156986dc730ab3f4379381", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516e156986dc730ab3f4379381", + "width": 64 + } + ], + "is_playable": true, + "name": "Level 12", + "release_date": "2023-06-02", + "release_date_precision": "day", + "total_tracks": 15, + "type": "album", + "uri": "spotify:album:4HUG49D7cBMLrcavbReCG8" }, - "href": "https://api.spotify.com/v1/artists/7uGeDBa1LJ7T1X4fpl8mwk", - "id": "7uGeDBa1LJ7T1X4fpl8mwk", - "name": "Bad Computer", - "type": "artist", - "uri": "spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk" - }, - { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" + }, + "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", + "id": "4FmJD0mpgQ70SNt2EKK8tq", + "name": "Miracle Of Sound", + "type": "artist", + "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 168948, + "explicit": false, + "external_ids": { "isrc": "QZK6K2302976" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/22TzutcnmM3B1e7mWLY0f7" + "spotify": "https://open.spotify.com/track/6ybRWbM4jdku0Pk8SzjORB" }, - "href": "https://api.spotify.com/v1/artists/22TzutcnmM3B1e7mWLY0f7", - "id": "22TzutcnmM3B1e7mWLY0f7", - "name": "Ryan Coss", - "type": "artist", - "uri": "spotify:artist:22TzutcnmM3B1e7mWLY0f7" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7dPYE1Uoic9mBMFgwcqPaR" + "href": "https://api.spotify.com/v1/tracks/6ybRWbM4jdku0Pk8SzjORB", + "id": "6ybRWbM4jdku0Pk8SzjORB", + "is_local": false, + "is_playable": true, + "name": "Skal", + "popularity": 62, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6ybRWbM4jdku0Pk8SzjORB" }, - "href": "https://api.spotify.com/v1/albums/7dPYE1Uoic9mBMFgwcqPaR", - "id": "7dPYE1Uoic9mBMFgwcqPaR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b53ceefc28ae70e4189fbcdc", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b53ceefc28ae70e4189fbcdc", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b53ceefc28ae70e4189fbcdc", - "width": 64 - } - ], - "name": "4D", - "release_date": "2024-01-08", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:7dPYE1Uoic9mBMFgwcqPaR" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7uGeDBa1LJ7T1X4fpl8mwk" - }, - "href": "https://api.spotify.com/v1/artists/7uGeDBa1LJ7T1X4fpl8mwk", - "id": "7uGeDBa1LJ7T1X4fpl8mwk", - "name": "Bad Computer", - "type": "artist", - "uri": "spotify:artist:7uGeDBa1LJ7T1X4fpl8mwk" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" + }, + "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", + "id": "5Uw20NgiZnH2WMcpQ7FdRB", + "name": "Mia Morgan", + "type": "artist", + "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0IsgnhTThoZkeCzY0Bh5JN" + }, + "href": "https://api.spotify.com/v1/albums/0IsgnhTThoZkeCzY0Bh5JN", + "id": "0IsgnhTThoZkeCzY0Bh5JN", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e48fff336e78369502ba3ab7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e48fff336e78369502ba3ab7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e48fff336e78369502ba3ab7", + "width": 64 + } + ], + "is_playable": true, + "name": "FLEISCH", + "release_date": "2022-04-29", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:0IsgnhTThoZkeCzY0Bh5JN" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" + }, + "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", + "id": "5Uw20NgiZnH2WMcpQ7FdRB", + "name": "Mia Morgan", + "type": "artist", + "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236015, + "explicit": false, + "external_ids": { "isrc": "FRX872179579" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4A6V42HNYeihI4miScgujq" + }, + "href": "https://api.spotify.com/v1/tracks/4A6V42HNYeihI4miScgujq", + "id": "4A6V42HNYeihI4miScgujq", + "is_local": false, + "is_playable": true, + "name": "JENNIFER CHECK", + "popularity": 24, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4A6V42HNYeihI4miScgujq" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/22TzutcnmM3B1e7mWLY0f7" - }, - "href": "https://api.spotify.com/v1/artists/22TzutcnmM3B1e7mWLY0f7", - "id": "22TzutcnmM3B1e7mWLY0f7", - "name": "Ryan Coss", - "type": "artist", - "uri": "spotify:artist:22TzutcnmM3B1e7mWLY0f7" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176250, - "explicit": false, - "external_ids": { - "isrc": "CA6D22300484" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2v4bGopODBEOQqWzg31R2s" - }, - "href": "https://api.spotify.com/v1/tracks/2v4bGopODBEOQqWzg31R2s", - "id": "2v4bGopODBEOQqWzg31R2s", - "is_local": false, - "name": "4D", - "popularity": 35, - "preview_url": "https://p.scdn.co/mp3-preview/d6866197316d3ccef455e07a0af5c77fb1764f85?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:2v4bGopODBEOQqWzg31R2s" - }, - { - "album": { - "album_type": "EP", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" + }, + "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", + "id": "1HGrQZLhmqlEuACUnQY7yy", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945", + "width": 64 + } + ], + "is_playable": true, + "name": "FATE of ALL", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244360, + "explicit": false, + "external_ids": { "isrc": "QZHN52659492" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/0Lwn2PjwIw7QaoN7gHyqCA" + "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" }, - "href": "https://api.spotify.com/v1/artists/0Lwn2PjwIw7QaoN7gHyqCA", - "id": "0Lwn2PjwIw7QaoN7gHyqCA", - "name": "Wolf Saga", - "type": "artist", - "uri": "spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ZKwauYXaMVezFcXV0iv5g" + "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", + "id": "29DpW469MK56dBqxSfzwDs", + "is_local": false, + "is_playable": true, + "name": "FATE of ALL", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" }, - "href": "https://api.spotify.com/v1/albums/6ZKwauYXaMVezFcXV0iv5g", - "id": "6ZKwauYXaMVezFcXV0iv5g", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273cc1bfee3c60e4e4e53ec2ed6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02cc1bfee3c60e4e4e53ec2ed6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851cc1bfee3c60e4e4e53ec2ed6", - "width": 64 - } - ], - "name": "ODAYIN, Pt. 1", - "release_date": "2024-02-23", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:6ZKwauYXaMVezFcXV0iv5g" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Lwn2PjwIw7QaoN7gHyqCA" - }, - "href": "https://api.spotify.com/v1/artists/0Lwn2PjwIw7QaoN7gHyqCA", - "id": "0Lwn2PjwIw7QaoN7gHyqCA", - "name": "Wolf Saga", - "type": "artist", - "uri": "spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222047, - "explicit": false, - "external_ids": { - "isrc": "CAQYK2300016" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6U33GnHUKkECze9LXllZ3e" - }, - "href": "https://api.spotify.com/v1/tracks/6U33GnHUKkECze9LXllZ3e", - "id": "6U33GnHUKkECze9LXllZ3e", - "is_local": false, - "name": "Night Odyssey", - "popularity": 10, - "preview_url": "https://p.scdn.co/mp3-preview/6b5f5f589897081a1dd4269e85a4fc316d0e4a88?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:6U33GnHUKkECze9LXllZ3e" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" + }, + "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", + "id": "4Xv90HE4uhD2e71SV7gSEZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813", + "width": 64 + } + ], + "is_playable": true, + "name": "Home Arcade", + "release_date": "2025-05-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176280, + "explicit": false, + "external_ids": { "isrc": "QT3TB2405473" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/1l2ekx5skC4gJH8djERwh1" + "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" }, - "href": "https://api.spotify.com/v1/artists/1l2ekx5skC4gJH8djERwh1", - "id": "1l2ekx5skC4gJH8djERwh1", - "name": "Don Diablo", - "type": "artist", - "uri": "spotify:artist:1l2ekx5skC4gJH8djERwh1" - }, - { + "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", + "id": "0qvDlGZL5TnvV80AMH3lYf", + "is_local": false, + "is_playable": true, + "name": "Touching the Sky", + "popularity": 34, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "name": "Beast In Black", + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/30O1KkbyS9bbOniw7xtQux" + }, + "href": "https://api.spotify.com/v1/albums/30O1KkbyS9bbOniw7xtQux", + "id": "30O1KkbyS9bbOniw7xtQux", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851913a6d7587d853e1dd4c1580", + "width": 64 + } + ], + "is_playable": true, + "name": "Dark Connection", + "release_date": "2021-10-29", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:30O1KkbyS9bbOniw7xtQux" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "name": "Beast In Black", + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 272669, + "explicit": false, + "external_ids": { "isrc": "DED832100530" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/4bL2B6hmLlMWnUEZnorEtG" + "spotify": "https://open.spotify.com/track/4cjWVc72Lp9wkwm73AtXNf" }, - "href": "https://api.spotify.com/v1/artists/4bL2B6hmLlMWnUEZnorEtG", - "id": "4bL2B6hmLlMWnUEZnorEtG", - "name": "Felix Jaehn", - "type": "artist", - "uri": "spotify:artist:4bL2B6hmLlMWnUEZnorEtG" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "CA", - "CL", - "CO", - "CR", - "DO", - "EC", - "SV", - "GT", - "HN", - "HK", - "LU", - "MY", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "SG", - "TW", - "TR", - "UY", - "US", - "ID", - "JP", - "TH", - "VN", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "VE", - "ET" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4XQN9sq92HwyTj476FMzYz" + "href": "https://api.spotify.com/v1/tracks/4cjWVc72Lp9wkwm73AtXNf", + "id": "4cjWVc72Lp9wkwm73AtXNf", + "is_local": false, + "is_playable": true, + "name": "They Don't Care About Us", + "popularity": 61, + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:4cjWVc72Lp9wkwm73AtXNf" }, - "href": "https://api.spotify.com/v1/albums/4XQN9sq92HwyTj476FMzYz", - "id": "4XQN9sq92HwyTj476FMzYz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273467f1d5ec9f7e2fde2d9b454", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02467f1d5ec9f7e2fde2d9b454", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851467f1d5ec9f7e2fde2d9b454", - "width": 64 - } - ], - "name": "Monster", - "release_date": "2024-03-29", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4XQN9sq92HwyTj476FMzYz" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l2ekx5skC4gJH8djERwh1" - }, - "href": "https://api.spotify.com/v1/artists/1l2ekx5skC4gJH8djERwh1", - "id": "1l2ekx5skC4gJH8djERwh1", - "name": "Don Diablo", - "type": "artist", - "uri": "spotify:artist:1l2ekx5skC4gJH8djERwh1" + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6i6I3dfo8SHBqLq9MHfJt4" + }, + "href": "https://api.spotify.com/v1/albums/6i6I3dfo8SHBqLq9MHfJt4", + "id": "6i6I3dfo8SHBqLq9MHfJt4", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273fa830b43aa43aa34b512a733", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02fa830b43aa43aa34b512a733", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851fa830b43aa43aa34b512a733", + "width": 64 + } + ], + "is_playable": true, + "name": "Dreiundzwanzig", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:6i6I3dfo8SHBqLq9MHfJt4" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180542, + "explicit": false, + "external_ids": { "isrc": "DEQ322500253" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5flXEtnmx7VsADuAYdEiIO" + }, + "href": "https://api.spotify.com/v1/tracks/5flXEtnmx7VsADuAYdEiIO", + "id": "5flXEtnmx7VsADuAYdEiIO", + "is_local": false, + "is_playable": true, + "name": "Angst", + "popularity": 31, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5flXEtnmx7VsADuAYdEiIO" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4bL2B6hmLlMWnUEZnorEtG" - }, - "href": "https://api.spotify.com/v1/artists/4bL2B6hmLlMWnUEZnorEtG", - "id": "4bL2B6hmLlMWnUEZnorEtG", - "name": "Felix Jaehn", - "type": "artist", - "uri": "spotify:artist:4bL2B6hmLlMWnUEZnorEtG" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "CA", - "CL", - "CO", - "CR", - "DO", - "EC", - "SV", - "GT", - "HN", - "HK", - "LU", - "MY", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "SG", - "TW", - "TR", - "UY", - "US", - "ID", - "JP", - "TH", - "VN", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "VE", - "ET" - ], - "disc_number": 1, - "duration_ms": 144000, - "explicit": false, - "external_ids": { - "isrc": "NL1ZN2402785" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0oWN1xuaWUrx8QGiYqxAs9" - }, - "href": "https://api.spotify.com/v1/tracks/0oWN1xuaWUrx8QGiYqxAs9", - "id": "0oWN1xuaWUrx8QGiYqxAs9", - "is_local": false, - "name": "Monster", - "popularity": 64, - "preview_url": "https://p.scdn.co/mp3-preview/7ecc9575a60596c880869511aa41c7fc26b23764?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:0oWN1xuaWUrx8QGiYqxAs9" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" + }, + "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", + "id": "1iEczV3pKJ9MPmRvYGB9bz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381", + "width": 64 + } + ], + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 120578, + "explicit": false, + "external_ids": { "isrc": "GBUM72504512" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/0bLxXoUrh0kANKQMWts8KV" + "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" }, - "href": "https://api.spotify.com/v1/artists/0bLxXoUrh0kANKQMWts8KV", - "id": "0bLxXoUrh0kANKQMWts8KV", - "name": "Felicia Lu", - "type": "artist", - "uri": "spotify:artist:0bLxXoUrh0kANKQMWts8KV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/59Qjgges0uTL92An8PBqdQ" + "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", + "id": "1OcV53oesLQw3VTW9I3uD3", + "is_local": false, + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" }, - "href": "https://api.spotify.com/v1/albums/59Qjgges0uTL92An8PBqdQ", - "id": "59Qjgges0uTL92An8PBqdQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273b9b026737c166ac31bc5de5f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02b9b026737c166ac31bc5de5f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851b9b026737c166ac31bc5de5f", - "width": 64 - } - ], - "name": "Something Regrettable", - "release_date": "2023-09-29", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:59Qjgges0uTL92An8PBqdQ" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0bLxXoUrh0kANKQMWts8KV" - }, - "href": "https://api.spotify.com/v1/artists/0bLxXoUrh0kANKQMWts8KV", - "id": "0bLxXoUrh0kANKQMWts8KV", - "name": "Felicia Lu", - "type": "artist", - "uri": "spotify:artist:0bLxXoUrh0kANKQMWts8KV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 165000, - "explicit": false, - "external_ids": { - "isrc": "ATEJ62300007" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6e4GfqQl153Q6FbEF0efdC" - }, - "href": "https://api.spotify.com/v1/tracks/6e4GfqQl153Q6FbEF0efdC", - "id": "6e4GfqQl153Q6FbEF0efdC", - "is_local": false, - "name": "My Boy", - "popularity": 16, - "preview_url": "https://p.scdn.co/mp3-preview/ebc1721abe8875f2af9abc37e7cf7cd91a58b356?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 8, - "type": "track", - "uri": "spotify:track:6e4GfqQl153Q6FbEF0efdC" - }, - { - "album": { - "album_type": "EP", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" + }, + "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", + "id": "7mnBLXK823vNxN3UWB7Gfz", + "name": "The Black Keys", + "type": "artist", + "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/15TCQN0DHHM3XX4TfnNkV8" + }, + "href": "https://api.spotify.com/v1/albums/15TCQN0DHHM3XX4TfnNkV8", + "id": "15TCQN0DHHM3XX4TfnNkV8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731984ae05d586371351e056d7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021984ae05d586371351e056d7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511984ae05d586371351e056d7", + "width": 64 + } + ], + "is_playable": true, + "name": "El Camino (2021 Remaster)", + "release_date": "2011", + "release_date_precision": "year", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:15TCQN0DHHM3XX4TfnNkV8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" + }, + "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", + "id": "7mnBLXK823vNxN3UWB7Gfz", + "name": "The Black Keys", + "type": "artist", + "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 251333, + "explicit": false, + "external_ids": { "isrc": "USNO12100179" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" + "spotify": "https://open.spotify.com/track/3BR01wZsCALix7hnhZltGs" }, - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "name": "Onkruid", - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2OxR6XLzZdDBSLDqFiWQ1g" + "href": "https://api.spotify.com/v1/tracks/3BR01wZsCALix7hnhZltGs", + "id": "3BR01wZsCALix7hnhZltGs", + "is_local": false, + "is_playable": true, + "name": "Little Black Submarines - 2021 Remaster", + "popularity": 64, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3BR01wZsCALix7hnhZltGs" }, - "href": "https://api.spotify.com/v1/albums/2OxR6XLzZdDBSLDqFiWQ1g", - "id": "2OxR6XLzZdDBSLDqFiWQ1g", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735942282ecc673556663e297a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025942282ecc673556663e297a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515942282ecc673556663e297a", - "width": 64 - } - ], - "name": "Ergens in de Twintig", - "release_date": "2020-09-24", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:2OxR6XLzZdDBSLDqFiWQ1g" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" - }, - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "name": "Onkruid", - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 228061, - "explicit": false, - "external_ids": { - "isrc": "SEYOK2046104" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1bqyBEwMTEI2gw9KSkm1CR" - }, - "href": "https://api.spotify.com/v1/tracks/1bqyBEwMTEI2gw9KSkm1CR", - "id": "1bqyBEwMTEI2gw9KSkm1CR", - "is_local": false, - "name": "Op Sandalen in de Club", - "popularity": 16, - "preview_url": "https://p.scdn.co/mp3-preview/53509296c5851b6146590369c222e08835dee5de?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 4, - "type": "track", - "uri": "spotify:track:1bqyBEwMTEI2gw9KSkm1CR" - }, - { - "album": { - "album_type": "SINGLE", - "artists": [ - { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3VzsvmhnUb9OZ59bq2aoNZ" + }, + "href": "https://api.spotify.com/v1/albums/3VzsvmhnUb9OZ59bq2aoNZ", + "id": "3VzsvmhnUb9OZ59bq2aoNZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27345951a69fe39a6e163122eab", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0245951a69fe39a6e163122eab", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485145951a69fe39a6e163122eab", + "width": 64 + } + ], + "is_playable": true, + "name": "A Moment Apart", + "release_date": "2017-09-08", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:3VzsvmhnUb9OZ59bq2aoNZ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215130, + "explicit": false, + "external_ids": { "isrc": "GBCFB1700211" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + "spotify": "https://open.spotify.com/track/7KT7VGnPU5QVXN3q1BOeqb" + }, + "href": "https://api.spotify.com/v1/tracks/7KT7VGnPU5QVXN3q1BOeqb", + "id": "7KT7VGnPU5QVXN3q1BOeqb", + "is_local": false, + "is_playable": true, + "name": "Higher Ground", + "popularity": 62, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7KT7VGnPU5QVXN3q1BOeqb" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" + }, + "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", + "id": "1X0ak6iQZOYqdVXzj8Tfbz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d", + "width": 64 + } + ], + "is_playable": true, + "name": "Cold Silver", + "release_date": "2025-10-08", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222242, + "explicit": true, + "external_ids": { "isrc": "USYFZ2565101" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { + "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", + "id": "0Y0PdrwwWtYTFhCY5Kj0iv", + "is_local": false, + "is_playable": true, + "name": "Cold Silver", + "popularity": 36, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" + }, + "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", + "id": "7y25aQ8W1jYhdkTdDdiUjH", + "name": "KARAVIRS", + "type": "artist", + "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ux2pdgf8Bzaz21pxEEKWQ" + }, + "href": "https://api.spotify.com/v1/albums/1ux2pdgf8Bzaz21pxEEKWQ", + "id": "1ux2pdgf8Bzaz21pxEEKWQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730a1d1416d7e8e0013425220d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020a1d1416d7e8e0013425220d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048510a1d1416d7e8e0013425220d", + "width": 64 + } + ], + "is_playable": true, + "name": "Ribbon in my hair", + "release_date": "2025-07-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1ux2pdgf8Bzaz21pxEEKWQ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" + }, + "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", + "id": "7y25aQ8W1jYhdkTdDdiUjH", + "name": "KARAVIRS", + "type": "artist", + "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230039, + "explicit": false, + "external_ids": { "isrc": "QZTBD2562114" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + "spotify": "https://open.spotify.com/track/6TA8mUL3TjaNqf9kuYBojR" }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0M0iJGLagLtI4LlooOiiNZ" + "href": "https://api.spotify.com/v1/tracks/6TA8mUL3TjaNqf9kuYBojR", + "id": "6TA8mUL3TjaNqf9kuYBojR", + "is_local": false, + "is_playable": true, + "name": "Ribbon in my hair", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6TA8mUL3TjaNqf9kuYBojR" }, - "href": "https://api.spotify.com/v1/albums/0M0iJGLagLtI4LlooOiiNZ", - "id": "0M0iJGLagLtI4LlooOiiNZ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27354539f552c0fda9cb1ecd0c8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0254539f552c0fda9cb1ecd0c8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485154539f552c0fda9cb1ecd0c8", - "width": 64 - } - ], - "name": "places to be", - "release_date": "2024-05-31", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:0M0iJGLagLtI4LlooOiiNZ" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" + }, + "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", + "id": "2729tzbbE6CeRuFmbGOUry", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c", + "width": 64 + } + ], + "is_playable": true, + "name": "Steelbound", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230786, + "explicit": false, + "external_ids": { "isrc": "DED832500343" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" + }, + "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", + "id": "5CEM8PzhisIOQAr8TmG79e", + "is_local": false, + "is_playable": true, + "name": "Riders Of The Storm", + "popularity": 45, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" + }, + "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", + "id": "0wnYgCeP013HkKoOyC5V32", + "name": "Allie X", + "type": "artist", + "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2MhRCfdhN8os29CovIIsqV" + }, + "href": "https://api.spotify.com/v1/albums/2MhRCfdhN8os29CovIIsqV", + "id": "2MhRCfdhN8os29CovIIsqV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738bc25b0c8091663832455805", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028bc25b0c8091663832455805", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518bc25b0c8091663832455805", + "width": 64 + } + ], + "is_playable": true, + "name": "Happiness Is Going To Get You", + "release_date": "2025-11-07", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2MhRCfdhN8os29CovIIsqV" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" + }, + "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", + "id": "0wnYgCeP013HkKoOyC5V32", + "name": "Allie X", + "type": "artist", + "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236026, + "explicit": false, + "external_ids": { "isrc": "QMFME2521305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3H2rJN1EXtwchBCSPtQMH1" + }, + "href": "https://api.spotify.com/v1/tracks/3H2rJN1EXtwchBCSPtQMH1", + "id": "3H2rJN1EXtwchBCSPtQMH1", + "is_local": false, + "is_playable": true, + "name": "Reunite", + "popularity": 40, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3H2rJN1EXtwchBCSPtQMH1" }, { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226677, - "explicit": true, - "external_ids": { - "isrc": "GBAHS2400279" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/561pBFcFL2Pwb9HPO9tU8J" - }, - "href": "https://api.spotify.com/v1/tracks/561pBFcFL2Pwb9HPO9tU8J", - "id": "561pBFcFL2Pwb9HPO9tU8J", - "is_local": false, - "name": "places to be", - "popularity": 74, - "preview_url": "https://p.scdn.co/mp3-preview/0485c508a17969139aed4c19c22c24abe08c04b9?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 1, - "type": "track", - "uri": "spotify:track:561pBFcFL2Pwb9HPO9tU8J" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" + }, + "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", + "id": "3nL6S2DQUe71FicS2UpJ4b", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487", + "width": 64 + } + ], + "is_playable": true, + "name": "The Fate of Ophelia - Rock", + "release_date": "2025-10-15", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267697, + "explicit": false, + "external_ids": { "isrc": "MXA3V2454127" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0SICrWXEeAB0feHy4iyTbH" + "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", + "id": "7sa0Obv4Y9y7rpIYhudEu7", + "is_local": false, + "is_playable": true, + "name": "The Fate of Ophelia", + "popularity": 56, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" }, - "href": "https://api.spotify.com/v1/albums/0SICrWXEeAB0feHy4iyTbH", - "id": "0SICrWXEeAB0feHy4iyTbH", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273bf1a057043797d5b654dce27", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02bf1a057043797d5b654dce27", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851bf1a057043797d5b654dce27", - "width": 64 - } - ], - "name": "Samen Tegen Elkaar", - "release_date": "2024-06-14", - "release_date_precision": "day", - "total_tracks": 17, - "type": "album", - "uri": "spotify:album:0SICrWXEeAB0feHy4iyTbH" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204127, - "explicit": false, - "external_ids": { - "isrc": "NL7EG2400007" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1L7FnIPHrVXjt49m7Dr36Z" - }, - "href": "https://api.spotify.com/v1/tracks/1L7FnIPHrVXjt49m7Dr36Z", - "id": "1L7FnIPHrVXjt49m7Dr36Z", - "is_local": false, - "name": "Naakt Op Het Plein", - "popularity": 46, - "preview_url": "https://p.scdn.co/mp3-preview/0f0c0c55c839b15c11b9c13c166f10e29e1b3917?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 9, - "type": "track", - "uri": "spotify:track:1L7FnIPHrVXjt49m7Dr36Z" - }, - { - "album": { - "album_type": "ALBUM", - "artists": [ - { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" + }, + "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", + "id": "6KpFTQPwkK9hY39Tl7Wggv", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9", + "width": 64 + } + ], + "is_playable": true, + "name": "Otherside", + "release_date": "2025-12-19", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 192000, + "explicit": false, + "external_ids": { "isrc": "DEH742537818" }, "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0GpklLqjWNrhropGa4XRRD" + "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", + "id": "07Zj558j9j9TWq7HIcTFZn", + "is_local": false, + "is_playable": true, + "name": "Otherside", + "popularity": 44, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" }, - "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD", - "id": "0GpklLqjWNrhropGa4XRRD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce", - "width": 64 - } - ], - "name": "Radiosoul", - "release_date": "2024-06-07", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:0GpklLqjWNrhropGa4XRRD" - }, - "artists": [ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4MRcN8PhMhBe84tcPLe2QJ" + }, + "href": "https://api.spotify.com/v1/albums/4MRcN8PhMhBe84tcPLe2QJ", + "id": "4MRcN8PhMhBe84tcPLe2QJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731b029b71b43652cdc6e9fc0f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021b029b71b43652cdc6e9fc0f", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511b029b71b43652cdc6e9fc0f", + "width": 64 + } + ], + "is_playable": true, + "name": "A Moment Apart (Deluxe Edition)", + "release_date": "2018-11-30", + "release_date_precision": "day", + "total_tracks": 25, + "type": "album", + "uri": "spotify:album:4MRcN8PhMhBe84tcPLe2QJ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0DGAOR3KtqWwWSwDzhzqOa" + }, + "href": "https://api.spotify.com/v1/artists/0DGAOR3KtqWwWSwDzhzqOa", + "id": "0DGAOR3KtqWwWSwDzhzqOa", + "name": "Zyra", + "type": "artist", + "uri": "spotify:artist:0DGAOR3KtqWwWSwDzhzqOa" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 240440, + "explicit": false, + "external_ids": { "isrc": "GBCFB1800360" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2XyNLoEWc4IDt9OVzXZUXl" + }, + "href": "https://api.spotify.com/v1/tracks/2XyNLoEWc4IDt9OVzXZUXl", + "id": "2XyNLoEWc4IDt9OVzXZUXl", + "is_local": false, + "is_playable": true, + "name": "It\u2019s Only - ODESZA VIP Remix", + "popularity": 58, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2XyNLoEWc4IDt9OVzXZUXl" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", + "id": "3ZdwtiZ6iYOtkRtFq2tmO9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75", + "width": 64 + } + ], + "is_playable": true, + "name": "The Gospel of Nil - Revised Standard Version", + "release_date": "2016-10-06", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194085, + "explicit": false, + "external_ids": { "isrc": "TCACP1623532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" + }, + "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", + "id": "6vy64DzPmsCUNue0FpmM6r", + "is_local": false, + "is_playable": true, + "name": "Mono Heart", + "popularity": 29, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" + }, + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "name": "MK", + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" + }, + "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", + "id": "4DWuml4Jf6K81b5rAPwMb6", + "name": "Clementine Douglas", + "type": "artist", + "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2D48QGD5lU5kErH6PxLjTs" + }, + "href": "https://api.spotify.com/v1/albums/2D48QGD5lU5kErH6PxLjTs", + "id": "2D48QGD5lU5kErH6PxLjTs", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ff386681b00d7f8ee77734c9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ff386681b00d7f8ee77734c9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ff386681b00d7f8ee77734c9", + "width": 64 + } + ], + "is_playable": true, + "name": "Come Find Me (with Clementine Douglas)", + "release_date": "2025-09-26", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2D48QGD5lU5kErH6PxLjTs" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" + }, + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "name": "MK", + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" + }, + "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", + "id": "4DWuml4Jf6K81b5rAPwMb6", + "name": "Clementine Douglas", + "type": "artist", + "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207149, + "explicit": false, + "external_ids": { "isrc": "GBARL2501473" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/03AhbPoniP5uqqJKYGWgZE" + }, + "href": "https://api.spotify.com/v1/tracks/03AhbPoniP5uqqJKYGWgZE", + "id": "03AhbPoniP5uqqJKYGWgZE", + "is_local": false, + "is_playable": true, + "name": "Come Find Me (with Clementine Douglas)", + "popularity": 67, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:03AhbPoniP5uqqJKYGWgZE" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" + }, + "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", + "id": "2OMCroH113OoIxVbMUwtSY", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647", + "width": 64 + } + ], + "is_playable": true, + "name": "Beg For More", + "release_date": "2020-07-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203586, + "explicit": false, + "external_ids": { "isrc": "GBKQU2075409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" + }, + "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", + "id": "6DEsqinq33fSFFMj6MoEH3", + "is_local": false, + "is_playable": true, + "name": "Beg For More", + "popularity": 31, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" + }, + "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", + "id": "2ZYmViriDHQS2bzBohrLXj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe", + "width": 64 + } + ], + "is_playable": true, + "name": "Ones And Zeros", + "release_date": "2015-02-18", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 224213, + "explicit": false, + "external_ids": { "isrc": "GBUM71406930" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" + }, + "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", + "id": "0QSMTHdo8JRa7PazhGrbIK", + "is_local": false, + "is_playable": true, + "name": "I Want Out", + "popularity": 29, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" + }, + "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", + "id": "4gfZR0IgXCNrMe1U2QfnyA", + "name": "DummiBoiBeatz", + "type": "artist", + "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3R9XNmwrYl49GE9tKPCtpL" + }, + "href": "https://api.spotify.com/v1/albums/3R9XNmwrYl49GE9tKPCtpL", + "id": "3R9XNmwrYl49GE9tKPCtpL", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738ac99c178ab3be15dcac0aa9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028ac99c178ab3be15dcac0aa9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518ac99c178ab3be15dcac0aa9", + "width": 64 + } + ], + "is_playable": true, + "name": "Chosen (Side A)", + "release_date": "2025-09-19", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3R9XNmwrYl49GE9tKPCtpL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" + }, + "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", + "id": "4gfZR0IgXCNrMe1U2QfnyA", + "name": "DummiBoiBeatz", + "type": "artist", + "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6y6iXD929Jqq0xc6lgwhl1" + }, + "href": "https://api.spotify.com/v1/artists/6y6iXD929Jqq0xc6lgwhl1", + "id": "6y6iXD929Jqq0xc6lgwhl1", + "name": "LAUREL", + "type": "artist", + "uri": "spotify:artist:6y6iXD929Jqq0xc6lgwhl1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222916, + "explicit": false, + "external_ids": { "isrc": "QT3EX2515848" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/17abRyAYKiIm2B46H2jrix" + }, + "href": "https://api.spotify.com/v1/tracks/17abRyAYKiIm2B46H2jrix", + "id": "17abRyAYKiIm2B46H2jrix", + "is_local": false, + "is_playable": false, + "name": "Drown In Sunlight - DummiBoiBeatz Version", + "popularity": 1, + "preview_url": null, + "restrictions": { "reason": "market" }, + "track_number": 1, + "type": "track", + "uri": "spotify:track:17abRyAYKiIm2B46H2jrix" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" + }, + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", + "id": "1jjx7U3tayhJTytJVBj0WY", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", + "width": 64 + } + ], + "is_playable": true, + "name": "Legends", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255973, + "explicit": false, + "external_ids": { "isrc": "SE6HE2500105" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" + }, + "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", + "id": "3CZDkpmq245kzvCe44P2hM", + "is_local": false, + "is_playable": true, + "name": "I, Emperor", + "popularity": 64, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" + }, + "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", + "id": "5kDJnYkE7Xm5zgEsJHb23u", + "name": "emi x", + "type": "artist", + "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5fuGZizTNkIW3Y0xqJEInl" + }, + "href": "https://api.spotify.com/v1/albums/5fuGZizTNkIW3Y0xqJEInl", + "id": "5fuGZizTNkIW3Y0xqJEInl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27323e759d17f77ea31f69c3fb2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0223e759d17f77ea31f69c3fb2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485123e759d17f77ea31f69c3fb2", + "width": 64 + } + ], + "is_playable": true, + "name": "unter ihrem dress", + "release_date": "2021-10-29", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5fuGZizTNkIW3Y0xqJEInl" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" + }, + "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", + "id": "5kDJnYkE7Xm5zgEsJHb23u", + "name": "emi x", + "type": "artist", + "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164295, + "explicit": false, + "external_ids": { "isrc": "QZNWV2190153" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0fUSdXwgftvDECtVpSZ2cn" + }, + "href": "https://api.spotify.com/v1/tracks/0fUSdXwgftvDECtVpSZ2cn", + "id": "0fUSdXwgftvDECtVpSZ2cn", + "is_local": false, + "is_playable": true, + "name": "unter ihrem dress", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0fUSdXwgftvDECtVpSZ2cn" } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206484, - "explicit": false, - "external_ids": { - "isrc": "QM4TW2460700" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO" - }, - "href": "https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO", - "id": "6Ttp9JrzcpNYG0upW6NKRO", - "is_local": false, - "name": "This Is Just The Beginning", - "popularity": 29, - "preview_url": "https://p.scdn.co/mp3-preview/662618663dfe82883d896f727dde949833cdddf6?cid=cfe923b2d660439caf2b557b21f31221", - "track_number": 3, - "type": "track", - "uri": "spotify:track:6Ttp9JrzcpNYG0upW6NKRO" - } - ], - "total": 2951, - "limit": 20, - "offset": 0, - "href": "https://api.spotify.com/v1/me/top/tracks?locale=en-US,en;q%3D0.5", - "next": "https://api.spotify.com/v1/me/top/tracks?offset=20&limit=20&locale=en-US,en;q%3D0.5", - "previous": null + ], + "total": 2742, + "limit": 48, + "offset": 0, + "href": "https://api.spotify.com/v1/me/top/tracks?limit=48", + "next": "https://api.spotify.com/v1/me/top/tracks?offset=48&limit=48", + "previous": null } diff --git a/tests/fixtures/tracks_saved.json b/tests/fixtures/tracks_saved.json deleted file mode 100644 index 870284e..0000000 --- a/tests/fixtures/tracks_saved.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - true, - false -] diff --git a/tests/test_spotify.py b/tests/test_spotify.py index 471ff6c..35c79b7 100644 --- a/tests/test_spotify.py +++ b/tests/test_spotify.py @@ -18,7 +18,7 @@ SpotifyError, SpotifyNotFoundError, ) -from spotifyaio.models import FollowType, SearchType +from spotifyaio.models import SearchType from . import load_fixture from .const import HEADERS, SPOTIFY_URL @@ -137,147 +137,6 @@ async def test_get_album_tracks( ) -async def test_save_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving albums.""" - responses.put( - f"{SPOTIFY_URL}/v1/me/albums?ids=3IqzqH6ShrRtie9Yd2ODyG%252C1A2GTWGtFfWp7KSQTwWOyo%252C2noRn2Aes5aoNVsU6iWTh", - status=200, - ) - await authenticated_client.save_albums( - [ - "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", - "1A2GTWGtFfWp7KSQTwWOyo", - "2noRn2Aes5aoNVsU6iWTh", - ] - ) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/albums", - METH_PUT, - headers=HEADERS, - params={ - "ids": "3IqzqH6ShrRtie9Yd2ODyG,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWTh" - }, - json=None, - ) - - -async def test_save_no_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving no albums.""" - await authenticated_client.save_albums([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_save_too_many_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving too many albums.""" - with pytest.raises(ValueError, match="Maximum of 50 albums can be saved at once"): - await authenticated_client.save_albums(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_removing_saved_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test deleting saved albums.""" - responses.delete( - f"{SPOTIFY_URL}/v1/me/albums?ids=3IqzqH6ShrRtie9Yd2ODyG%252C1A2GTWGtFfWp7KSQTwWOyo%252C2noRn2Aes5aoNVsU6iWTh", - status=200, - ) - await authenticated_client.remove_saved_albums( - [ - "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", - "1A2GTWGtFfWp7KSQTwWOyo", - "2noRn2Aes5aoNVsU6iWTh", - ] - ) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/albums", - METH_DELETE, - headers=HEADERS, - params={ - "ids": "3IqzqH6ShrRtie9Yd2ODyG,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWTh" - }, - json=None, - ) - - -async def test_removing_no_saved_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing no saved albums.""" - await authenticated_client.remove_saved_albums([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_removing_too_many_saved_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing too many saved albums.""" - with pytest.raises(ValueError, match="Maximum of 50 albums can be removed at once"): - await authenticated_client.remove_saved_albums(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_checking_saved_albums( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved albums.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/albums/contains?ids=3IqzqH6ShrRtie9Yd2ODyG%252C1A2GTWGtFfWp7KSQTwWOyo%252C2noRn2Aes5aoNVsU6iWTh", - status=200, - body=load_fixture("album_saved.json"), - ) - response = await authenticated_client.are_albums_saved( - [ - "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", - "1A2GTWGtFfWp7KSQTwWOyo", - "2noRn2Aes5aoNVsU6iWTh", - ] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/albums/contains", - METH_GET, - headers=HEADERS, - params={ - "ids": "3IqzqH6ShrRtie9Yd2ODyG,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWTh" - }, - json=None, - ) - - -async def test_checking_no_saved_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking no saved albums.""" - await authenticated_client.are_albums_saved([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_checking_too_many_saved_albums( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking too many saved albums.""" - with pytest.raises(ValueError, match="Maximum of 20 albums can be checked at once"): - await authenticated_client.are_albums_saved(["abc"] * 21) - responses.assert_not_called() # type: ignore[no-untyped-call] - - @pytest.mark.parametrize( "playback_fixture", [ @@ -786,14 +645,14 @@ async def test_get_playlist( ) -> None: """Test retrieving playlist.""" responses.get( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M?additional_types=track,episode", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track,episode", status=200, body=load_fixture(fixture), ) - response = await authenticated_client.get_playlist("37i9dQZF1DXcBWIGoYBM5M") + response = await authenticated_client.get_playlist("1Cp6VQCKf2VL4sP09jN9oX") assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", METH_GET, headers=HEADERS, params={"additional_types": "track,episode"}, @@ -807,15 +666,15 @@ async def test_get_not_found_playlist( ) -> None: """Test retrieving not found playlist.""" responses.get( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M?additional_types=track,episode", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track,episode", status=200, body=load_fixture("playlist_not_found.json"), ) with pytest.raises( SpotifyNotFoundError, - match="Resource not found: v1/playlists/37i9dQZF1DXcBWIGoYBM5M", + match="Resource not found: v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", ): - await authenticated_client.get_playlist("37i9dQZF1DXcBWIGoYBM5M") + await authenticated_client.get_playlist("1Cp6VQCKf2VL4sP09jN9oX") @pytest.mark.parametrize( @@ -851,9 +710,9 @@ async def test_get_current_users_playlists( @pytest.mark.parametrize( "playlist_id", [ - "37i9dQZF1DXcBWIGoYBM5M", - "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M", - "spotify:user:chilledcow:playlist:37i9dQZF1DXcBWIGoYBM5M", + "1Cp6VQCKf2VL4sP09jN9oX", + "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX", + "spotify:user:chilledcow:playlist:1Cp6VQCKf2VL4sP09jN9oX", ], ) async def test_get_playlist_variation( @@ -863,13 +722,13 @@ async def test_get_playlist_variation( ) -> None: """Test retrieving playlist with different inputs.""" responses.get( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M?additional_types=track,episode", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track,episode", status=200, body=load_fixture("playlist_1.json"), ) await authenticated_client.get_playlist(playlist_id) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", METH_GET, headers=HEADERS, params={"additional_types": "track,episode"}, @@ -1148,14 +1007,14 @@ async def test_get_audiobook( ) -> None: """Test retrieving audiobook.""" responses.get( - f"{SPOTIFY_URL}/v1/audiobooks/0TnOYISbd1XYRBk9myaseg", + f"{SPOTIFY_URL}/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", status=200, body=load_fixture("audiobook.json"), ) - response = await authenticated_client.get_audiobook("0TnOYISbd1XYRBk9myaseg") + response = await authenticated_client.get_audiobook("6SJQ8VzM5PlDy11wMtcD6v") assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/audiobooks/0TnOYISbd1XYRBk9myaseg", + f"{SPOTIFY_URL}/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", METH_GET, headers=HEADERS, params=None, @@ -1170,16 +1029,16 @@ async def test_get_audiobook_chapters( ) -> None: """Test retrieving audiobook chapters.""" responses.get( - f"{SPOTIFY_URL}/v1/audiobooks/0TnOYISbd1XYRBk9myaseg/chapters?limit=50", + f"{SPOTIFY_URL}/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?limit=50", status=200, body=load_fixture("audiobook_chapters.json"), ) response = await authenticated_client.get_audiobook_chapters( - "0TnOYISbd1XYRBk9myaseg" + "6SJQ8VzM5PlDy11wMtcD6v" ) assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/audiobooks/0TnOYISbd1XYRBk9myaseg/chapters", + f"{SPOTIFY_URL}/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters", METH_GET, headers=HEADERS, params={"limit": 50}, @@ -1209,138 +1068,6 @@ async def test_get_saved_audiobooks( ) -async def test_save_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving an audiobook.""" - responses.put( - f"{SPOTIFY_URL}/v1/me/audiobooks?ids=0TnOYISbd1XYRBk9myaseg", - status=200, - body="", - ) - await authenticated_client.save_audiobooks(["0TnOYISbd1XYRBk9myaseg"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/audiobooks", - METH_PUT, - headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, - json=None, - ) - - -async def test_save_no_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving no audiobooks.""" - await authenticated_client.save_audiobooks([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_save_too_many_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving too many audiobooks.""" - with pytest.raises( - ValueError, match="Maximum of 50 audiobooks can be saved at once" - ): - await authenticated_client.save_audiobooks(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing an audiobook.""" - responses.delete( - f"{SPOTIFY_URL}/v1/me/audiobooks?ids=0TnOYISbd1XYRBk9myaseg", - status=200, - body="", - ) - await authenticated_client.remove_saved_audiobooks(["0TnOYISbd1XYRBk9myaseg"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/audiobooks", - METH_DELETE, - headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, - json=None, - ) - - -async def test_remove_no_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing no audiobooks.""" - await authenticated_client.remove_saved_audiobooks([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_too_many_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing too many audiobooks.""" - with pytest.raises( - ValueError, match="Maximum of 50 audiobooks can be removed at once" - ): - await authenticated_client.remove_saved_audiobooks(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_saved_audiobooks( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved audiobooks.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/audiobooks/contains?ids=18yVqkdbdRvS24c0Ilj2ci," - f"1HGw3J3NxZO1TP1BTtVhpZ,7iHfbu1YPACw6oZPAFJtqe", - status=200, - body=load_fixture("audiobooks_saved.json"), - ) - response = await authenticated_client.are_audiobooks_saved( - ["18yVqkdbdRvS24c0Ilj2ci", "1HGw3J3NxZO1TP1BTtVhpZ", "7iHfbu1YPACw6oZPAFJtqe"] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/audiobooks/contains", - METH_GET, - headers=HEADERS, - params={ - "ids": "18yVqkdbdRvS24c0Ilj2ci," - "1HGw3J3NxZO1TP1BTtVhpZ," - "7iHfbu1YPACw6oZPAFJtqe" - }, - json=None, - ) - - -async def test_check_no_saved_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking no saved audiobooks.""" - assert await authenticated_client.are_audiobooks_saved([]) == {} - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_too_many_saved_audiobooks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking too many saved audiobooks.""" - with pytest.raises( - ValueError, match="Maximum of 50 audiobooks can be checked at once" - ): - await authenticated_client.are_audiobooks_saved(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - async def test_get_show_episodes( responses: aioresponses, snapshot: SnapshotAssertion, @@ -1370,14 +1097,14 @@ async def test_get_chapter( ) -> None: """Test retrieving chapter.""" responses.get( - f"{SPOTIFY_URL}/v1/chapters/3NW4BmIOG0qzQZgtLgsydR", + f"{SPOTIFY_URL}/v1/chapters/0bnJ1qcNgHwwPWbDJAia57", status=200, body=load_fixture("chapter.json"), ) - response = await authenticated_client.get_chapter("3NW4BmIOG0qzQZgtLgsydR") + response = await authenticated_client.get_chapter("0bnJ1qcNgHwwPWbDJAia57") assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/chapters/3NW4BmIOG0qzQZgtLgsydR", + f"{SPOTIFY_URL}/v1/chapters/0bnJ1qcNgHwwPWbDJAia57", METH_GET, headers=HEADERS, params=None, @@ -1407,207 +1134,62 @@ async def test_get_saved_episodes( ) -async def test_save_episodes( +@pytest.mark.parametrize( + "kwargs", + [ + {"name": "New Name"}, + {"description": "New Description"}, + {"public": False}, + {"collaborative": True}, + { + "name": "New Name", + "description": "New Description", + "public": False, + "collaborative": True, + }, + ], +) +async def test_update_playlist_details( responses: aioresponses, authenticated_client: SpotifyClient, + kwargs: dict[str, Any], ) -> None: - """Test saving episodes.""" + """Test updating a playlist.""" responses.put( - f"{SPOTIFY_URL}/v1/me/episodes?ids=3o0RYoo5iOMKSmEbunsbvW", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", status=200, body="", ) - await authenticated_client.save_episodes(["3o0RYoo5iOMKSmEbunsbvW"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/episodes", - METH_PUT, - headers=HEADERS, - params={"ids": "3o0RYoo5iOMKSmEbunsbvW"}, - json=None, - ) - - -async def test_save_no_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving no episodes.""" - await authenticated_client.save_episodes([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_save_too_many_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving too many episodes.""" - with pytest.raises(ValueError, match="Maximum of 50 episodes can be saved at once"): - await authenticated_client.save_episodes(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing episodes.""" - responses.delete( - f"{SPOTIFY_URL}/v1/me/episodes?ids=3o0RYoo5iOMKSmEbunsbvW", - status=200, - body="", + await authenticated_client.update_playlist_details( + "37i9dQZF1DXcBWIGoYBM5M", **kwargs ) - await authenticated_client.remove_saved_episodes(["3o0RYoo5iOMKSmEbunsbvW"]) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/episodes", - METH_DELETE, + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", + METH_PUT, headers=HEADERS, - params={"ids": "3o0RYoo5iOMKSmEbunsbvW"}, - json=None, + params=None, + json=kwargs, ) -async def test_remove_no_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing no episodes.""" - await authenticated_client.remove_saved_episodes([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_too_many_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing too many episodes.""" - with pytest.raises( - ValueError, match="Maximum of 50 episodes can be removed at once" - ): - await authenticated_client.remove_saved_episodes(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_saved_episodes( +async def test_get_playlist_items( responses: aioresponses, snapshot: SnapshotAssertion, authenticated_client: SpotifyClient, ) -> None: - """Test checking saved episodes.""" + """Test retrieving playlist items.""" responses.get( - f"{SPOTIFY_URL}/v1/me/episodes/contains?ids=3o0RYoo5iOMKSmEbunsbvW%2C3o0RYoo5iOMKSmEbunsbvX", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?limit=48", status=200, - body=load_fixture("episode_saved.json"), - ) - response = await authenticated_client.are_episodes_saved( - ["3o0RYoo5iOMKSmEbunsbvW", "3o0RYoo5iOMKSmEbunsbvX"] + body=load_fixture("playlist_items.json"), ) + response = await authenticated_client.get_playlist_items("1Cp6VQCKf2VL4sP09jN9oX") assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/episodes/contains", + f"{SPOTIFY_URL}/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items", METH_GET, headers=HEADERS, - params={"ids": "3o0RYoo5iOMKSmEbunsbvW,3o0RYoo5iOMKSmEbunsbvX"}, - json=None, - ) - - -async def test_check_saved_episode( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved episode.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/episodes/contains?ids=18yVqkdbdRvS24c0Ilj2ci", - status=200, - body=load_fixture("tracks_saved.json"), - ) - assert await authenticated_client.is_episode_saved("18yVqkdbdRvS24c0Ilj2ci") is True - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/episodes/contains", - METH_GET, - headers=HEADERS, - params={"ids": "18yVqkdbdRvS24c0Ilj2ci"}, - json=None, - ) - - -async def test_check_no_saved_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking no saved episodes.""" - assert await authenticated_client.are_episodes_saved([]) == {} - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_too_many_saved_episodes( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking too many saved episodes.""" - with pytest.raises( - ValueError, match="Maximum of 50 episodes can be checked at once" - ): - await authenticated_client.are_episodes_saved(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -@pytest.mark.parametrize( - "kwargs", - [ - {"name": "New Name"}, - {"description": "New Description"}, - {"public": False}, - {"collaborative": True}, - { - "name": "New Name", - "description": "New Description", - "public": False, - "collaborative": True, - }, - ], -) -async def test_update_playlist_details( - responses: aioresponses, - authenticated_client: SpotifyClient, - kwargs: dict[str, Any], -) -> None: - """Test updating a playlist.""" - responses.put( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", - status=200, - body="", - ) - await authenticated_client.update_playlist_details( - "37i9dQZF1DXcBWIGoYBM5M", **kwargs - ) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M", - METH_PUT, - headers=HEADERS, - params=None, - json=kwargs, - ) - - -async def test_get_playlist_tracks( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test retrieving playlist tracks.""" - responses.get( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks?limit=48", - status=200, - body=load_fixture("playlist_items.json"), - ) - response = await authenticated_client.get_playlist_items("37i9dQZF1DXcBWIGoYBM5M") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", - METH_GET, - headers=HEADERS, - params={"limit": 48}, + params={"limit": 48}, json=None, ) @@ -1643,7 +1225,7 @@ async def test_update_playlist_items( ) -> None: """Test updating playlist items.""" responses.put( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", status=200, body=load_fixture("playlist_update_items.json"), ) @@ -1654,7 +1236,7 @@ async def test_update_playlist_items( == "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" ) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", METH_PUT, headers=HEADERS, params=None, @@ -1682,7 +1264,7 @@ async def test_add_playlist_items( ) -> None: """Test adding playlist items.""" responses.post( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", status=201, body=load_fixture("playlist_update_items.json"), ) @@ -1693,7 +1275,7 @@ async def test_add_playlist_items( == "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" ) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", METH_POST, headers=HEADERS, params=None, @@ -1746,7 +1328,7 @@ async def test_remove_playlist_items( ) -> None: """Test removing playlist items.""" responses.delete( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", status=200, body=load_fixture("playlist_update_items.json"), ) @@ -1757,7 +1339,7 @@ async def test_remove_playlist_items( == "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" ) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/tracks", + f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/items", METH_DELETE, headers=HEADERS, params=None, @@ -1796,16 +1378,15 @@ async def test_create_playlist( ) -> None: """Test creating a playlist.""" responses.post( - f"{SPOTIFY_URL}/v1/users/smedjan/playlists", + f"{SPOTIFY_URL}/v1/me/playlists", status=201, body=load_fixture("new_playlist.json"), ) assert ( - await authenticated_client.create_playlist("smedjan", "My Playlist", **kwargs) - == snapshot + await authenticated_client.create_playlist("My Playlist", **kwargs) == snapshot ) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/users/smedjan/playlists", + f"{SPOTIFY_URL}/v1/me/playlists", METH_POST, headers=HEADERS, params=None, @@ -1844,7 +1425,7 @@ async def test_search( ) -> None: """Test searching for tracks.""" responses.get( - f"{SPOTIFY_URL}/v1/search?limit=48&q=Never+Gonna+Give+You+Up&type=track", + f"{SPOTIFY_URL}/v1/search?limit=5&q=Never+Gonna+Give+You+Up&type=track", status=200, body=load_fixture("search.json"), ) @@ -1856,524 +1437,177 @@ async def test_search( f"{SPOTIFY_URL}/v1/search", METH_GET, headers=HEADERS, - params={"q": "Never Gonna Give You Up", "type": "track", "limit": 48}, + params={"q": "Never Gonna Give You Up", "type": "track", "limit": 5}, json=None, ) -async def test_get_audio_features( +async def test_save_to_library( responses: aioresponses, - snapshot: SnapshotAssertion, authenticated_client: SpotifyClient, ) -> None: - """Test retrieving audio features.""" - responses.get( - f"{SPOTIFY_URL}/v1/audio-features/11dFghVXANMlKmJXsNCbNl", - status=200, - body=load_fixture("audio_features.json"), - ) - response = await authenticated_client.get_audio_features("11dFghVXANMlKmJXsNCbNl") - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/audio-features/11dFghVXANMlKmJXsNCbNl", - METH_GET, - headers=HEADERS, - params=None, - json=None, - ) - - -async def test_save_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving shows.""" + """Test saving items to library.""" responses.put( - f"{SPOTIFY_URL}/v1/me/shows?ids=0TnOYISbd1XYRBk9myaseg", + f"{SPOTIFY_URL}/v1/me/library?uris=spotify%3Atrack%3A4iV5W9uYEdYUVa79Axb7Rh%2Cspotify%3Aalbum%3A1uyf3l2d4XYwiEqAb7t7fX", status=200, body="", ) - await authenticated_client.save_shows(["0TnOYISbd1XYRBk9myaseg"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/shows", - METH_PUT, - headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, - json=None, - ) - - -async def test_save_no_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving no shows.""" - await authenticated_client.save_shows([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_save_too_many_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving too many shows.""" - with pytest.raises(ValueError, match="Maximum of 50 shows can be saved at once"): - await authenticated_client.save_shows(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing shows.""" - responses.delete( - f"{SPOTIFY_URL}/v1/me/shows?ids=0TnOYISbd1XYRBk9myaseg", - status=200, - body="", - ) - await authenticated_client.remove_saved_shows(["0TnOYISbd1XYRBk9myaseg"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/shows", - METH_DELETE, - headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, - json=None, - ) - - -async def test_remove_no_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing no shows.""" - await authenticated_client.remove_saved_shows([]) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_remove_too_many_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test removing too many shows.""" - with pytest.raises(ValueError, match="Maximum of 50 shows can be removed at once"): - await authenticated_client.remove_saved_shows(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_saved_shows( - responses: aioresponses, - snapshot: SnapshotAssertion, - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved shows.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/shows/contains?ids=18yVqkdbdRvS24c0Ilj2ci%2C1HGw3J3NxZO1TP1BTtVhpZ", - status=200, - body=load_fixture("shows_saved.json"), - ) - response = await authenticated_client.are_shows_saved( - ["18yVqkdbdRvS24c0Ilj2ci", "1HGw3J3NxZO1TP1BTtVhpZ"] - ) - assert response == snapshot - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/shows/contains", - METH_GET, - headers=HEADERS, - params={"ids": "18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ"}, - json=None, - ) - - -async def test_check_no_saved_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking no saved shows.""" - assert await authenticated_client.are_shows_saved([]) == {} - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_too_many_saved_shows( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking too many saved shows.""" - with pytest.raises(ValueError, match="Maximum of 50 shows can be checked at once"): - await authenticated_client.are_shows_saved(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_save_tracks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test saving tracks.""" - responses.put( - f"{SPOTIFY_URL}/v1/me/tracks?ids=0TnOYISbd1XYRBk9myaseg", - status=200, - body="", + await authenticated_client.save_to_library( + ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh", "spotify:album:1uyf3l2d4XYwiEqAb7t7fX"] ) - await authenticated_client.save_tracks(["0TnOYISbd1XYRBk9myaseg"]) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/tracks", + f"{SPOTIFY_URL}/v1/me/library", METH_PUT, headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, + params={ + "uris": "spotify:track:4iV5W9uYEdYUVa79Axb7Rh," + "spotify:album:1uyf3l2d4XYwiEqAb7t7fX" + }, json=None, ) -async def test_save_no_tracks( +async def test_save_to_library_no_uris( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test saving no tracks.""" - await authenticated_client.save_tracks([]) + """Test saving empty list to library does nothing.""" + await authenticated_client.save_to_library([]) responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_save_too_many_tracks( +async def test_save_to_library_too_many( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test saving too many tracks.""" - with pytest.raises(ValueError, match="Maximum of 50 tracks can be saved at once"): - await authenticated_client.save_tracks(["abc"] * 51) + """Test saving too many items to library raises ValueError.""" + with pytest.raises(ValueError, match="Maximum of 40 URIs can be saved at once"): + await authenticated_client.save_to_library(["spotify:track:abc"] * 41) responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_remove_tracks( +async def test_remove_from_library( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test removing tracks.""" + """Test removing items from library.""" responses.delete( - f"{SPOTIFY_URL}/v1/me/tracks?ids=0TnOYISbd1XYRBk9myaseg", + f"{SPOTIFY_URL}/v1/me/library?uris=spotify%3Atrack%3A4iV5W9uYEdYUVa79Axb7Rh%2Cspotify%3Aalbum%3A1uyf3l2d4XYwiEqAb7t7fX", status=200, body="", ) - await authenticated_client.remove_saved_tracks(["0TnOYISbd1XYRBk9myaseg"]) + await authenticated_client.remove_from_library( + ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh", "spotify:album:1uyf3l2d4XYwiEqAb7t7fX"] + ) responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/tracks", + f"{SPOTIFY_URL}/v1/me/library", METH_DELETE, headers=HEADERS, - params={"ids": "0TnOYISbd1XYRBk9myaseg"}, + params={ + "uris": "spotify:track:4iV5W9uYEdYUVa79Axb7Rh," + "spotify:album:1uyf3l2d4XYwiEqAb7t7fX" + }, json=None, ) -async def test_remove_no_tracks( +async def test_remove_from_library_no_uris( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test removing no tracks.""" - await authenticated_client.remove_saved_tracks([]) + """Test removing empty list from library does nothing.""" + await authenticated_client.remove_from_library([]) responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_remove_too_many_tracks( +async def test_remove_from_library_too_many( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test removing too many tracks.""" - with pytest.raises(ValueError, match="Maximum of 50 tracks can be removed at once"): - await authenticated_client.remove_saved_tracks(["abc"] * 51) + """Test removing too many items from library raises ValueError.""" + with pytest.raises(ValueError, match="Maximum of 40 URIs can be removed at once"): + await authenticated_client.remove_from_library(["spotify:track:abc"] * 41) responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_check_saved_tracks( +async def test_are_in_library( responses: aioresponses, snapshot: SnapshotAssertion, authenticated_client: SpotifyClient, ) -> None: - """Test checking saved tracks.""" + """Test checking if items are in library.""" responses.get( - f"{SPOTIFY_URL}/v1/me/tracks/contains?ids=18yVqkdbdRvS24c0Ilj2ci%2C1HGw3J3NxZO1TP1BTtVhpZ", + f"{SPOTIFY_URL}/v1/me/library/contains?uris=spotify%3Atrack%3A4iV5W9uYEdYUVa79Axb7Rh%2Cspotify%3Aalbum%3A1uyf3l2d4XYwiEqAb7t7fX", status=200, - body=load_fixture("tracks_saved.json"), + body=load_fixture("library_contains.json"), ) - response = await authenticated_client.are_tracks_saved( - ["18yVqkdbdRvS24c0Ilj2ci", "1HGw3J3NxZO1TP1BTtVhpZ"] + response = await authenticated_client.are_in_library( + ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh", "spotify:album:1uyf3l2d4XYwiEqAb7t7fX"] ) assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/tracks/contains", - METH_GET, - headers=HEADERS, - params={"ids": "18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ"}, - json=None, - ) - - -async def test_check_saved_track( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved track.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/tracks/contains?ids=18yVqkdbdRvS24c0Ilj2ci", - status=200, - body=load_fixture("tracks_saved.json"), - ) - assert await authenticated_client.is_track_saved("18yVqkdbdRvS24c0Ilj2ci") is True - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/tracks/contains", + f"{SPOTIFY_URL}/v1/me/library/contains", METH_GET, headers=HEADERS, - params={"ids": "18yVqkdbdRvS24c0Ilj2ci"}, - json=None, - ) - - -@pytest.mark.parametrize( - ("prefix", "url_part"), - [ - ("spotify:track:", "tracks"), - ("spotify:episode:", "episodes"), - ("spotify:show:", "shows"), - ("spotify:album:", "albums"), - ], -) -async def test_check_saved_item( - responses: aioresponses, - authenticated_client: SpotifyClient, - prefix: str, - url_part: str, -) -> None: - """Test checking saved track.""" - responses.get( - f"{SPOTIFY_URL}/v1/me/{url_part}/contains?ids=18yVqkdbdRvS24c0Ilj2ci", - status=200, - body=load_fixture("tracks_saved.json"), - ) - assert ( - await authenticated_client.is_added_to_library( - f"{prefix}18yVqkdbdRvS24c0Ilj2ci" - ) - is True - ) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/{url_part}/contains", - METH_GET, - headers=HEADERS, - params={"ids": "18yVqkdbdRvS24c0Ilj2ci"}, - json=None, - ) - - -async def test_checking_invalid_uri( - authenticated_client: SpotifyClient, -) -> None: - """Test checking saved track.""" - with pytest.raises(ValueError, match="Invalid URI format"): - await authenticated_client.is_added_to_library( - "spotify:new:18yVqkdbdRvS24c0Ilj2ci" - ) - - -async def test_check_no_saved_tracks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking no saved tracks.""" - assert await authenticated_client.are_tracks_saved([]) == {} - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_check_too_many_saved_tracks( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking too many saved tracks.""" - with pytest.raises(ValueError, match="Maximum of 50 tracks can be checked at once"): - await authenticated_client.are_tracks_saved(["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_follow_playlist( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test following a playlist.""" - responses.put( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers", - status=200, - body="", - ) - await authenticated_client.follow_playlist("37i9dQZF1DXcBWIGoYBM5M") - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers", - METH_PUT, - headers=HEADERS, - params=None, - json=None, - ) - - -async def test_unfollow_playlist( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test unfollowing a playlist.""" - responses.delete( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers", - status=200, - body="", - ) - await authenticated_client.unfollow_playlist("37i9dQZF1DXcBWIGoYBM5M") - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers", - METH_DELETE, - headers=HEADERS, - params=None, - json=None, - ) - - -async def test_follow_account( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test following an account.""" - responses.put( - f"{SPOTIFY_URL}/v1/me/following?ids=spotify&type=user", - status=200, - body="", - ) - await authenticated_client.follow_account(FollowType.USER, ["spotify"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/following", - METH_PUT, - headers=HEADERS, - params={"type": "user", "ids": "spotify"}, + params={ + "uris": "spotify:track:4iV5W9uYEdYUVa79Axb7Rh," + "spotify:album:1uyf3l2d4XYwiEqAb7t7fX" + }, json=None, ) -async def test_follow_no_account( +async def test_are_in_library_no_uris( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test following no account.""" - await authenticated_client.follow_account(FollowType.USER, []) + """Test checking empty list returns empty dict.""" + response = await authenticated_client.are_in_library([]) + assert response == {} responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_follow_too_many_accounts( +async def test_are_in_library_too_many( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test following too many accounts.""" - with pytest.raises( - ValueError, match="Maximum of 50 accounts can be followed at once" - ): - await authenticated_client.follow_account(FollowType.USER, ["abc"] * 51) + """Test checking too many items raises ValueError.""" + with pytest.raises(ValueError, match="Maximum of 40 URIs can be checked at once"): + await authenticated_client.are_in_library(["spotify:track:abc"] * 41) responses.assert_not_called() # type: ignore[no-untyped-call] -async def test_unfollow_account( +async def test_is_added_to_library( responses: aioresponses, authenticated_client: SpotifyClient, ) -> None: - """Test unfollowing an account.""" - responses.delete( - f"{SPOTIFY_URL}/v1/me/following?ids=spotify&type=user", + """Test checking single item in library.""" + responses.get( + f"{SPOTIFY_URL}/v1/me/library/contains?uris=spotify%3Atrack%3A4iV5W9uYEdYUVa79Axb7Rh", status=200, - body="", + body=load_fixture("library_contains.json"), ) - await authenticated_client.unfollow_account(FollowType.USER, ["spotify"]) - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/following", - METH_DELETE, - headers=HEADERS, - params={"type": "user", "ids": "spotify"}, - json=None, + result = await authenticated_client.is_added_to_library( + "spotify:track:4iV5W9uYEdYUVa79Axb7Rh" ) + assert result is False -async def test_unfollow_no_account( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test unfollowing no account.""" - await authenticated_client.unfollow_account(FollowType.USER, []) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_unfollow_too_many_accounts( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test unfollowing too many accounts.""" - with pytest.raises( - ValueError, match="Maximum of 50 accounts can be unfollowed at once" - ): - await authenticated_client.unfollow_account(FollowType.USER, ["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_are_accounts_followed( +async def test_get_audio_features( responses: aioresponses, snapshot: SnapshotAssertion, authenticated_client: SpotifyClient, ) -> None: - """Test checking if accounts are followed.""" + """Test retrieving audio features.""" responses.get( - f"{SPOTIFY_URL}/v1/me/following/contains?type=user&ids=spotify%2Cspotifyartists", + f"{SPOTIFY_URL}/v1/audio-features/11dFghVXANMlKmJXsNCbNl", status=200, - body=load_fixture("accounts_followed.json"), - ) - response = await authenticated_client.are_accounts_followed( - FollowType.USER, ["spotify", "spotifyartists"] + body=load_fixture("audio_features.json"), ) + response = await authenticated_client.get_audio_features("11dFghVXANMlKmJXsNCbNl") assert response == snapshot responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/me/following/contains", - METH_GET, - headers=HEADERS, - params={"type": "user", "ids": "spotify,spotifyartists"}, - json=None, - ) - - -async def test_are_no_accounts_followed( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking if no accounts are followed.""" - assert await authenticated_client.are_accounts_followed(FollowType.USER, []) == {} - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_are_too_many_accounts_followed( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking if too many accounts are followed.""" - with pytest.raises( - ValueError, match="Maximum of 50 accounts can be checked at once" - ): - await authenticated_client.are_accounts_followed(FollowType.USER, ["abc"] * 51) - responses.assert_not_called() # type: ignore[no-untyped-call] - - -async def test_is_following_playlist( - responses: aioresponses, - authenticated_client: SpotifyClient, -) -> None: - """Test checking if a playlist is followed.""" - responses.get( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers/contains", - status=200, - body="[true]", - ) - response = await authenticated_client.is_following_playlist( - "37i9dQZF1DXcBWIGoYBM5M" - ) - assert response is True - responses.assert_called_once_with( - f"{SPOTIFY_URL}/v1/playlists/37i9dQZF1DXcBWIGoYBM5M/followers/contains", + f"{SPOTIFY_URL}/v1/audio-features/11dFghVXANMlKmJXsNCbNl", METH_GET, headers=HEADERS, params=None, From cdc4a32e48ea602e47432cb7e552ea90e601b08b Mon Sep 17 00:00:00 2001 From: Joostlek Date: Wed, 25 Feb 2026 22:20:46 +0100 Subject: [PATCH 3/3] Apply API changes --- .prettierrc | 3 + tests/fixtures/album_tracks.json | 5552 +- tests/fixtures/artist.json | 54 +- tests/fixtures/artist_albums.json | 22552 +-- tests/fixtures/audio_features.json | 36 +- tests/fixtures/audiobook.json | 9558 +- tests/fixtures/audiobook_chapters.json | 8896 +- tests/fixtures/chapter.json | 918 +- tests/fixtures/current_playing_track.json | 914 +- tests/fixtures/current_user.json | 44 +- tests/fixtures/current_user_playlist_1.json | 4542 +- tests/fixtures/current_user_playlist_2.json | 3926 +- tests/fixtures/devices.json | 24 +- tests/fixtures/episode.json | 508 +- tests/fixtures/followed_artists.json | 2939 +- tests/fixtures/get_album.json | 5186 +- tests/fixtures/new_playlist.json | 70 +- tests/fixtures/playback_1.json | 938 +- tests/fixtures/playback_2.json | 906 +- tests/fixtures/playback_3.json | 938 +- tests/fixtures/playback_4.json | 122 +- tests/fixtures/playback_audiobook_1.json | 578 +- tests/fixtures/playback_episode_1.json | 578 +- tests/fixtures/playlist_1.json | 3890 +- tests/fixtures/playlist_2.json | 378 +- tests/fixtures/playlist_3.json | 2126 +- tests/fixtures/playlist_cover_image.json | 10 +- tests/fixtures/playlist_items.json | 1916 +- tests/fixtures/playlist_not_found.json | 8 +- tests/fixtures/playlist_update_items.json | 2 +- tests/fixtures/rate_limit.json | 8 +- tests/fixtures/recently_played_tracks.json | 43670 ++--- tests/fixtures/saved_albums.json | 154146 ++++++++--------- tests/fixtures/saved_audiobooks.json | 980 +- tests/fixtures/saved_episodes.json | 644 +- tests/fixtures/saved_shows.json | 5868 +- tests/fixtures/saved_tracks.json | 43454 ++--- tests/fixtures/search.json | 4482 +- tests/fixtures/show.json | 4638 +- tests/fixtures/show_episodes.json | 3758 +- tests/fixtures/top_artists.json | 3008 +- tests/fixtures/top_tracks.json | 39556 ++--- 42 files changed, 191156 insertions(+), 191168 deletions(-) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..75fa134 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "tabWidth": 2 +} diff --git a/tests/fixtures/album_tracks.json b/tests/fixtures/album_tracks.json index 3475235..a9933d4 100644 --- a/tests/fixtures/album_tracks.json +++ b/tests/fixtures/album_tracks.json @@ -1,2814 +1,2814 @@ { - "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy/tracks?offset=0&limit=48", - "items": [ + "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy/tracks?offset=0&limit=48", + "items": [ + { + "artists": [ { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" - }, - "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", - "id": "7iJrDbKM5fEkGdm5kpjFzS", - "name": "Sensato", - "type": "artist", - "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 85400, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6OmhkSOpvYBokMKQxpIGx2" - }, - "href": "https://api.spotify.com/v1/tracks/6OmhkSOpvYBokMKQxpIGx2", - "id": "6OmhkSOpvYBokMKQxpIGx2", - "name": "Global Warming (feat. Sensato)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6OmhkSOpvYBokMKQxpIGx2", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2L8yW8GIoirHEdeW4bWQXq" - }, - "href": "https://api.spotify.com/v1/artists/2L8yW8GIoirHEdeW4bWQXq", - "id": "2L8yW8GIoirHEdeW4bWQXq", - "name": "TJR", - "type": "artist", - "uri": "spotify:artist:2L8yW8GIoirHEdeW4bWQXq" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206120, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2iblMMIgSznA464mNov7A8" - }, - "href": "https://api.spotify.com/v1/tracks/2iblMMIgSznA464mNov7A8", - "id": "2iblMMIgSznA464mNov7A8", - "name": "Don't Stop the Party (feat. TJR)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:2iblMMIgSznA464mNov7A8", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" + }, + "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", + "id": "7iJrDbKM5fEkGdm5kpjFzS", + "name": "Sensato", + "type": "artist", + "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 85400, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6OmhkSOpvYBokMKQxpIGx2" + }, + "href": "https://api.spotify.com/v1/tracks/6OmhkSOpvYBokMKQxpIGx2", + "id": "6OmhkSOpvYBokMKQxpIGx2", + "name": "Global Warming (feat. Sensato)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6OmhkSOpvYBokMKQxpIGx2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2L8yW8GIoirHEdeW4bWQXq" + }, + "href": "https://api.spotify.com/v1/artists/2L8yW8GIoirHEdeW4bWQXq", + "id": "2L8yW8GIoirHEdeW4bWQXq", + "name": "TJR", + "type": "artist", + "uri": "spotify:artist:2L8yW8GIoirHEdeW4bWQXq" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2iblMMIgSznA464mNov7A8" + }, + "href": "https://api.spotify.com/v1/tracks/2iblMMIgSznA464mNov7A8", + "id": "2iblMMIgSznA464mNov7A8", + "name": "Don't Stop the Party (feat. TJR)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2iblMMIgSznA464mNov7A8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS" + }, + "href": "https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS", + "id": "1l7ZsJRRS8wlW3WfJfPfNS", + "name": "Christina Aguilera", + "type": "artist", + "uri": "spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229506, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4yOn1TEcfsKHUJCL2h1r8I" + }, + "href": "https://api.spotify.com/v1/tracks/4yOn1TEcfsKHUJCL2h1r8I", + "id": "4yOn1TEcfsKHUJCL2h1r8I", + "name": "Feel This Moment (feat. Christina Aguilera)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4yOn1TEcfsKHUJCL2h1r8I", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7fmpKF0rLGPnP7kcQ5ZMm7" + }, + "href": "https://api.spotify.com/v1/tracks/7fmpKF0rLGPnP7kcQ5ZMm7", + "id": "7fmpKF0rLGPnP7kcQ5ZMm7", + "name": "Back in Time - featured in \"Men In Black 3\"", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7fmpKF0rLGPnP7kcQ5ZMm7", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" + }, + "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", + "id": "7bXgB6jMjp9ATFy66eO08Z", + "name": "Chris Brown", + "type": "artist", + "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jStb2imKd6oUoBT1zq5lp" + }, + "href": "https://api.spotify.com/v1/tracks/3jStb2imKd6oUoBT1zq5lp", + "id": "3jStb2imKd6oUoBT1zq5lp", + "name": "Hope We Meet Again (feat. Chris Brown)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3jStb2imKd6oUoBT1zq5lp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" + }, + "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", + "id": "23zg3TcAtWQy7J6upgbUnj", + "name": "USHER", + "type": "artist", + "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 243160, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Q4PYJtrq8CBx7YCY5IyRN" + }, + "href": "https://api.spotify.com/v1/tracks/6Q4PYJtrq8CBx7YCY5IyRN", + "id": "6Q4PYJtrq8CBx7YCY5IyRN", + "name": "Party Ain't Over (feat. Usher & Afrojack)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6Q4PYJtrq8CBx7YCY5IyRN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2DlGxzQSjYe5N6G9nkYghR" + }, + "href": "https://api.spotify.com/v1/artists/2DlGxzQSjYe5N6G9nkYghR", + "id": "2DlGxzQSjYe5N6G9nkYghR", + "name": "Jennifer Lopez", + "type": "artist", + "uri": "spotify:artist:2DlGxzQSjYe5N6G9nkYghR" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 196920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QTVwqcOsYd73AOkYkk0Hg" + }, + "href": "https://api.spotify.com/v1/tracks/0QTVwqcOsYd73AOkYkk0Hg", + "id": "0QTVwqcOsYd73AOkYkk0Hg", + "name": "Drinks for You (Ladies Anthem) (feat. J. Lo)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0QTVwqcOsYd73AOkYkk0Hg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS" - }, - "href": "https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS", - "id": "1l7ZsJRRS8wlW3WfJfPfNS", - "name": "Christina Aguilera", - "type": "artist", - "uri": "spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229506, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4yOn1TEcfsKHUJCL2h1r8I" - }, - "href": "https://api.spotify.com/v1/tracks/4yOn1TEcfsKHUJCL2h1r8I", - "id": "4yOn1TEcfsKHUJCL2h1r8I", - "name": "Feel This Moment (feat. Christina Aguilera)", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4yOn1TEcfsKHUJCL2h1r8I", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/2NhdGz9EDv2FeUw6udu2g1" + }, + "href": "https://api.spotify.com/v1/artists/2NhdGz9EDv2FeUw6udu2g1", + "id": "2NhdGz9EDv2FeUw6udu2g1", + "name": "The Wanted", + "type": "artist", + "uri": "spotify:artist:2NhdGz9EDv2FeUw6udu2g1" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7fmpKF0rLGPnP7kcQ5ZMm7" - }, - "href": "https://api.spotify.com/v1/tracks/7fmpKF0rLGPnP7kcQ5ZMm7", - "id": "7fmpKF0rLGPnP7kcQ5ZMm7", - "name": "Back in Time - featured in \"Men In Black 3\"", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:7fmpKF0rLGPnP7kcQ5ZMm7", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244920, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/10Sydb6AAFPdgCzCKOSZuI" + }, + "href": "https://api.spotify.com/v1/tracks/10Sydb6AAFPdgCzCKOSZuI", + "id": "10Sydb6AAFPdgCzCKOSZuI", + "name": "Have Some Fun (feat. The Wanted & Afrojack)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:10Sydb6AAFPdgCzCKOSZuI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" - }, - "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", - "id": "7bXgB6jMjp9ATFy66eO08Z", - "name": "Chris Brown", - "type": "artist", - "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221133, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3jStb2imKd6oUoBT1zq5lp" - }, - "href": "https://api.spotify.com/v1/tracks/3jStb2imKd6oUoBT1zq5lp", - "id": "3jStb2imKd6oUoBT1zq5lp", - "name": "Hope We Meet Again (feat. Chris Brown)", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:3jStb2imKd6oUoBT1zq5lp", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/0e9P96siQmxphVXAwTy2pa" + }, + "href": "https://api.spotify.com/v1/artists/0e9P96siQmxphVXAwTy2pa", + "id": "0e9P96siQmxphVXAwTy2pa", + "name": "Danny Mercer", + "type": "artist", + "uri": "spotify:artist:0e9P96siQmxphVXAwTy2pa" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206800, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4k61iDqmtX9nI7RfLmp9aq" + }, + "href": "https://api.spotify.com/v1/tracks/4k61iDqmtX9nI7RfLmp9aq", + "id": "4k61iDqmtX9nI7RfLmp9aq", + "name": "Outta Nowhere (feat. Danny Mercer)", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:4k61iDqmtX9nI7RfLmp9aq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/23zg3TcAtWQy7J6upgbUnj" - }, - "href": "https://api.spotify.com/v1/artists/23zg3TcAtWQy7J6upgbUnj", - "id": "23zg3TcAtWQy7J6upgbUnj", - "name": "USHER", - "type": "artist", - "uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 243160, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Q4PYJtrq8CBx7YCY5IyRN" - }, - "href": "https://api.spotify.com/v1/tracks/6Q4PYJtrq8CBx7YCY5IyRN", - "id": "6Q4PYJtrq8CBx7YCY5IyRN", - "name": "Party Ain't Over (feat. Usher & Afrojack)", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6Q4PYJtrq8CBx7YCY5IyRN", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" + }, + "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", + "id": "7qG3b048QCHVRO5Pv1T5lw", + "name": "Enrique Iglesias", + "type": "artist", + "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205800, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7oGRkL31ElVMcevQDceT99" + }, + "href": "https://api.spotify.com/v1/tracks/7oGRkL31ElVMcevQDceT99", + "id": "7oGRkL31ElVMcevQDceT99", + "name": "Tchu Tchu Tcha (feat. Enrique Iglesias)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7oGRkL31ElVMcevQDceT99", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2DlGxzQSjYe5N6G9nkYghR" - }, - "href": "https://api.spotify.com/v1/artists/2DlGxzQSjYe5N6G9nkYghR", - "id": "2DlGxzQSjYe5N6G9nkYghR", - "name": "Jennifer Lopez", - "type": "artist", - "uri": "spotify:artist:2DlGxzQSjYe5N6G9nkYghR" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 196920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0QTVwqcOsYd73AOkYkk0Hg" - }, - "href": "https://api.spotify.com/v1/tracks/0QTVwqcOsYd73AOkYkk0Hg", - "id": "0QTVwqcOsYd73AOkYkk0Hg", - "name": "Drinks for You (Ladies Anthem) (feat. J. Lo)", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:0QTVwqcOsYd73AOkYkk0Hg", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2NhdGz9EDv2FeUw6udu2g1" - }, - "href": "https://api.spotify.com/v1/artists/2NhdGz9EDv2FeUw6udu2g1", - "id": "2NhdGz9EDv2FeUw6udu2g1", - "name": "The Wanted", - "type": "artist", - "uri": "spotify:artist:2NhdGz9EDv2FeUw6udu2g1" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244920, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/10Sydb6AAFPdgCzCKOSZuI" - }, - "href": "https://api.spotify.com/v1/tracks/10Sydb6AAFPdgCzCKOSZuI", - "id": "10Sydb6AAFPdgCzCKOSZuI", - "name": "Have Some Fun (feat. The Wanted & Afrojack)", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:10Sydb6AAFPdgCzCKOSZuI", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/1EVWYRr2obCRDoSoD6KSuM" + }, + "href": "https://api.spotify.com/v1/artists/1EVWYRr2obCRDoSoD6KSuM", + "id": "1EVWYRr2obCRDoSoD6KSuM", + "name": "Havana Brown", + "type": "artist", + "uri": "spotify:artist:1EVWYRr2obCRDoSoD6KSuM" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219600, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/60xPqMqnHZl7Jfiu6E9q8X" + }, + "href": "https://api.spotify.com/v1/tracks/60xPqMqnHZl7Jfiu6E9q8X", + "id": "60xPqMqnHZl7Jfiu6E9q8X", + "name": "Last Night (feat. Afrojack & Havana Brown)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:60xPqMqnHZl7Jfiu6E9q8X", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197520, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1jAdXqOSICyXYLaW9ioSur" + }, + "href": "https://api.spotify.com/v1/tracks/1jAdXqOSICyXYLaW9ioSur", + "id": "1jAdXqOSICyXYLaW9ioSur", + "name": "I'm Off That", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:1jAdXqOSICyXYLaW9ioSur", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0e9P96siQmxphVXAwTy2pa" - }, - "href": "https://api.spotify.com/v1/artists/0e9P96siQmxphVXAwTy2pa", - "id": "0e9P96siQmxphVXAwTy2pa", - "name": "Danny Mercer", - "type": "artist", - "uri": "spotify:artist:0e9P96siQmxphVXAwTy2pa" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206800, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4k61iDqmtX9nI7RfLmp9aq" - }, - "href": "https://api.spotify.com/v1/tracks/4k61iDqmtX9nI7RfLmp9aq", - "id": "4k61iDqmtX9nI7RfLmp9aq", - "name": "Outta Nowhere (feat. Danny Mercer)", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:4k61iDqmtX9nI7RfLmp9aq", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/5F2Bwl7Is7KVwTbNbMclIS" + }, + "href": "https://api.spotify.com/v1/artists/5F2Bwl7Is7KVwTbNbMclIS", + "id": "5F2Bwl7Is7KVwTbNbMclIS", + "name": "Papayo", + "type": "artist", + "uri": "spotify:artist:5F2Bwl7Is7KVwTbNbMclIS" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 196440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0fjRYHFz9ealui1lfnN8it" + }, + "href": "https://api.spotify.com/v1/tracks/0fjRYHFz9ealui1lfnN8it", + "id": "0fjRYHFz9ealui1lfnN8it", + "name": "Echa Pa'lla (Manos Pa'rriba) (feat. Papayo)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:0fjRYHFz9ealui1lfnN8it", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" - }, - "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", - "id": "7qG3b048QCHVRO5Pv1T5lw", - "name": "Enrique Iglesias", - "type": "artist", - "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205800, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7oGRkL31ElVMcevQDceT99" - }, - "href": "https://api.spotify.com/v1/tracks/7oGRkL31ElVMcevQDceT99", - "id": "7oGRkL31ElVMcevQDceT99", - "name": "Tchu Tchu Tcha (feat. Enrique Iglesias)", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:7oGRkL31ElVMcevQDceT99", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/0z4gvV4rjIZ9wHck67ucSV" + }, + "href": "https://api.spotify.com/v1/artists/0z4gvV4rjIZ9wHck67ucSV", + "id": "0z4gvV4rjIZ9wHck67ucSV", + "name": "Akon", + "type": "artist", + "uri": "spotify:artist:0z4gvV4rjIZ9wHck67ucSV" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1EVWYRr2obCRDoSoD6KSuM" - }, - "href": "https://api.spotify.com/v1/artists/1EVWYRr2obCRDoSoD6KSuM", - "id": "1EVWYRr2obCRDoSoD6KSuM", - "name": "Havana Brown", - "type": "artist", - "uri": "spotify:artist:1EVWYRr2obCRDoSoD6KSuM" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219600, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/60xPqMqnHZl7Jfiu6E9q8X" - }, - "href": "https://api.spotify.com/v1/tracks/60xPqMqnHZl7Jfiu6E9q8X", - "id": "60xPqMqnHZl7Jfiu6E9q8X", - "name": "Last Night (feat. Afrojack & Havana Brown)", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:60xPqMqnHZl7Jfiu6E9q8X", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IqWDVLGThjmkm22e3oBU3" + }, + "href": "https://api.spotify.com/v1/artists/5IqWDVLGThjmkm22e3oBU3", + "id": "5IqWDVLGThjmkm22e3oBU3", + "name": "David Rush", + "type": "artist", + "uri": "spotify:artist:5IqWDVLGThjmkm22e3oBU3" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 257613, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7of35ktwTbL906Z1i3mT4K" + }, + "href": "https://api.spotify.com/v1/tracks/7of35ktwTbL906Z1i3mT4K", + "id": "7of35ktwTbL906Z1i3mT4K", + "name": "Everybody Fucks (feat. Akon & David Rush)", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:7of35ktwTbL906Z1i3mT4K", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197520, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1jAdXqOSICyXYLaW9ioSur" - }, - "href": "https://api.spotify.com/v1/tracks/1jAdXqOSICyXYLaW9ioSur", - "id": "1jAdXqOSICyXYLaW9ioSur", - "name": "I'm Off That", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:1jAdXqOSICyXYLaW9ioSur", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/0EmeFodog0BfCgMzAIvKQp" + }, + "href": "https://api.spotify.com/v1/artists/0EmeFodog0BfCgMzAIvKQp", + "id": "0EmeFodog0BfCgMzAIvKQp", + "name": "Shakira", + "type": "artist", + "uri": "spotify:artist:0EmeFodog0BfCgMzAIvKQp" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2JA6A6Y5f4m7PawM58U2Op" + }, + "href": "https://api.spotify.com/v1/tracks/2JA6A6Y5f4m7PawM58U2Op", + "id": "2JA6A6Y5f4m7PawM58U2Op", + "name": "Get It Started (feat. Shakira)", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:2JA6A6Y5f4m7PawM58U2Op", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5F2Bwl7Is7KVwTbNbMclIS" - }, - "href": "https://api.spotify.com/v1/artists/5F2Bwl7Is7KVwTbNbMclIS", - "id": "5F2Bwl7Is7KVwTbNbMclIS", - "name": "Papayo", - "type": "artist", - "uri": "spotify:artist:5F2Bwl7Is7KVwTbNbMclIS" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 196440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0fjRYHFz9ealui1lfnN8it" - }, - "href": "https://api.spotify.com/v1/tracks/0fjRYHFz9ealui1lfnN8it", - "id": "0fjRYHFz9ealui1lfnN8it", - "name": "Echa Pa'lla (Manos Pa'rriba) (feat. Papayo)", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:0fjRYHFz9ealui1lfnN8it", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BnF35ARlp8mMeyXTjUZsr" + }, + "href": "https://api.spotify.com/v1/artists/3BnF35ARlp8mMeyXTjUZsr", + "id": "3BnF35ARlp8mMeyXTjUZsr", + "name": "Vein", + "type": "artist", + "uri": "spotify:artist:3BnF35ARlp8mMeyXTjUZsr" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217680, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/726qZxwhP0jVyIA0ujnnhb" + }, + "href": "https://api.spotify.com/v1/tracks/726qZxwhP0jVyIA0ujnnhb", + "id": "726qZxwhP0jVyIA0ujnnhb", + "name": "11:59 (feat. Vein)", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:726qZxwhP0jVyIA0ujnnhb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0z4gvV4rjIZ9wHck67ucSV" - }, - "href": "https://api.spotify.com/v1/artists/0z4gvV4rjIZ9wHck67ucSV", - "id": "0z4gvV4rjIZ9wHck67ucSV", - "name": "Akon", - "type": "artist", - "uri": "spotify:artist:0z4gvV4rjIZ9wHck67ucSV" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5IqWDVLGThjmkm22e3oBU3" - }, - "href": "https://api.spotify.com/v1/artists/5IqWDVLGThjmkm22e3oBU3", - "id": "5IqWDVLGThjmkm22e3oBU3", - "name": "David Rush", - "type": "artist", - "uri": "spotify:artist:5IqWDVLGThjmkm22e3oBU3" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 257613, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7of35ktwTbL906Z1i3mT4K" - }, - "href": "https://api.spotify.com/v1/tracks/7of35ktwTbL906Z1i3mT4K", - "id": "7of35ktwTbL906Z1i3mT4K", - "name": "Everybody Fucks (feat. Akon & David Rush)", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:7of35ktwTbL906Z1i3mT4K", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/4wLXwxDeWQ8mtUIRPxGiD6" + }, + "href": "https://api.spotify.com/v1/artists/4wLXwxDeWQ8mtUIRPxGiD6", + "id": "4wLXwxDeWQ8mtUIRPxGiD6", + "name": "Marc Anthony", + "type": "artist", + "uri": "spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0EmeFodog0BfCgMzAIvKQp" - }, - "href": "https://api.spotify.com/v1/artists/0EmeFodog0BfCgMzAIvKQp", - "id": "0EmeFodog0BfCgMzAIvKQp", - "name": "Shakira", - "type": "artist", - "uri": "spotify:artist:0EmeFodog0BfCgMzAIvKQp" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2JA6A6Y5f4m7PawM58U2Op" - }, - "href": "https://api.spotify.com/v1/tracks/2JA6A6Y5f4m7PawM58U2Op", - "id": "2JA6A6Y5f4m7PawM58U2Op", - "name": "Get It Started (feat. Shakira)", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:2JA6A6Y5f4m7PawM58U2Op", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/4MHssKddnziCghmwBHRiEY" + }, + "href": "https://api.spotify.com/v1/artists/4MHssKddnziCghmwBHRiEY", + "id": "4MHssKddnziCghmwBHRiEY", + "name": "Alle", + "type": "artist", + "uri": "spotify:artist:4MHssKddnziCghmwBHRiEY" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3BnF35ARlp8mMeyXTjUZsr" - }, - "href": "https://api.spotify.com/v1/artists/3BnF35ARlp8mMeyXTjUZsr", - "id": "3BnF35ARlp8mMeyXTjUZsr", - "name": "Vein", - "type": "artist", - "uri": "spotify:artist:3BnF35ARlp8mMeyXTjUZsr" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217680, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/726qZxwhP0jVyIA0ujnnhb" - }, - "href": "https://api.spotify.com/v1/tracks/726qZxwhP0jVyIA0ujnnhb", - "id": "726qZxwhP0jVyIA0ujnnhb", - "name": "11:59 (feat. Vein)", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:726qZxwhP0jVyIA0ujnnhb", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/4Ws2otunReOa6BbwxxpCt6" + }, + "href": "https://api.spotify.com/v1/artists/4Ws2otunReOa6BbwxxpCt6", + "id": "4Ws2otunReOa6BbwxxpCt6", + "name": "Benny Benassi", + "type": "artist", + "uri": "spotify:artist:4Ws2otunReOa6BbwxxpCt6" + } + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 316480, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GPER1Sx8MrBiwWxdulg5Q" + }, + "href": "https://api.spotify.com/v1/tracks/6GPER1Sx8MrBiwWxdulg5Q", + "id": "6GPER1Sx8MrBiwWxdulg5Q", + "name": "Rain Over Me (feat. Marc Anthony) - Benny Benassi Remix", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:6GPER1Sx8MrBiwWxdulg5Q", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4wLXwxDeWQ8mtUIRPxGiD6" - }, - "href": "https://api.spotify.com/v1/artists/4wLXwxDeWQ8mtUIRPxGiD6", - "id": "4wLXwxDeWQ8mtUIRPxGiD6", - "name": "Marc Anthony", - "type": "artist", - "uri": "spotify:artist:4wLXwxDeWQ8mtUIRPxGiD6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4MHssKddnziCghmwBHRiEY" - }, - "href": "https://api.spotify.com/v1/artists/4MHssKddnziCghmwBHRiEY", - "id": "4MHssKddnziCghmwBHRiEY", - "name": "Alle", - "type": "artist", - "uri": "spotify:artist:4MHssKddnziCghmwBHRiEY" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4Ws2otunReOa6BbwxxpCt6" - }, - "href": "https://api.spotify.com/v1/artists/4Ws2otunReOa6BbwxxpCt6", - "id": "4Ws2otunReOa6BbwxxpCt6", - "name": "Benny Benassi", - "type": "artist", - "uri": "spotify:artist:4Ws2otunReOa6BbwxxpCt6" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 316480, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6GPER1Sx8MrBiwWxdulg5Q" - }, - "href": "https://api.spotify.com/v1/tracks/6GPER1Sx8MrBiwWxdulg5Q", - "id": "6GPER1Sx8MrBiwWxdulg5Q", - "name": "Rain Over Me (feat. Marc Anthony) - Benny Benassi Remix", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:6GPER1Sx8MrBiwWxdulg5Q", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" + }, + "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", + "id": "7bXgB6jMjp9ATFy66eO08Z", + "name": "Chris Brown", + "type": "artist", + "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" }, { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7bXgB6jMjp9ATFy66eO08Z" - }, - "href": "https://api.spotify.com/v1/artists/7bXgB6jMjp9ATFy66eO08Z", - "id": "7bXgB6jMjp9ATFy66eO08Z", - "name": "Chris Brown", - "type": "artist", - "uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5I7l0lSOyusetwCv1aQPMf" - }, - "href": "https://api.spotify.com/v1/artists/5I7l0lSOyusetwCv1aQPMf", - "id": "5I7l0lSOyusetwCv1aQPMf", - "name": "Jump Smokers", - "type": "artist", - "uri": "spotify:artist:5I7l0lSOyusetwCv1aQPMf" - } - ], - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 309626, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4TWgcICXXfGty8MHGWJ4Ne" - }, - "href": "https://api.spotify.com/v1/tracks/4TWgcICXXfGty8MHGWJ4Ne", - "id": "4TWgcICXXfGty8MHGWJ4Ne", - "name": "International Love (feat. Chris Brown) - Jump Smokers Extended Mix", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:4TWgcICXXfGty8MHGWJ4Ne", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/5I7l0lSOyusetwCv1aQPMf" + }, + "href": "https://api.spotify.com/v1/artists/5I7l0lSOyusetwCv1aQPMf", + "id": "5I7l0lSOyusetwCv1aQPMf", + "name": "Jump Smokers", + "type": "artist", + "uri": "spotify:artist:5I7l0lSOyusetwCv1aQPMf" } - ], - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 18 + ], + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 309626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4TWgcICXXfGty8MHGWJ4Ne" + }, + "href": "https://api.spotify.com/v1/tracks/4TWgcICXXfGty8MHGWJ4Ne", + "id": "4TWgcICXXfGty8MHGWJ4Ne", + "name": "International Love (feat. Chris Brown) - Jump Smokers Extended Mix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:4TWgcICXXfGty8MHGWJ4Ne", + "is_local": false + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 18 } diff --git a/tests/fixtures/artist.json b/tests/fixtures/artist.json index 65d8623..deb2d5b 100644 --- a/tests/fixtures/artist.json +++ b/tests/fixtures/artist.json @@ -1,30 +1,30 @@ { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "followers": { "href": null, "total": 12425030 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8d8ac7290d0fe2d12fb6e4d9", + "height": 640, + "width": 640 }, - "followers": { "href": null, "total": 12425030 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb8d8ac7290d0fe2d12fb6e4d9", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051748d8ac7290d0fe2d12fb6e4d9", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1788d8ac7290d0fe2d12fb6e4d9", - "height": 160, - "width": 160 - } - ], - "name": "Pitbull", - "popularity": 85, - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + { + "url": "https://i.scdn.co/image/ab676161000051748d8ac7290d0fe2d12fb6e4d9", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788d8ac7290d0fe2d12fb6e4d9", + "height": 160, + "width": 160 + } + ], + "name": "Pitbull", + "popularity": 85, + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" } diff --git a/tests/fixtures/artist_albums.json b/tests/fixtures/artist_albums.json index 61dfdef..1bfcef4 100644 --- a/tests/fixtures/artist_albums.json +++ b/tests/fixtures/artist_albums.json @@ -1,11279 +1,11279 @@ { - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=0&limit=48&include_groups=album,single,compilation,appears_on", - "limit": 48, - "next": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=48&limit=48&include_groups=album,single,compilation,appears_on", - "offset": 0, - "previous": null, - "total": 918, - "items": [ - { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1nPRTKmS3Bn0f2ih11i2aH" - }, - "href": "https://api.spotify.com/v1/albums/1nPRTKmS3Bn0f2ih11i2aH", - "id": "1nPRTKmS3Bn0f2ih11i2aH", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273fa853d9769c89d08a74983bb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02fa853d9769c89d08a74983bb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851fa853d9769c89d08a74983bb", - "height": 64, - "width": 64 - } - ], - "name": "UNDERDOGS", - "release_date": "2025-08-29", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1nPRTKmS3Bn0f2ih11i2aH", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 7, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/56jg3KJcYmfL7RzYmG2O1Q" - }, - "href": "https://api.spotify.com/v1/albums/56jg3KJcYmfL7RzYmG2O1Q", - "id": "56jg3KJcYmfL7RzYmG2O1Q", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520", - "height": 64, - "width": 64 - } - ], - "name": "Trackhouse (Daytona 500 Edition)", - "release_date": "2024-02-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:56jg3KJcYmfL7RzYmG2O1Q", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1l86t4bTNT2j1X0ZBCIv6R" - }, - "href": "https://api.spotify.com/v1/albums/1l86t4bTNT2j1X0ZBCIv6R", - "id": "1l86t4bTNT2j1X0ZBCIv6R", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d", - "height": 64, - "width": 64 - } - ], - "name": "Trackhouse", - "release_date": "2023-10-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1l86t4bTNT2j1X0ZBCIv6R", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 15, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6nCJAxRvXmPkPiZo8Vh5ZG" - }, - "href": "https://api.spotify.com/v1/albums/6nCJAxRvXmPkPiZo8Vh5ZG", - "id": "6nCJAxRvXmPkPiZo8Vh5ZG", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d", - "height": 64, - "width": 64 - } - ], - "name": "Libertad 548", - "release_date": "2019-09-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 19, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ZSNnOY2ESMNoVQ5DdvHrj" - }, - "href": "https://api.spotify.com/v1/albums/6ZSNnOY2ESMNoVQ5DdvHrj", - "id": "6ZSNnOY2ESMNoVQ5DdvHrj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874", - "height": 64, - "width": 64 - } - ], - "name": "Gotti (Original Motion Picture Soundtrack)", - "release_date": "2018-06-14", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6RFjbxELOWFXv54t6ccuRZ" - }, - "href": "https://api.spotify.com/v1/artists/6RFjbxELOWFXv54t6ccuRZ", - "id": "6RFjbxELOWFXv54t6ccuRZ", - "name": "Jorge Gomez", - "type": "artist", - "uri": "spotify:artist:6RFjbxELOWFXv54t6ccuRZ" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4jtKPpBQ5eneMwEI94f5Y0" - }, - "href": "https://api.spotify.com/v1/albums/4jtKPpBQ5eneMwEI94f5Y0", - "id": "4jtKPpBQ5eneMwEI94f5Y0", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273dfa89274cbe23c1fe1b589d5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02dfa89274cbe23c1fe1b589d5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851dfa89274cbe23c1fe1b589d5", - "height": 64, - "width": 64 - } - ], - "name": "Climate Change", - "release_date": "2017-03-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4jtKPpBQ5eneMwEI94f5Y0", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AD", - "AL", - "AM", - "BA", - "BE", - "BG", - "BY", - "CW", - "CY", - "CZ", - "DK", - "EE", - "ES", - "FI", - "FR", - "GB", - "GE", - "GR", - "HR", - "HU", - "IE", - "IL", - "IS", - "IT", - "KG", - "KZ", - "LI", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MK", - "MT", - "NL", - "NO", - "PL", - "PT", - "RO", - "RS", - "SE", - "SI", - "SK", - "SM", - "TJ", - "TR", - "UA", - "UZ", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0tKKoGCz9CaZ3x1hDD6Ss2" - }, - "href": "https://api.spotify.com/v1/albums/0tKKoGCz9CaZ3x1hDD6Ss2", - "id": "0tKKoGCz9CaZ3x1hDD6Ss2", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf", - "height": 64, - "width": 64 - } - ], - "name": "Dale", - "release_date": "2015-06-30", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" - }, - "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", - "id": "4EUf4YyNjuXypWY6W5wEDm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273e6efeff81a318670a292090f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02e6efeff81a318670a292090f", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851e6efeff81a318670a292090f", - "height": 64, - "width": 64 - } - ], - "name": "Globalization", - "release_date": "2014-11-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AT", - "BE", - "BG", - "CY", - "CZ", - "DE", - "EE", - "FI", - "FR", - "GR", - "HU", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NO", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AM", - "BW", - "BF", - "CV", - "CW", - "GM", - "GE", - "GW", - "LS", - "LR", - "MW", - "ML", - "NA", - "NE", - "SM", - "ST", - "SN", - "SC", - "SL", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MR", - "MN", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy" - }, - "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy", - "id": "4aawyAB9vmqN3uQ7FjRGTy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4", - "height": 64, - "width": 64 - } - ], - "name": "Global Warming", - "release_date": "2012-11-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 17, - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "LS", - "LR", - "MW", - "MV", - "ML", - "FM", - "NA", - "NE", - "PR", - "SM", - "ST", - "SN", - "SC", - "SL", - "KN", - "LC", - "VC", - "SR", - "TL", - "TT", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" - }, - "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", - "id": "2F7tejLHzTqFq2XLol9ZGy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732ffc2c580b6595a3e675a730", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022ffc2c580b6595a3e675a730", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512ffc2c580b6595a3e675a730", - "height": 64, - "width": 64 - } - ], - "name": "Global Warming: Meltdown (Deluxe Version)", - "release_date": "2012", - "release_date_precision": "year", - "type": "album", - "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 16, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" - }, - "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", - "id": "4rG0MhkU6UojACJxkMHIXB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", - "height": 64, - "width": 64 - } - ], - "name": "Planet Pit (Deluxe Version)", - "release_date": "2011-06-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CA", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1q23hvi1qvoADt2fh7FO7P" - }, - "href": "https://api.spotify.com/v1/albums/1q23hvi1qvoADt2fh7FO7P", - "id": "1q23hvi1qvoADt2fh7FO7P", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2733eb0fc423b496236f33cb033", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e023eb0fc423b496236f33cb033", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048513eb0fc423b496236f33cb033", - "height": 64, - "width": 64 - } - ], - "name": "Armando (Deluxe)", - "release_date": "2010-11-02", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1q23hvi1qvoADt2fh7FO7P", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 14, - "available_markets": [ - "AU", - "AT", - "BE", - "BG", - "CA", - "CY", - "CZ", - "DK", - "DE", - "EE", - "FI", - "FR", - "GR", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "NL", - "NZ", - "NO", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0kv3Rm7PODqJBQaVJiezuB" - }, - "href": "https://api.spotify.com/v1/albums/0kv3Rm7PODqJBQaVJiezuB", - "id": "0kv3Rm7PODqJBQaVJiezuB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731091bce0b9d981cac5e4091c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021091bce0b9d981cac5e4091c", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511091bce0b9d981cac5e4091c", - "height": 64, - "width": 64 - } - ], - "name": "I Am Armando - Armando Reloaded", - "release_date": "2010", - "release_date_precision": "year", - "type": "album", - "uri": "spotify:album:0kv3Rm7PODqJBQaVJiezuB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 15, - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5xLAcbvbSAlRtPXnKkggXA" - }, - "href": "https://api.spotify.com/v1/albums/5xLAcbvbSAlRtPXnKkggXA", - "id": "5xLAcbvbSAlRtPXnKkggXA", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0226d73ab8423a350faa5d395a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485126d73ab8423a350faa5d395a", - "height": 64, - "width": 64 - } - ], - "name": "Pitbull Starring In Rebelution", - "release_date": "2009-10-23", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5xLAcbvbSAlRtPXnKkggXA", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6ODOJvYpaQ3p0O6Agrlt4B" - }, - "href": "https://api.spotify.com/v1/albums/6ODOJvYpaQ3p0O6Agrlt4B", - "id": "6ODOJvYpaQ3p0O6Agrlt4B", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273e5de6d02e83f63e381f0932b", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02e5de6d02e83f63e381f0932b", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851e5de6d02e83f63e381f0932b", - "height": 64, - "width": 64 - } - ], - "name": "The Boatlift - Clean", - "release_date": "2007-11-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6ODOJvYpaQ3p0O6Agrlt4B", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 18, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7m9AYxqeFPagkaqlg6WE0J" - }, - "href": "https://api.spotify.com/v1/albums/7m9AYxqeFPagkaqlg6WE0J", - "id": "7m9AYxqeFPagkaqlg6WE0J", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734b6e3bb6e298b4477bf2f6f0", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024b6e3bb6e298b4477bf2f6f0", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514b6e3bb6e298b4477bf2f6f0", - "height": 64, - "width": 64 - } - ], - "name": "The Boatlift", - "release_date": "2007-11-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7m9AYxqeFPagkaqlg6WE0J", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 21, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/69bXbGpsjbLtygqiiaXIqf" - }, - "href": "https://api.spotify.com/v1/albums/69bXbGpsjbLtygqiiaXIqf", - "id": "69bXbGpsjbLtygqiiaXIqf", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27363f27725465f14449c8258cb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0263f27725465f14449c8258cb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485163f27725465f14449c8258cb", - "height": 64, - "width": 64 - } - ], - "name": "El Mariel - Clean", - "release_date": "2006-10-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:69bXbGpsjbLtygqiiaXIqf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 21, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7rOcmdW8dWxlScy6AUgjI8" - }, - "href": "https://api.spotify.com/v1/albums/7rOcmdW8dWxlScy6AUgjI8", - "id": "7rOcmdW8dWxlScy6AUgjI8", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731b05e8f15f93dd1247e90c49", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021b05e8f15f93dd1247e90c49", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511b05e8f15f93dd1247e90c49", - "height": 64, - "width": 64 - } - ], - "name": "El Mariel", - "release_date": "2006-10-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7rOcmdW8dWxlScy6AUgjI8", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 13, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4y8v2mnHITUR0Vi2HSAh4F" - }, - "href": "https://api.spotify.com/v1/albums/4y8v2mnHITUR0Vi2HSAh4F", - "id": "4y8v2mnHITUR0Vi2HSAh4F", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a8045f86097518b70cb499ee", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a8045f86097518b70cb499ee", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a8045f86097518b70cb499ee", - "height": 64, - "width": 64 - } - ], - "name": "Money Is Still A Major Issue", - "release_date": "2005-11-15", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4y8v2mnHITUR0Vi2HSAh4F", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "album", - "total_tracks": 16, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/76N6imyjQ9h5p2NzakHT32" - }, - "href": "https://api.spotify.com/v1/albums/76N6imyjQ9h5p2NzakHT32", - "id": "76N6imyjQ9h5p2NzakHT32", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27300650b5e6be3af579ae18e7c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0200650b5e6be3af579ae18e7c", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485100650b5e6be3af579ae18e7c", - "height": 64, - "width": 64 - } - ], - "name": "M.I.A.M.I.", - "release_date": "2004-08-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:76N6imyjQ9h5p2NzakHT32", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "album" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1ielCGOyyidzpbnxKctCLk" - }, - "href": "https://api.spotify.com/v1/albums/1ielCGOyyidzpbnxKctCLk", - "id": "1ielCGOyyidzpbnxKctCLk", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27306cb49bdddf422972424980d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0206cb49bdddf422972424980d", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485106cb49bdddf422972424980d", - "height": 64, - "width": 64 - } - ], - "name": "Pa' Los Envidiosos", - "release_date": "2026-02-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1ielCGOyyidzpbnxKctCLk", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4zWFlKgU4j7ryWg5nsOmU6" - }, - "href": "https://api.spotify.com/v1/artists/4zWFlKgU4j7ryWg5nsOmU6", - "id": "4zWFlKgU4j7ryWg5nsOmU6", - "name": "Lenier", - "type": "artist", - "uri": "spotify:artist:4zWFlKgU4j7ryWg5nsOmU6" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1Q53Pq6VrC38FLf8yIHaE9" - }, - "href": "https://api.spotify.com/v1/albums/1Q53Pq6VrC38FLf8yIHaE9", - "id": "1Q53Pq6VrC38FLf8yIHaE9", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27363df79b70d17204b59c7a09e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0263df79b70d17204b59c7a09e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485163df79b70d17204b59c7a09e", - "height": 64, - "width": 64 - } - ], - "name": "R\u00c1PIDOS Y FURIOSOS 11", - "release_date": "2026-01-14", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1Q53Pq6VrC38FLf8yIHaE9", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" - }, - "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", - "id": "1yX62RHdYysNcIrO33WQxJ", - "name": "Dani Flow", - "type": "artist", - "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6lpZfEeWcLG0DDfgd22km8" - }, - "href": "https://api.spotify.com/v1/albums/6lpZfEeWcLG0DDfgd22km8", - "id": "6lpZfEeWcLG0DDfgd22km8", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273aa9ba9e7b528084ada3308b1", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02aa9ba9e7b528084ada3308b1", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851aa9ba9e7b528084ada3308b1", - "height": 64, - "width": 64 - } - ], - "name": "Soy As\u00ed 2", - "release_date": "2026-01-09", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6lpZfEeWcLG0DDfgd22km8", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/137W8MRPWKqSmrBGDBFSop" - }, - "href": "https://api.spotify.com/v1/artists/137W8MRPWKqSmrBGDBFSop", - "id": "137W8MRPWKqSmrBGDBFSop", - "name": "Wiz Khalifa", - "type": "artist", - "uri": "spotify:artist:137W8MRPWKqSmrBGDBFSop" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5wguho5YJqF36UgNiY2mA8" - }, - "href": "https://api.spotify.com/v1/albums/5wguho5YJqF36UgNiY2mA8", - "id": "5wguho5YJqF36UgNiY2mA8", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732356f919195375b776f579a1", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022356f919195375b776f579a1", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512356f919195375b776f579a1", - "height": 64, - "width": 64 - } - ], - "name": "Yeehaw", - "release_date": "2025-12-26", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5wguho5YJqF36UgNiY2mA8", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" - }, - "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", - "id": "0FvJm0y2eHw0aPkLLU3sIG", - "name": "FILMORE", - "type": "artist", - "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/44QE4TTUn2HuPc65iOkKhI" - }, - "href": "https://api.spotify.com/v1/albums/44QE4TTUn2HuPc65iOkKhI", - "id": "44QE4TTUn2HuPc65iOkKhI", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273112ffbefca84603d765e1dee", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02112ffbefca84603d765e1dee", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851112ffbefca84603d765e1dee", - "height": 64, - "width": 64 - } - ], - "name": "Yeehaw (Clean)", - "release_date": "2025-12-25", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:44QE4TTUn2HuPc65iOkKhI", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" - }, - "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", - "id": "0FvJm0y2eHw0aPkLLU3sIG", - "name": "FILMORE", - "type": "artist", - "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7EoWixoOdwjAqG7QNAYPqy" - }, - "href": "https://api.spotify.com/v1/albums/7EoWixoOdwjAqG7QNAYPqy", - "id": "7EoWixoOdwjAqG7QNAYPqy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273839e75853260058868d9cff9", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02839e75853260058868d9cff9", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851839e75853260058868d9cff9", - "height": 64, - "width": 64 - } - ], - "name": "Fun Dip", - "release_date": "2025-12-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7EoWixoOdwjAqG7QNAYPqy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0LthCv77K8NqLKr8B6266a" - }, - "href": "https://api.spotify.com/v1/artists/0LthCv77K8NqLKr8B6266a", - "id": "0LthCv77K8NqLKr8B6266a", - "name": "Freak Nasty", - "type": "artist", - "uri": "spotify:artist:0LthCv77K8NqLKr8B6266a" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 5, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/704rVRHvHjgKyIMAuFhn9G" - }, - "href": "https://api.spotify.com/v1/albums/704rVRHvHjgKyIMAuFhn9G", - "id": "704rVRHvHjgKyIMAuFhn9G", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27392aa9a2b1e5c37f1dac1cae5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0292aa9a2b1e5c37f1dac1cae5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485192aa9a2b1e5c37f1dac1cae5", - "height": 64, - "width": 64 - } - ], - "name": "Damn I Love Miami (Remixes)", - "release_date": "2025-10-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:704rVRHvHjgKyIMAuFhn9G", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" - }, - "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", - "id": "7sfl4Xt5KmfyDs2T3SVSMK", - "name": "Lil Jon", - "type": "artist", - "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1iQFOdoDdXSpAJy5vLKA9p" - }, - "href": "https://api.spotify.com/v1/albums/1iQFOdoDdXSpAJy5vLKA9p", - "id": "1iQFOdoDdXSpAJy5vLKA9p", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273872c1a350283cf2a533db263", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02872c1a350283cf2a533db263", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851872c1a350283cf2a533db263", - "height": 64, - "width": 64 - } - ], - "name": "Pretty Woman (All Around The World) (with Gabry Ponte)", - "release_date": "2025-09-26", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1iQFOdoDdXSpAJy5vLKA9p", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/13NpuESz6tlK819yBs0PuS" - }, - "href": "https://api.spotify.com/v1/artists/13NpuESz6tlK819yBs0PuS", - "id": "13NpuESz6tlK819yBs0PuS", - "name": "Azteck", - "type": "artist", - "uri": "spotify:artist:13NpuESz6tlK819yBs0PuS" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ENS85nZShljwNgg4wFD7D" - }, - "href": "https://api.spotify.com/v1/artists/5ENS85nZShljwNgg4wFD7D", - "id": "5ENS85nZShljwNgg4wFD7D", - "name": "Gabry Ponte", - "type": "artist", - "uri": "spotify:artist:5ENS85nZShljwNgg4wFD7D" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2WzCFW3ywduzHLbPNMrzji" - }, - "href": "https://api.spotify.com/v1/albums/2WzCFW3ywduzHLbPNMrzji", - "id": "2WzCFW3ywduzHLbPNMrzji", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d9adce154235c6c5a5f45807", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d9adce154235c6c5a5f45807", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d9adce154235c6c5a5f45807", - "height": 64, - "width": 64 - } - ], - "name": "Damn I Love Miami", - "release_date": "2025-09-12", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2WzCFW3ywduzHLbPNMrzji", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" - }, - "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", - "id": "7sfl4Xt5KmfyDs2T3SVSMK", - "name": "Lil Jon", - "type": "artist", - "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/46FjPDtNFTZ0kn3PVLAcHF" - }, - "href": "https://api.spotify.com/v1/albums/46FjPDtNFTZ0kn3PVLAcHF", - "id": "46FjPDtNFTZ0kn3PVLAcHF", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273523d67dd370be63f64985e96", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02523d67dd370be63f64985e96", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851523d67dd370be63f64985e96", - "height": 64, - "width": 64 - } - ], - "name": "Hangover", - "release_date": "2025-08-28", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:46FjPDtNFTZ0kn3PVLAcHF", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5hdhHgpxyniooUiQVaPxQ0" - }, - "href": "https://api.spotify.com/v1/artists/5hdhHgpxyniooUiQVaPxQ0", - "id": "5hdhHgpxyniooUiQVaPxQ0", - "name": "Nio Garcia", - "type": "artist", - "uri": "spotify:artist:5hdhHgpxyniooUiQVaPxQ0" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5Skfxe8hI3uMoQ5l3Wl0GS" - }, - "href": "https://api.spotify.com/v1/albums/5Skfxe8hI3uMoQ5l3Wl0GS", - "id": "5Skfxe8hI3uMoQ5l3Wl0GS", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2737be5ef3170160852d7de399a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e027be5ef3170160852d7de399a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048517be5ef3170160852d7de399a", - "height": 64, - "width": 64 - } - ], - "name": "Borracho Y Loco", - "release_date": "2025-08-28", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5Skfxe8hI3uMoQ5l3Wl0GS", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0jnsk9HBra6NMjO2oANoPY" - }, - "href": "https://api.spotify.com/v1/artists/0jnsk9HBra6NMjO2oANoPY", - "id": "0jnsk9HBra6NMjO2oANoPY", - "name": "Flo Rida", - "type": "artist", - "uri": "spotify:artist:0jnsk9HBra6NMjO2oANoPY" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3EIHFD7cnGod28Kg61IfEB" - }, - "href": "https://api.spotify.com/v1/albums/3EIHFD7cnGod28Kg61IfEB", - "id": "3EIHFD7cnGod28Kg61IfEB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27305d2f75cc2f039183c14bcdf", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0205d2f75cc2f039183c14bcdf", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485105d2f75cc2f039183c14bcdf", - "height": 64, - "width": 64 - } - ], - "name": "We Will Rock You (2025 FIFA Club World Cup Theme Song) feat. Pitbull x RedOne", - "release_date": "2025-06-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3EIHFD7cnGod28Kg61IfEB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5C01hDqpEmrmDfUhX9YWsH" - }, - "href": "https://api.spotify.com/v1/artists/5C01hDqpEmrmDfUhX9YWsH", - "id": "5C01hDqpEmrmDfUhX9YWsH", - "name": "FIFA Sound", - "type": "artist", - "uri": "spotify:artist:5C01hDqpEmrmDfUhX9YWsH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6O9WquDfQTxGRZqZUXVEQx" - }, - "href": "https://api.spotify.com/v1/artists/6O9WquDfQTxGRZqZUXVEQx", - "id": "6O9WquDfQTxGRZqZUXVEQx", - "name": "RedOne", - "type": "artist", - "uri": "spotify:artist:6O9WquDfQTxGRZqZUXVEQx" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5VaS19t97GVYwJZWi71BDi" - }, - "href": "https://api.spotify.com/v1/albums/5VaS19t97GVYwJZWi71BDi", - "id": "5VaS19t97GVYwJZWi71BDi", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736142c9ff5c9347c67be7cf88", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026142c9ff5c9347c67be7cf88", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516142c9ff5c9347c67be7cf88", - "height": 64, - "width": 64 - } - ], - "name": "Soy As\u00ed", - "release_date": "2025-06-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5VaS19t97GVYwJZWi71BDi", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/00CMSJdbf36zOzKB3z8JrR" - }, - "href": "https://api.spotify.com/v1/artists/00CMSJdbf36zOzKB3z8JrR", - "id": "00CMSJdbf36zOzKB3z8JrR", - "name": "Victor Cardenas", - "type": "artist", - "uri": "spotify:artist:00CMSJdbf36zOzKB3z8JrR" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0INLo9d20pUVNHOX1x2X4Q" - }, - "href": "https://api.spotify.com/v1/albums/0INLo9d20pUVNHOX1x2X4Q", - "id": "0INLo9d20pUVNHOX1x2X4Q", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d76e202fccbb3a19727ec34a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d76e202fccbb3a19727ec34a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d76e202fccbb3a19727ec34a", - "height": 64, - "width": 64 - } - ], - "name": "No Te Hagas", - "release_date": "2025-05-09", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0INLo9d20pUVNHOX1x2X4Q", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" - }, - "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", - "id": "7iJrDbKM5fEkGdm5kpjFzS", - "name": "Sensato", - "type": "artist", - "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 4, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5tjFV3KmhkpTpRTnv1I8Wu" - }, - "href": "https://api.spotify.com/v1/albums/5tjFV3KmhkpTpRTnv1I8Wu", - "id": "5tjFV3KmhkpTpRTnv1I8Wu", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f8dd5532fe1387b2ad40f423", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f8dd5532fe1387b2ad40f423", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f8dd5532fe1387b2ad40f423", - "height": 64, - "width": 64 - } - ], - "name": "Now Or Never", - "release_date": "2025-03-28", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5tjFV3KmhkpTpRTnv1I8Wu", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" - }, - "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", - "id": "58lV9VcRSjABbAbfWS6skp", - "name": "Bon Jovi", - "type": "artist", - "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0f5Fhl4ZgbGtWwtxGofKqa" - }, - "href": "https://api.spotify.com/v1/albums/0f5Fhl4ZgbGtWwtxGofKqa", - "id": "0f5Fhl4ZgbGtWwtxGofKqa", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273deb06c010f4275b0002c7b7e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02deb06c010f4275b0002c7b7e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851deb06c010f4275b0002c7b7e", - "height": 64, - "width": 64 - } - ], - "name": "Now Or Never (TropKillaz Remix)", - "release_date": "2025-03-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0f5Fhl4ZgbGtWwtxGofKqa", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" - }, - "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", - "id": "58lV9VcRSjABbAbfWS6skp", - "name": "Bon Jovi", - "type": "artist", - "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5bzWtCkjIAMgN93gLt56SO" - }, - "href": "https://api.spotify.com/v1/artists/5bzWtCkjIAMgN93gLt56SO", - "id": "5bzWtCkjIAMgN93gLt56SO", - "name": "Tropkillaz", - "type": "artist", - "uri": "spotify:artist:5bzWtCkjIAMgN93gLt56SO" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7wI8TpkCWRTwmnzZNjUDTj" - }, - "href": "https://api.spotify.com/v1/albums/7wI8TpkCWRTwmnzZNjUDTj", - "id": "7wI8TpkCWRTwmnzZNjUDTj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d44c7246f1d59d87462644b0", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d44c7246f1d59d87462644b0", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d44c7246f1d59d87462644b0", - "height": 64, - "width": 64 - } - ], - "name": "Now or Never (Muzik Junkies & AROCK Remix)", - "release_date": "2025-03-26", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7wI8TpkCWRTwmnzZNjUDTj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" - }, - "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", - "id": "58lV9VcRSjABbAbfWS6skp", - "name": "Bon Jovi", - "type": "artist", - "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/34DQTRbIYPLSGU2SkOTEja" - }, - "href": "https://api.spotify.com/v1/artists/34DQTRbIYPLSGU2SkOTEja", - "id": "34DQTRbIYPLSGU2SkOTEja", - "name": "Muzik Junkies", - "type": "artist", - "uri": "spotify:artist:34DQTRbIYPLSGU2SkOTEja" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3fZxc2BwHIv2I72Txd9yGq" - }, - "href": "https://api.spotify.com/v1/albums/3fZxc2BwHIv2I72Txd9yGq", - "id": "3fZxc2BwHIv2I72Txd9yGq", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f5b012d83be9076b7b3c8f5c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f5b012d83be9076b7b3c8f5c", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f5b012d83be9076b7b3c8f5c", - "height": 64, - "width": 64 - } - ], - "name": "Now or Never (F.A.S.T x & DJ Triple XL Remix)", - "release_date": "2025-03-25", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3fZxc2BwHIv2I72Txd9yGq", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" - }, - "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", - "id": "58lV9VcRSjABbAbfWS6skp", - "name": "Bon Jovi", - "type": "artist", - "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4VyCiFrplEiSgKvimCvGy0" - }, - "href": "https://api.spotify.com/v1/artists/4VyCiFrplEiSgKvimCvGy0", - "id": "4VyCiFrplEiSgKvimCvGy0", - "name": "DJ Triple XL", - "type": "artist", - "uri": "spotify:artist:4VyCiFrplEiSgKvimCvGy0" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2K3vXTZjcuWR8H8LgvJ8Yk" - }, - "href": "https://api.spotify.com/v1/albums/2K3vXTZjcuWR8H8LgvJ8Yk", - "id": "2K3vXTZjcuWR8H8LgvJ8Yk", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2737e25dc727b5fda6731ea49d2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e027e25dc727b5fda6731ea49d2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048517e25dc727b5fda6731ea49d2", - "height": 64, - "width": 64 - } - ], - "name": "Tamo Bien", - "release_date": "2025-03-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2K3vXTZjcuWR8H8LgvJ8Yk", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" - }, - "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", - "id": "7qG3b048QCHVRO5Pv1T5lw", - "name": "Enrique Iglesias", - "type": "artist", - "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" - }, - "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", - "id": "0b2GL7Y02vu50qieoQmw1w", - "name": "IAmChino", - "type": "artist", - "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/51dVwp68x0e1GZNOgE7hyK" - }, - "href": "https://api.spotify.com/v1/albums/51dVwp68x0e1GZNOgE7hyK", - "id": "51dVwp68x0e1GZNOgE7hyK", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732a8026edcb4e2e1d87418a73", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022a8026edcb4e2e1d87418a73", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512a8026edcb4e2e1d87418a73", - "height": 64, - "width": 64 - } - ], - "name": "I'll Do It (feat. Pitbull)", - "release_date": "2025-02-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:51dVwp68x0e1GZNOgE7hyK", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5XLBtYR2VrpkqXdlvNnFHG" - }, - "href": "https://api.spotify.com/v1/artists/5XLBtYR2VrpkqXdlvNnFHG", - "id": "5XLBtYR2VrpkqXdlvNnFHG", - "name": "Heidi Montag", - "type": "artist", - "uri": "spotify:artist:5XLBtYR2VrpkqXdlvNnFHG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4ObwiIpULEzwOPrtLSd7xA" - }, - "href": "https://api.spotify.com/v1/albums/4ObwiIpULEzwOPrtLSd7xA", - "id": "4ObwiIpULEzwOPrtLSd7xA", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27328f391d916a9abe7ddc8800e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0228f391d916a9abe7ddc8800e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485128f391d916a9abe7ddc8800e", - "height": 64, - "width": 64 - } - ], - "name": "Now Or Never", - "release_date": "2024-11-14", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4ObwiIpULEzwOPrtLSd7xA", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" - }, - "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", - "id": "58lV9VcRSjABbAbfWS6skp", - "name": "Bon Jovi", - "type": "artist", - "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5s2pXXHew5LPbEU8DgOYHg" - }, - "href": "https://api.spotify.com/v1/albums/5s2pXXHew5LPbEU8DgOYHg", - "id": "5s2pXXHew5LPbEU8DgOYHg", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736b232c8a534909a023259dea", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026b232c8a534909a023259dea", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516b232c8a534909a023259dea", - "height": 64, - "width": 64 - } - ], - "name": "MR. MOONDIAL", - "release_date": "2024-11-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5s2pXXHew5LPbEU8DgOYHg", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52iwsT98xCoGgiGntTiR7K" - }, - "href": "https://api.spotify.com/v1/artists/52iwsT98xCoGgiGntTiR7K", - "id": "52iwsT98xCoGgiGntTiR7K", - "name": "Quevedo", - "type": "artist", - "uri": "spotify:artist:52iwsT98xCoGgiGntTiR7K" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7A0AEPu9sqHZpSIDI1zLEM" - }, - "href": "https://api.spotify.com/v1/albums/7A0AEPu9sqHZpSIDI1zLEM", - "id": "7A0AEPu9sqHZpSIDI1zLEM", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273b64f4ac4a25a5ce77ba13b04", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02b64f4ac4a25a5ce77ba13b04", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851b64f4ac4a25a5ce77ba13b04", - "height": 64, - "width": 64 - } - ], - "name": "Bhool Bhulaiyaa 3 - Title Track (feat. Pitbull)", - "release_date": "2024-10-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7A0AEPu9sqHZpSIDI1zLEM", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2FKWNmZWDBZR4dE5KX4plR" - }, - "href": "https://api.spotify.com/v1/artists/2FKWNmZWDBZR4dE5KX4plR", - "id": "2FKWNmZWDBZR4dE5KX4plR", - "name": "Diljit Dosanjh", - "type": "artist", - "uri": "spotify:artist:2FKWNmZWDBZR4dE5KX4plR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4f7KfxeHq9BiylGmyXepGt" - }, - "href": "https://api.spotify.com/v1/artists/4f7KfxeHq9BiylGmyXepGt", - "id": "4f7KfxeHq9BiylGmyXepGt", - "name": "Tanishk Bagchi", - "type": "artist", - "uri": "spotify:artist:4f7KfxeHq9BiylGmyXepGt" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2LLRQs8JFjFm9RkkT9Hmqf" - }, - "href": "https://api.spotify.com/v1/albums/2LLRQs8JFjFm9RkkT9Hmqf", - "id": "2LLRQs8JFjFm9RkkT9Hmqf", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2730d2057719283f5bc9af31a31", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e020d2057719283f5bc9af31a31", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048510d2057719283f5bc9af31a31", - "height": 64, - "width": 64 - } - ], - "name": "OMG (Remix)", - "release_date": "2024-10-11", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2LLRQs8JFjFm9RkkT9Hmqf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4WzBqbc7fxl2y8XrznMSqf" - }, - "href": "https://api.spotify.com/v1/artists/4WzBqbc7fxl2y8XrznMSqf", - "id": "4WzBqbc7fxl2y8XrznMSqf", - "name": "Candelita", - "type": "artist", - "uri": "spotify:artist:4WzBqbc7fxl2y8XrznMSqf" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3OcvS8PzSGYMBvLdzY6g3e" - }, - "href": "https://api.spotify.com/v1/artists/3OcvS8PzSGYMBvLdzY6g3e", - "id": "3OcvS8PzSGYMBvLdzY6g3e", - "name": "Silvestre Dangond", - "type": "artist", - "uri": "spotify:artist:3OcvS8PzSGYMBvLdzY6g3e" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 5, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3ZzkxHr39xEJvbl7UWKcPZ" - }, - "href": "https://api.spotify.com/v1/albums/3ZzkxHr39xEJvbl7UWKcPZ", - "id": "3ZzkxHr39xEJvbl7UWKcPZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a", - "height": 64, - "width": 64 - } - ], - "name": "2 The Moon (The Remixes)", - "release_date": "2024-09-20", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3ZzkxHr39xEJvbl7UWKcPZ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" - }, - "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", - "id": "21E3waRsmPlU7jZsS13rcj", - "name": "Ne-Yo", - "type": "artist", - "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 3, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0kwED9Hwu9K0d9NLBBsAWd" - }, - "href": "https://api.spotify.com/v1/albums/0kwED9Hwu9K0d9NLBBsAWd", - "id": "0kwED9Hwu9K0d9NLBBsAWd", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273c97e191da13e43091c283880", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02c97e191da13e43091c283880", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851c97e191da13e43091c283880", - "height": 64, - "width": 64 - } - ], - "name": "2 The Moon (The Remixes)", - "release_date": "2024-09-20", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0kwED9Hwu9K0d9NLBBsAWd", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" - }, - "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", - "id": "21E3waRsmPlU7jZsS13rcj", - "name": "Ne-Yo", - "type": "artist", - "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" - }, - "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", - "id": "4D75GcNG95ebPtNvoNVXhz", - "name": "AFROJACK", - "type": "artist", - "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 2, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0EIZb3DTMZlZt2FLndqpSY" - }, - "href": "https://api.spotify.com/v1/albums/0EIZb3DTMZlZt2FLndqpSY", - "id": "0EIZb3DTMZlZt2FLndqpSY", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734d0780b70648eace7cbba259", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024d0780b70648eace7cbba259", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514d0780b70648eace7cbba259", - "height": 64, - "width": 64 - } - ], - "name": "Tonight (D.I.Y.A) [Pitbull Remix]", - "release_date": "2024-08-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0EIZb3DTMZlZt2FLndqpSY", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4Q6nIcaBED8qUel8bBx6Cr" - }, - "href": "https://api.spotify.com/v1/artists/4Q6nIcaBED8qUel8bBx6Cr", - "id": "4Q6nIcaBED8qUel8bBx6Cr", - "name": "Jax Jones", - "type": "artist", - "uri": "spotify:artist:4Q6nIcaBED8qUel8bBx6Cr" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/07YZf4WDAMNwqr4jfgOZ8y" - }, - "href": "https://api.spotify.com/v1/artists/07YZf4WDAMNwqr4jfgOZ8y", - "id": "07YZf4WDAMNwqr4jfgOZ8y", - "name": "Jason Derulo", - "type": "artist", - "uri": "spotify:artist:07YZf4WDAMNwqr4jfgOZ8y" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - } - ], - "album_group": "single" - }, - { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0Iauzjo1cjGE9cx4odkKHb" - }, - "href": "https://api.spotify.com/v1/albums/0Iauzjo1cjGE9cx4odkKHb", - "id": "0Iauzjo1cjGE9cx4odkKHb", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273786fd1d7ac19c1aa5591522f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02786fd1d7ac19c1aa5591522f", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851786fd1d7ac19c1aa5591522f", - "height": 64, - "width": 64 - } - ], - "name": "Chi Chi Bon Bon (Remix)", - "release_date": "2024-08-02", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0Iauzjo1cjGE9cx4odkKHb", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/37G8DfNgO4mQ3PKh5droSo" - }, - "href": "https://api.spotify.com/v1/artists/37G8DfNgO4mQ3PKh5droSo", - "id": "37G8DfNgO4mQ3PKh5droSo", - "name": "Osmani Garcia \"La Voz\"", - "type": "artist", - "uri": "spotify:artist:37G8DfNgO4mQ3PKh5droSo" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" - }, - "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", - "id": "0TnOYISbd1XYRBk9myaseg", - "name": "Pitbull", - "type": "artist", - "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" - }, - "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", - "id": "1yX62RHdYysNcIrO33WQxJ", - "name": "Dani Flow", - "type": "artist", - "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" - } - ], - "album_group": "single" + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=0&limit=48&include_groups=album,single,compilation,appears_on", + "limit": 48, + "next": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg/albums?offset=48&limit=48&include_groups=album,single,compilation,appears_on", + "offset": 0, + "previous": null, + "total": 918, + "items": [ + { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1nPRTKmS3Bn0f2ih11i2aH" + }, + "href": "https://api.spotify.com/v1/albums/1nPRTKmS3Bn0f2ih11i2aH", + "id": "1nPRTKmS3Bn0f2ih11i2aH", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273fa853d9769c89d08a74983bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02fa853d9769c89d08a74983bb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851fa853d9769c89d08a74983bb", + "height": 64, + "width": 64 + } + ], + "name": "UNDERDOGS", + "release_date": "2025-08-29", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1nPRTKmS3Bn0f2ih11i2aH", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 7, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/56jg3KJcYmfL7RzYmG2O1Q" + }, + "href": "https://api.spotify.com/v1/albums/56jg3KJcYmfL7RzYmG2O1Q", + "id": "56jg3KJcYmfL7RzYmG2O1Q", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a0bac1996f26274685db1520", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a0bac1996f26274685db1520", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a0bac1996f26274685db1520", + "height": 64, + "width": 64 + } + ], + "name": "Trackhouse (Daytona 500 Edition)", + "release_date": "2024-02-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:56jg3KJcYmfL7RzYmG2O1Q", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1l86t4bTNT2j1X0ZBCIv6R" + }, + "href": "https://api.spotify.com/v1/albums/1l86t4bTNT2j1X0ZBCIv6R", + "id": "1l86t4bTNT2j1X0ZBCIv6R", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27333a4ba8f73271a749c5d953d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0233a4ba8f73271a749c5d953d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485133a4ba8f73271a749c5d953d", + "height": 64, + "width": 64 + } + ], + "name": "Trackhouse", + "release_date": "2023-10-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1l86t4bTNT2j1X0ZBCIv6R", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 15, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6nCJAxRvXmPkPiZo8Vh5ZG" + }, + "href": "https://api.spotify.com/v1/albums/6nCJAxRvXmPkPiZo8Vh5ZG", + "id": "6nCJAxRvXmPkPiZo8Vh5ZG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f0dd8e557b66318ea8e6978d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f0dd8e557b66318ea8e6978d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f0dd8e557b66318ea8e6978d", + "height": 64, + "width": 64 + } + ], + "name": "Libertad 548", + "release_date": "2019-09-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6nCJAxRvXmPkPiZo8Vh5ZG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 19, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6ZSNnOY2ESMNoVQ5DdvHrj" + }, + "href": "https://api.spotify.com/v1/albums/6ZSNnOY2ESMNoVQ5DdvHrj", + "id": "6ZSNnOY2ESMNoVQ5DdvHrj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273bfb673e097b39939d6f91874", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02bfb673e097b39939d6f91874", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851bfb673e097b39939d6f91874", + "height": 64, + "width": 64 + } + ], + "name": "Gotti (Original Motion Picture Soundtrack)", + "release_date": "2018-06-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6ZSNnOY2ESMNoVQ5DdvHrj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RFjbxELOWFXv54t6ccuRZ" + }, + "href": "https://api.spotify.com/v1/artists/6RFjbxELOWFXv54t6ccuRZ", + "id": "6RFjbxELOWFXv54t6ccuRZ", + "name": "Jorge Gomez", + "type": "artist", + "uri": "spotify:artist:6RFjbxELOWFXv54t6ccuRZ" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4jtKPpBQ5eneMwEI94f5Y0" + }, + "href": "https://api.spotify.com/v1/albums/4jtKPpBQ5eneMwEI94f5Y0", + "id": "4jtKPpBQ5eneMwEI94f5Y0", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dfa89274cbe23c1fe1b589d5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dfa89274cbe23c1fe1b589d5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dfa89274cbe23c1fe1b589d5", + "height": 64, + "width": 64 + } + ], + "name": "Climate Change", + "release_date": "2017-03-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4jtKPpBQ5eneMwEI94f5Y0", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AD", + "AL", + "AM", + "BA", + "BE", + "BG", + "BY", + "CW", + "CY", + "CZ", + "DK", + "EE", + "ES", + "FI", + "FR", + "GB", + "GE", + "GR", + "HR", + "HU", + "IE", + "IL", + "IS", + "IT", + "KG", + "KZ", + "LI", + "LT", + "LU", + "LV", + "MC", + "MD", + "ME", + "MK", + "MT", + "NL", + "NO", + "PL", + "PT", + "RO", + "RS", + "SE", + "SI", + "SK", + "SM", + "TJ", + "TR", + "UA", + "UZ", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0tKKoGCz9CaZ3x1hDD6Ss2" + }, + "href": "https://api.spotify.com/v1/albums/0tKKoGCz9CaZ3x1hDD6Ss2", + "id": "0tKKoGCz9CaZ3x1hDD6Ss2", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27361fd3efe3692e389a9dd09bf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0261fd3efe3692e389a9dd09bf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485161fd3efe3692e389a9dd09bf", + "height": 64, + "width": 64 + } + ], + "name": "Dale", + "release_date": "2015-06-30", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0tKKoGCz9CaZ3x1hDD6Ss2", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4EUf4YyNjuXypWY6W5wEDm" + }, + "href": "https://api.spotify.com/v1/albums/4EUf4YyNjuXypWY6W5wEDm", + "id": "4EUf4YyNjuXypWY6W5wEDm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e6efeff81a318670a292090f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e6efeff81a318670a292090f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e6efeff81a318670a292090f", + "height": 64, + "width": 64 + } + ], + "name": "Globalization", + "release_date": "2014-11-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4EUf4YyNjuXypWY6W5wEDm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AT", + "BE", + "BG", + "CY", + "CZ", + "DE", + "EE", + "FI", + "FR", + "GR", + "HU", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NO", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AM", + "BW", + "BF", + "CV", + "CW", + "GM", + "GE", + "GW", + "LS", + "LR", + "MW", + "ML", + "NA", + "NE", + "SM", + "ST", + "SN", + "SC", + "SL", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MR", + "MN", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy" + }, + "href": "https://api.spotify.com/v1/albums/4aawyAB9vmqN3uQ7FjRGTy", + "id": "4aawyAB9vmqN3uQ7FjRGTy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732c5b24ecfa39523a75c993c4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022c5b24ecfa39523a75c993c4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512c5b24ecfa39523a75c993c4", + "height": 64, + "width": 64 + } + ], + "name": "Global Warming", + "release_date": "2012-11-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 17, + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "LS", + "LR", + "MW", + "MV", + "ML", + "FM", + "NA", + "NE", + "PR", + "SM", + "ST", + "SN", + "SC", + "SL", + "KN", + "LC", + "VC", + "SR", + "TL", + "TT", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2F7tejLHzTqFq2XLol9ZGy" + }, + "href": "https://api.spotify.com/v1/albums/2F7tejLHzTqFq2XLol9ZGy", + "id": "2F7tejLHzTqFq2XLol9ZGy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732ffc2c580b6595a3e675a730", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022ffc2c580b6595a3e675a730", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512ffc2c580b6595a3e675a730", + "height": 64, + "width": 64 + } + ], + "name": "Global Warming: Meltdown (Deluxe Version)", + "release_date": "2012", + "release_date_precision": "year", + "type": "album", + "uri": "spotify:album:2F7tejLHzTqFq2XLol9ZGy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 16, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4rG0MhkU6UojACJxkMHIXB" + }, + "href": "https://api.spotify.com/v1/albums/4rG0MhkU6UojACJxkMHIXB", + "id": "4rG0MhkU6UojACJxkMHIXB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731dc7483a9fcfce54822a2f19", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021dc7483a9fcfce54822a2f19", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511dc7483a9fcfce54822a2f19", + "height": 64, + "width": 64 + } + ], + "name": "Planet Pit (Deluxe Version)", + "release_date": "2011-06-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4rG0MhkU6UojACJxkMHIXB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AU", + "AT", + "BE", + "BG", + "CA", + "CY", + "CZ", + "DK", + "DE", + "EE", + "FI", + "FR", + "GR", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "NL", + "NZ", + "NO", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1q23hvi1qvoADt2fh7FO7P" + }, + "href": "https://api.spotify.com/v1/albums/1q23hvi1qvoADt2fh7FO7P", + "id": "1q23hvi1qvoADt2fh7FO7P", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2733eb0fc423b496236f33cb033", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e023eb0fc423b496236f33cb033", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048513eb0fc423b496236f33cb033", + "height": 64, + "width": 64 + } + ], + "name": "Armando (Deluxe)", + "release_date": "2010-11-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1q23hvi1qvoADt2fh7FO7P", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 14, + "available_markets": [ + "AU", + "AT", + "BE", + "BG", + "CA", + "CY", + "CZ", + "DK", + "DE", + "EE", + "FI", + "FR", + "GR", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "NL", + "NZ", + "NO", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0kv3Rm7PODqJBQaVJiezuB" + }, + "href": "https://api.spotify.com/v1/albums/0kv3Rm7PODqJBQaVJiezuB", + "id": "0kv3Rm7PODqJBQaVJiezuB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731091bce0b9d981cac5e4091c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021091bce0b9d981cac5e4091c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511091bce0b9d981cac5e4091c", + "height": 64, + "width": 64 + } + ], + "name": "I Am Armando - Armando Reloaded", + "release_date": "2010", + "release_date_precision": "year", + "type": "album", + "uri": "spotify:album:0kv3Rm7PODqJBQaVJiezuB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 15, + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5xLAcbvbSAlRtPXnKkggXA" + }, + "href": "https://api.spotify.com/v1/albums/5xLAcbvbSAlRtPXnKkggXA", + "id": "5xLAcbvbSAlRtPXnKkggXA", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27326d73ab8423a350faa5d395a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0226d73ab8423a350faa5d395a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485126d73ab8423a350faa5d395a", + "height": 64, + "width": 64 + } + ], + "name": "Pitbull Starring In Rebelution", + "release_date": "2009-10-23", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5xLAcbvbSAlRtPXnKkggXA", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6ODOJvYpaQ3p0O6Agrlt4B" + }, + "href": "https://api.spotify.com/v1/albums/6ODOJvYpaQ3p0O6Agrlt4B", + "id": "6ODOJvYpaQ3p0O6Agrlt4B", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e5de6d02e83f63e381f0932b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e5de6d02e83f63e381f0932b", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e5de6d02e83f63e381f0932b", + "height": 64, + "width": 64 + } + ], + "name": "The Boatlift - Clean", + "release_date": "2007-11-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6ODOJvYpaQ3p0O6Agrlt4B", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 18, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7m9AYxqeFPagkaqlg6WE0J" + }, + "href": "https://api.spotify.com/v1/albums/7m9AYxqeFPagkaqlg6WE0J", + "id": "7m9AYxqeFPagkaqlg6WE0J", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734b6e3bb6e298b4477bf2f6f0", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024b6e3bb6e298b4477bf2f6f0", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514b6e3bb6e298b4477bf2f6f0", + "height": 64, + "width": 64 + } + ], + "name": "The Boatlift", + "release_date": "2007-11-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7m9AYxqeFPagkaqlg6WE0J", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 21, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/69bXbGpsjbLtygqiiaXIqf" + }, + "href": "https://api.spotify.com/v1/albums/69bXbGpsjbLtygqiiaXIqf", + "id": "69bXbGpsjbLtygqiiaXIqf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27363f27725465f14449c8258cb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0263f27725465f14449c8258cb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485163f27725465f14449c8258cb", + "height": 64, + "width": 64 + } + ], + "name": "El Mariel - Clean", + "release_date": "2006-10-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:69bXbGpsjbLtygqiiaXIqf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 21, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7rOcmdW8dWxlScy6AUgjI8" + }, + "href": "https://api.spotify.com/v1/albums/7rOcmdW8dWxlScy6AUgjI8", + "id": "7rOcmdW8dWxlScy6AUgjI8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731b05e8f15f93dd1247e90c49", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021b05e8f15f93dd1247e90c49", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511b05e8f15f93dd1247e90c49", + "height": 64, + "width": 64 + } + ], + "name": "El Mariel", + "release_date": "2006-10-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7rOcmdW8dWxlScy6AUgjI8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 13, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4y8v2mnHITUR0Vi2HSAh4F" + }, + "href": "https://api.spotify.com/v1/albums/4y8v2mnHITUR0Vi2HSAh4F", + "id": "4y8v2mnHITUR0Vi2HSAh4F", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a8045f86097518b70cb499ee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a8045f86097518b70cb499ee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a8045f86097518b70cb499ee", + "height": 64, + "width": 64 + } + ], + "name": "Money Is Still A Major Issue", + "release_date": "2005-11-15", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4y8v2mnHITUR0Vi2HSAh4F", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "album", + "total_tracks": 16, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/76N6imyjQ9h5p2NzakHT32" + }, + "href": "https://api.spotify.com/v1/albums/76N6imyjQ9h5p2NzakHT32", + "id": "76N6imyjQ9h5p2NzakHT32", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27300650b5e6be3af579ae18e7c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0200650b5e6be3af579ae18e7c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485100650b5e6be3af579ae18e7c", + "height": 64, + "width": 64 + } + ], + "name": "M.I.A.M.I.", + "release_date": "2004-08-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:76N6imyjQ9h5p2NzakHT32", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "album" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ielCGOyyidzpbnxKctCLk" + }, + "href": "https://api.spotify.com/v1/albums/1ielCGOyyidzpbnxKctCLk", + "id": "1ielCGOyyidzpbnxKctCLk", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27306cb49bdddf422972424980d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0206cb49bdddf422972424980d", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485106cb49bdddf422972424980d", + "height": 64, + "width": 64 + } + ], + "name": "Pa' Los Envidiosos", + "release_date": "2026-02-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1ielCGOyyidzpbnxKctCLk", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4zWFlKgU4j7ryWg5nsOmU6" + }, + "href": "https://api.spotify.com/v1/artists/4zWFlKgU4j7ryWg5nsOmU6", + "id": "4zWFlKgU4j7ryWg5nsOmU6", + "name": "Lenier", + "type": "artist", + "uri": "spotify:artist:4zWFlKgU4j7ryWg5nsOmU6" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1Q53Pq6VrC38FLf8yIHaE9" + }, + "href": "https://api.spotify.com/v1/albums/1Q53Pq6VrC38FLf8yIHaE9", + "id": "1Q53Pq6VrC38FLf8yIHaE9", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27363df79b70d17204b59c7a09e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0263df79b70d17204b59c7a09e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485163df79b70d17204b59c7a09e", + "height": 64, + "width": 64 + } + ], + "name": "R\u00c1PIDOS Y FURIOSOS 11", + "release_date": "2026-01-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Q53Pq6VrC38FLf8yIHaE9", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" + }, + "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", + "id": "1yX62RHdYysNcIrO33WQxJ", + "name": "Dani Flow", + "type": "artist", + "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6lpZfEeWcLG0DDfgd22km8" + }, + "href": "https://api.spotify.com/v1/albums/6lpZfEeWcLG0DDfgd22km8", + "id": "6lpZfEeWcLG0DDfgd22km8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273aa9ba9e7b528084ada3308b1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02aa9ba9e7b528084ada3308b1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851aa9ba9e7b528084ada3308b1", + "height": 64, + "width": 64 + } + ], + "name": "Soy As\u00ed 2", + "release_date": "2026-01-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6lpZfEeWcLG0DDfgd22km8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/137W8MRPWKqSmrBGDBFSop" + }, + "href": "https://api.spotify.com/v1/artists/137W8MRPWKqSmrBGDBFSop", + "id": "137W8MRPWKqSmrBGDBFSop", + "name": "Wiz Khalifa", + "type": "artist", + "uri": "spotify:artist:137W8MRPWKqSmrBGDBFSop" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5wguho5YJqF36UgNiY2mA8" + }, + "href": "https://api.spotify.com/v1/albums/5wguho5YJqF36UgNiY2mA8", + "id": "5wguho5YJqF36UgNiY2mA8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732356f919195375b776f579a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022356f919195375b776f579a1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512356f919195375b776f579a1", + "height": 64, + "width": 64 + } + ], + "name": "Yeehaw", + "release_date": "2025-12-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5wguho5YJqF36UgNiY2mA8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" + }, + "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", + "id": "0FvJm0y2eHw0aPkLLU3sIG", + "name": "FILMORE", + "type": "artist", + "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/44QE4TTUn2HuPc65iOkKhI" + }, + "href": "https://api.spotify.com/v1/albums/44QE4TTUn2HuPc65iOkKhI", + "id": "44QE4TTUn2HuPc65iOkKhI", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273112ffbefca84603d765e1dee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02112ffbefca84603d765e1dee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851112ffbefca84603d765e1dee", + "height": 64, + "width": 64 + } + ], + "name": "Yeehaw (Clean)", + "release_date": "2025-12-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:44QE4TTUn2HuPc65iOkKhI", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FvJm0y2eHw0aPkLLU3sIG" + }, + "href": "https://api.spotify.com/v1/artists/0FvJm0y2eHw0aPkLLU3sIG", + "id": "0FvJm0y2eHw0aPkLLU3sIG", + "name": "FILMORE", + "type": "artist", + "uri": "spotify:artist:0FvJm0y2eHw0aPkLLU3sIG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7EoWixoOdwjAqG7QNAYPqy" + }, + "href": "https://api.spotify.com/v1/albums/7EoWixoOdwjAqG7QNAYPqy", + "id": "7EoWixoOdwjAqG7QNAYPqy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273839e75853260058868d9cff9", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02839e75853260058868d9cff9", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851839e75853260058868d9cff9", + "height": 64, + "width": 64 + } + ], + "name": "Fun Dip", + "release_date": "2025-12-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7EoWixoOdwjAqG7QNAYPqy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0LthCv77K8NqLKr8B6266a" + }, + "href": "https://api.spotify.com/v1/artists/0LthCv77K8NqLKr8B6266a", + "id": "0LthCv77K8NqLKr8B6266a", + "name": "Freak Nasty", + "type": "artist", + "uri": "spotify:artist:0LthCv77K8NqLKr8B6266a" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 5, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/704rVRHvHjgKyIMAuFhn9G" + }, + "href": "https://api.spotify.com/v1/albums/704rVRHvHjgKyIMAuFhn9G", + "id": "704rVRHvHjgKyIMAuFhn9G", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27392aa9a2b1e5c37f1dac1cae5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0292aa9a2b1e5c37f1dac1cae5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485192aa9a2b1e5c37f1dac1cae5", + "height": 64, + "width": 64 + } + ], + "name": "Damn I Love Miami (Remixes)", + "release_date": "2025-10-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:704rVRHvHjgKyIMAuFhn9G", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" + }, + "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", + "id": "7sfl4Xt5KmfyDs2T3SVSMK", + "name": "Lil Jon", + "type": "artist", + "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iQFOdoDdXSpAJy5vLKA9p" + }, + "href": "https://api.spotify.com/v1/albums/1iQFOdoDdXSpAJy5vLKA9p", + "id": "1iQFOdoDdXSpAJy5vLKA9p", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273872c1a350283cf2a533db263", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02872c1a350283cf2a533db263", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851872c1a350283cf2a533db263", + "height": 64, + "width": 64 + } + ], + "name": "Pretty Woman (All Around The World) (with Gabry Ponte)", + "release_date": "2025-09-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1iQFOdoDdXSpAJy5vLKA9p", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/13NpuESz6tlK819yBs0PuS" + }, + "href": "https://api.spotify.com/v1/artists/13NpuESz6tlK819yBs0PuS", + "id": "13NpuESz6tlK819yBs0PuS", + "name": "Azteck", + "type": "artist", + "uri": "spotify:artist:13NpuESz6tlK819yBs0PuS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ENS85nZShljwNgg4wFD7D" + }, + "href": "https://api.spotify.com/v1/artists/5ENS85nZShljwNgg4wFD7D", + "id": "5ENS85nZShljwNgg4wFD7D", + "name": "Gabry Ponte", + "type": "artist", + "uri": "spotify:artist:5ENS85nZShljwNgg4wFD7D" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2WzCFW3ywduzHLbPNMrzji" + }, + "href": "https://api.spotify.com/v1/albums/2WzCFW3ywduzHLbPNMrzji", + "id": "2WzCFW3ywduzHLbPNMrzji", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d9adce154235c6c5a5f45807", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d9adce154235c6c5a5f45807", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d9adce154235c6c5a5f45807", + "height": 64, + "width": 64 + } + ], + "name": "Damn I Love Miami", + "release_date": "2025-09-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2WzCFW3ywduzHLbPNMrzji", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7sfl4Xt5KmfyDs2T3SVSMK" + }, + "href": "https://api.spotify.com/v1/artists/7sfl4Xt5KmfyDs2T3SVSMK", + "id": "7sfl4Xt5KmfyDs2T3SVSMK", + "name": "Lil Jon", + "type": "artist", + "uri": "spotify:artist:7sfl4Xt5KmfyDs2T3SVSMK" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/46FjPDtNFTZ0kn3PVLAcHF" + }, + "href": "https://api.spotify.com/v1/albums/46FjPDtNFTZ0kn3PVLAcHF", + "id": "46FjPDtNFTZ0kn3PVLAcHF", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273523d67dd370be63f64985e96", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02523d67dd370be63f64985e96", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851523d67dd370be63f64985e96", + "height": 64, + "width": 64 + } + ], + "name": "Hangover", + "release_date": "2025-08-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:46FjPDtNFTZ0kn3PVLAcHF", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5hdhHgpxyniooUiQVaPxQ0" + }, + "href": "https://api.spotify.com/v1/artists/5hdhHgpxyniooUiQVaPxQ0", + "id": "5hdhHgpxyniooUiQVaPxQ0", + "name": "Nio Garcia", + "type": "artist", + "uri": "spotify:artist:5hdhHgpxyniooUiQVaPxQ0" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5Skfxe8hI3uMoQ5l3Wl0GS" + }, + "href": "https://api.spotify.com/v1/albums/5Skfxe8hI3uMoQ5l3Wl0GS", + "id": "5Skfxe8hI3uMoQ5l3Wl0GS", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2737be5ef3170160852d7de399a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e027be5ef3170160852d7de399a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048517be5ef3170160852d7de399a", + "height": 64, + "width": 64 + } + ], + "name": "Borracho Y Loco", + "release_date": "2025-08-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5Skfxe8hI3uMoQ5l3Wl0GS", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0jnsk9HBra6NMjO2oANoPY" + }, + "href": "https://api.spotify.com/v1/artists/0jnsk9HBra6NMjO2oANoPY", + "id": "0jnsk9HBra6NMjO2oANoPY", + "name": "Flo Rida", + "type": "artist", + "uri": "spotify:artist:0jnsk9HBra6NMjO2oANoPY" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3EIHFD7cnGod28Kg61IfEB" + }, + "href": "https://api.spotify.com/v1/albums/3EIHFD7cnGod28Kg61IfEB", + "id": "3EIHFD7cnGod28Kg61IfEB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27305d2f75cc2f039183c14bcdf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0205d2f75cc2f039183c14bcdf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485105d2f75cc2f039183c14bcdf", + "height": 64, + "width": 64 + } + ], + "name": "We Will Rock You (2025 FIFA Club World Cup Theme Song) feat. Pitbull x RedOne", + "release_date": "2025-06-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3EIHFD7cnGod28Kg61IfEB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5C01hDqpEmrmDfUhX9YWsH" + }, + "href": "https://api.spotify.com/v1/artists/5C01hDqpEmrmDfUhX9YWsH", + "id": "5C01hDqpEmrmDfUhX9YWsH", + "name": "FIFA Sound", + "type": "artist", + "uri": "spotify:artist:5C01hDqpEmrmDfUhX9YWsH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6O9WquDfQTxGRZqZUXVEQx" + }, + "href": "https://api.spotify.com/v1/artists/6O9WquDfQTxGRZqZUXVEQx", + "id": "6O9WquDfQTxGRZqZUXVEQx", + "name": "RedOne", + "type": "artist", + "uri": "spotify:artist:6O9WquDfQTxGRZqZUXVEQx" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5VaS19t97GVYwJZWi71BDi" + }, + "href": "https://api.spotify.com/v1/albums/5VaS19t97GVYwJZWi71BDi", + "id": "5VaS19t97GVYwJZWi71BDi", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736142c9ff5c9347c67be7cf88", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026142c9ff5c9347c67be7cf88", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516142c9ff5c9347c67be7cf88", + "height": 64, + "width": 64 + } + ], + "name": "Soy As\u00ed", + "release_date": "2025-06-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5VaS19t97GVYwJZWi71BDi", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/00CMSJdbf36zOzKB3z8JrR" + }, + "href": "https://api.spotify.com/v1/artists/00CMSJdbf36zOzKB3z8JrR", + "id": "00CMSJdbf36zOzKB3z8JrR", + "name": "Victor Cardenas", + "type": "artist", + "uri": "spotify:artist:00CMSJdbf36zOzKB3z8JrR" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0INLo9d20pUVNHOX1x2X4Q" + }, + "href": "https://api.spotify.com/v1/albums/0INLo9d20pUVNHOX1x2X4Q", + "id": "0INLo9d20pUVNHOX1x2X4Q", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d76e202fccbb3a19727ec34a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d76e202fccbb3a19727ec34a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d76e202fccbb3a19727ec34a", + "height": 64, + "width": 64 + } + ], + "name": "No Te Hagas", + "release_date": "2025-05-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0INLo9d20pUVNHOX1x2X4Q", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7iJrDbKM5fEkGdm5kpjFzS" + }, + "href": "https://api.spotify.com/v1/artists/7iJrDbKM5fEkGdm5kpjFzS", + "id": "7iJrDbKM5fEkGdm5kpjFzS", + "name": "Sensato", + "type": "artist", + "uri": "spotify:artist:7iJrDbKM5fEkGdm5kpjFzS" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 4, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5tjFV3KmhkpTpRTnv1I8Wu" + }, + "href": "https://api.spotify.com/v1/albums/5tjFV3KmhkpTpRTnv1I8Wu", + "id": "5tjFV3KmhkpTpRTnv1I8Wu", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f8dd5532fe1387b2ad40f423", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f8dd5532fe1387b2ad40f423", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f8dd5532fe1387b2ad40f423", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never", + "release_date": "2025-03-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5tjFV3KmhkpTpRTnv1I8Wu", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0f5Fhl4ZgbGtWwtxGofKqa" + }, + "href": "https://api.spotify.com/v1/albums/0f5Fhl4ZgbGtWwtxGofKqa", + "id": "0f5Fhl4ZgbGtWwtxGofKqa", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273deb06c010f4275b0002c7b7e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02deb06c010f4275b0002c7b7e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851deb06c010f4275b0002c7b7e", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never (TropKillaz Remix)", + "release_date": "2025-03-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0f5Fhl4ZgbGtWwtxGofKqa", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5bzWtCkjIAMgN93gLt56SO" + }, + "href": "https://api.spotify.com/v1/artists/5bzWtCkjIAMgN93gLt56SO", + "id": "5bzWtCkjIAMgN93gLt56SO", + "name": "Tropkillaz", + "type": "artist", + "uri": "spotify:artist:5bzWtCkjIAMgN93gLt56SO" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7wI8TpkCWRTwmnzZNjUDTj" + }, + "href": "https://api.spotify.com/v1/albums/7wI8TpkCWRTwmnzZNjUDTj", + "id": "7wI8TpkCWRTwmnzZNjUDTj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d44c7246f1d59d87462644b0", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d44c7246f1d59d87462644b0", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d44c7246f1d59d87462644b0", + "height": 64, + "width": 64 + } + ], + "name": "Now or Never (Muzik Junkies & AROCK Remix)", + "release_date": "2025-03-26", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7wI8TpkCWRTwmnzZNjUDTj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/34DQTRbIYPLSGU2SkOTEja" + }, + "href": "https://api.spotify.com/v1/artists/34DQTRbIYPLSGU2SkOTEja", + "id": "34DQTRbIYPLSGU2SkOTEja", + "name": "Muzik Junkies", + "type": "artist", + "uri": "spotify:artist:34DQTRbIYPLSGU2SkOTEja" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3fZxc2BwHIv2I72Txd9yGq" + }, + "href": "https://api.spotify.com/v1/albums/3fZxc2BwHIv2I72Txd9yGq", + "id": "3fZxc2BwHIv2I72Txd9yGq", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f5b012d83be9076b7b3c8f5c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f5b012d83be9076b7b3c8f5c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f5b012d83be9076b7b3c8f5c", + "height": 64, + "width": 64 + } + ], + "name": "Now or Never (F.A.S.T x & DJ Triple XL Remix)", + "release_date": "2025-03-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3fZxc2BwHIv2I72Txd9yGq", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VyCiFrplEiSgKvimCvGy0" + }, + "href": "https://api.spotify.com/v1/artists/4VyCiFrplEiSgKvimCvGy0", + "id": "4VyCiFrplEiSgKvimCvGy0", + "name": "DJ Triple XL", + "type": "artist", + "uri": "spotify:artist:4VyCiFrplEiSgKvimCvGy0" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2K3vXTZjcuWR8H8LgvJ8Yk" + }, + "href": "https://api.spotify.com/v1/albums/2K3vXTZjcuWR8H8LgvJ8Yk", + "id": "2K3vXTZjcuWR8H8LgvJ8Yk", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2737e25dc727b5fda6731ea49d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e027e25dc727b5fda6731ea49d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048517e25dc727b5fda6731ea49d2", + "height": 64, + "width": 64 + } + ], + "name": "Tamo Bien", + "release_date": "2025-03-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2K3vXTZjcuWR8H8LgvJ8Yk", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7qG3b048QCHVRO5Pv1T5lw" + }, + "href": "https://api.spotify.com/v1/artists/7qG3b048QCHVRO5Pv1T5lw", + "id": "7qG3b048QCHVRO5Pv1T5lw", + "name": "Enrique Iglesias", + "type": "artist", + "uri": "spotify:artist:7qG3b048QCHVRO5Pv1T5lw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0b2GL7Y02vu50qieoQmw1w" + }, + "href": "https://api.spotify.com/v1/artists/0b2GL7Y02vu50qieoQmw1w", + "id": "0b2GL7Y02vu50qieoQmw1w", + "name": "IAmChino", + "type": "artist", + "uri": "spotify:artist:0b2GL7Y02vu50qieoQmw1w" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/51dVwp68x0e1GZNOgE7hyK" + }, + "href": "https://api.spotify.com/v1/albums/51dVwp68x0e1GZNOgE7hyK", + "id": "51dVwp68x0e1GZNOgE7hyK", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732a8026edcb4e2e1d87418a73", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022a8026edcb4e2e1d87418a73", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512a8026edcb4e2e1d87418a73", + "height": 64, + "width": 64 + } + ], + "name": "I'll Do It (feat. Pitbull)", + "release_date": "2025-02-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:51dVwp68x0e1GZNOgE7hyK", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5XLBtYR2VrpkqXdlvNnFHG" + }, + "href": "https://api.spotify.com/v1/artists/5XLBtYR2VrpkqXdlvNnFHG", + "id": "5XLBtYR2VrpkqXdlvNnFHG", + "name": "Heidi Montag", + "type": "artist", + "uri": "spotify:artist:5XLBtYR2VrpkqXdlvNnFHG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4ObwiIpULEzwOPrtLSd7xA" + }, + "href": "https://api.spotify.com/v1/albums/4ObwiIpULEzwOPrtLSd7xA", + "id": "4ObwiIpULEzwOPrtLSd7xA", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27328f391d916a9abe7ddc8800e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0228f391d916a9abe7ddc8800e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485128f391d916a9abe7ddc8800e", + "height": 64, + "width": 64 + } + ], + "name": "Now Or Never", + "release_date": "2024-11-14", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4ObwiIpULEzwOPrtLSd7xA", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp" + }, + "href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp", + "id": "58lV9VcRSjABbAbfWS6skp", + "name": "Bon Jovi", + "type": "artist", + "uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5s2pXXHew5LPbEU8DgOYHg" + }, + "href": "https://api.spotify.com/v1/albums/5s2pXXHew5LPbEU8DgOYHg", + "id": "5s2pXXHew5LPbEU8DgOYHg", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736b232c8a534909a023259dea", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026b232c8a534909a023259dea", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516b232c8a534909a023259dea", + "height": 64, + "width": 64 + } + ], + "name": "MR. MOONDIAL", + "release_date": "2024-11-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5s2pXXHew5LPbEU8DgOYHg", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52iwsT98xCoGgiGntTiR7K" + }, + "href": "https://api.spotify.com/v1/artists/52iwsT98xCoGgiGntTiR7K", + "id": "52iwsT98xCoGgiGntTiR7K", + "name": "Quevedo", + "type": "artist", + "uri": "spotify:artist:52iwsT98xCoGgiGntTiR7K" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7A0AEPu9sqHZpSIDI1zLEM" + }, + "href": "https://api.spotify.com/v1/albums/7A0AEPu9sqHZpSIDI1zLEM", + "id": "7A0AEPu9sqHZpSIDI1zLEM", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273b64f4ac4a25a5ce77ba13b04", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02b64f4ac4a25a5ce77ba13b04", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851b64f4ac4a25a5ce77ba13b04", + "height": 64, + "width": 64 + } + ], + "name": "Bhool Bhulaiyaa 3 - Title Track (feat. Pitbull)", + "release_date": "2024-10-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7A0AEPu9sqHZpSIDI1zLEM", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2FKWNmZWDBZR4dE5KX4plR" + }, + "href": "https://api.spotify.com/v1/artists/2FKWNmZWDBZR4dE5KX4plR", + "id": "2FKWNmZWDBZR4dE5KX4plR", + "name": "Diljit Dosanjh", + "type": "artist", + "uri": "spotify:artist:2FKWNmZWDBZR4dE5KX4plR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4f7KfxeHq9BiylGmyXepGt" + }, + "href": "https://api.spotify.com/v1/artists/4f7KfxeHq9BiylGmyXepGt", + "id": "4f7KfxeHq9BiylGmyXepGt", + "name": "Tanishk Bagchi", + "type": "artist", + "uri": "spotify:artist:4f7KfxeHq9BiylGmyXepGt" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2LLRQs8JFjFm9RkkT9Hmqf" + }, + "href": "https://api.spotify.com/v1/albums/2LLRQs8JFjFm9RkkT9Hmqf", + "id": "2LLRQs8JFjFm9RkkT9Hmqf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2730d2057719283f5bc9af31a31", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e020d2057719283f5bc9af31a31", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048510d2057719283f5bc9af31a31", + "height": 64, + "width": 64 + } + ], + "name": "OMG (Remix)", + "release_date": "2024-10-11", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2LLRQs8JFjFm9RkkT9Hmqf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4WzBqbc7fxl2y8XrznMSqf" + }, + "href": "https://api.spotify.com/v1/artists/4WzBqbc7fxl2y8XrznMSqf", + "id": "4WzBqbc7fxl2y8XrznMSqf", + "name": "Candelita", + "type": "artist", + "uri": "spotify:artist:4WzBqbc7fxl2y8XrznMSqf" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3OcvS8PzSGYMBvLdzY6g3e" + }, + "href": "https://api.spotify.com/v1/artists/3OcvS8PzSGYMBvLdzY6g3e", + "id": "3OcvS8PzSGYMBvLdzY6g3e", + "name": "Silvestre Dangond", + "type": "artist", + "uri": "spotify:artist:3OcvS8PzSGYMBvLdzY6g3e" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 5, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZzkxHr39xEJvbl7UWKcPZ" + }, + "href": "https://api.spotify.com/v1/albums/3ZzkxHr39xEJvbl7UWKcPZ", + "id": "3ZzkxHr39xEJvbl7UWKcPZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dd5004cdbb35c0903e1fcf0a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dd5004cdbb35c0903e1fcf0a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dd5004cdbb35c0903e1fcf0a", + "height": 64, + "width": 64 + } + ], + "name": "2 The Moon (The Remixes)", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3ZzkxHr39xEJvbl7UWKcPZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" + }, + "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", + "id": "21E3waRsmPlU7jZsS13rcj", + "name": "Ne-Yo", + "type": "artist", + "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 3, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0kwED9Hwu9K0d9NLBBsAWd" + }, + "href": "https://api.spotify.com/v1/albums/0kwED9Hwu9K0d9NLBBsAWd", + "id": "0kwED9Hwu9K0d9NLBBsAWd", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c97e191da13e43091c283880", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c97e191da13e43091c283880", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c97e191da13e43091c283880", + "height": 64, + "width": 64 + } + ], + "name": "2 The Moon (The Remixes)", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0kwED9Hwu9K0d9NLBBsAWd", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21E3waRsmPlU7jZsS13rcj" + }, + "href": "https://api.spotify.com/v1/artists/21E3waRsmPlU7jZsS13rcj", + "id": "21E3waRsmPlU7jZsS13rcj", + "name": "Ne-Yo", + "type": "artist", + "uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4D75GcNG95ebPtNvoNVXhz" + }, + "href": "https://api.spotify.com/v1/artists/4D75GcNG95ebPtNvoNVXhz", + "id": "4D75GcNG95ebPtNvoNVXhz", + "name": "AFROJACK", + "type": "artist", + "uri": "spotify:artist:4D75GcNG95ebPtNvoNVXhz" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 2, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0EIZb3DTMZlZt2FLndqpSY" + }, + "href": "https://api.spotify.com/v1/albums/0EIZb3DTMZlZt2FLndqpSY", + "id": "0EIZb3DTMZlZt2FLndqpSY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734d0780b70648eace7cbba259", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024d0780b70648eace7cbba259", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514d0780b70648eace7cbba259", + "height": 64, + "width": 64 + } + ], + "name": "Tonight (D.I.Y.A) [Pitbull Remix]", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0EIZb3DTMZlZt2FLndqpSY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4Q6nIcaBED8qUel8bBx6Cr" + }, + "href": "https://api.spotify.com/v1/artists/4Q6nIcaBED8qUel8bBx6Cr", + "id": "4Q6nIcaBED8qUel8bBx6Cr", + "name": "Jax Jones", + "type": "artist", + "uri": "spotify:artist:4Q6nIcaBED8qUel8bBx6Cr" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07YZf4WDAMNwqr4jfgOZ8y" + }, + "href": "https://api.spotify.com/v1/artists/07YZf4WDAMNwqr4jfgOZ8y", + "id": "07YZf4WDAMNwqr4jfgOZ8y", + "name": "Jason Derulo", + "type": "artist", + "uri": "spotify:artist:07YZf4WDAMNwqr4jfgOZ8y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + } + ], + "album_group": "single" + }, + { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0Iauzjo1cjGE9cx4odkKHb" + }, + "href": "https://api.spotify.com/v1/albums/0Iauzjo1cjGE9cx4odkKHb", + "id": "0Iauzjo1cjGE9cx4odkKHb", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273786fd1d7ac19c1aa5591522f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02786fd1d7ac19c1aa5591522f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851786fd1d7ac19c1aa5591522f", + "height": 64, + "width": 64 + } + ], + "name": "Chi Chi Bon Bon (Remix)", + "release_date": "2024-08-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0Iauzjo1cjGE9cx4odkKHb", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/37G8DfNgO4mQ3PKh5droSo" + }, + "href": "https://api.spotify.com/v1/artists/37G8DfNgO4mQ3PKh5droSo", + "id": "37G8DfNgO4mQ3PKh5droSo", + "name": "Osmani Garcia \"La Voz\"", + "type": "artist", + "uri": "spotify:artist:37G8DfNgO4mQ3PKh5droSo" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg" + }, + "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg", + "id": "0TnOYISbd1XYRBk9myaseg", + "name": "Pitbull", + "type": "artist", + "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yX62RHdYysNcIrO33WQxJ" + }, + "href": "https://api.spotify.com/v1/artists/1yX62RHdYysNcIrO33WQxJ", + "id": "1yX62RHdYysNcIrO33WQxJ", + "name": "Dani Flow", + "type": "artist", + "uri": "spotify:artist:1yX62RHdYysNcIrO33WQxJ" } - ] + ], + "album_group": "single" + } + ] } diff --git a/tests/fixtures/audio_features.json b/tests/fixtures/audio_features.json index 9a1b952..1263d23 100644 --- a/tests/fixtures/audio_features.json +++ b/tests/fixtures/audio_features.json @@ -1,20 +1,20 @@ { - "danceability": 0.696, - "energy": 0.905, - "key": 2, - "loudness": -2.743, - "mode": 1, - "speechiness": 0.103, - "acousticness": 0.011, - "instrumentalness": 0.000905, - "liveness": 0.302, - "valence": 0.625, - "tempo": 114.944, - "type": "audio_features", - "id": "11dFghVXANMlKmJXsNCbNl", - "uri": "spotify:track:11dFghVXANMlKmJXsNCbNl", - "track_href": "https://api.spotify.com/v1/tracks/11dFghVXANMlKmJXsNCbNl", - "analysis_url": "https://api.spotify.com/v1/audio-analysis/11dFghVXANMlKmJXsNCbNl", - "duration_ms": 207960, - "time_signature": 4 + "danceability": 0.696, + "energy": 0.905, + "key": 2, + "loudness": -2.743, + "mode": 1, + "speechiness": 0.103, + "acousticness": 0.011, + "instrumentalness": 0.000905, + "liveness": 0.302, + "valence": 0.625, + "tempo": 114.944, + "type": "audio_features", + "id": "11dFghVXANMlKmJXsNCbNl", + "uri": "spotify:track:11dFghVXANMlKmJXsNCbNl", + "track_href": "https://api.spotify.com/v1/tracks/11dFghVXANMlKmJXsNCbNl", + "analysis_url": "https://api.spotify.com/v1/audio-analysis/11dFghVXANMlKmJXsNCbNl", + "duration_ms": 207960, + "time_signature": 4 } diff --git a/tests/fixtures/audiobook.json b/tests/fixtures/audiobook.json index 3dce696..7fb8e3f 100644 --- a/tests/fixtures/audiobook.json +++ b/tests/fixtures/audiobook.json @@ -1,4788 +1,4788 @@ { - "authors": [ - { - "name": "J.K. Rowling" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "chapters": { - "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?offset=0&limit=50", - "items": [ - { - "id": "0bnJ1qcNgHwwPWbDJAia57", - "description": "", - "chapter_number": 0, - "duration_ms": 23000, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Opening Credits", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" - }, - "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" - }, - { - "id": "3XcHJLv9NVV3lI4ECSNGcl", - "description": "", - "chapter_number": 1, - "duration_ms": 1901683, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 1: The Boy Who Lived", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" - }, - "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" - }, - { - "id": "6yXRrpO4DYkPEphS1wApK6", - "description": "", - "chapter_number": 2, - "duration_ms": 1329841, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 2: The Vanishing Glass", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" - }, - "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" - }, - { - "id": "10fQLdhdGVbBYXvlXRVIPa", - "description": "", - "chapter_number": 3, - "duration_ms": 1517244, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 3: The Letters from No One", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", - "external_urls": { - "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" - }, - "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" - }, - { - "id": "46BVQZ5N2HbrtvO7EesYUY", - "description": "", - "chapter_number": 4, - "duration_ms": 1470066, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 4: The Keeper of the Keys", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", - "external_urls": { - "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" - }, - "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" - }, - { - "id": "4G2TaqHalYmLiL7fvJC75u", - "description": "", - "chapter_number": 5, - "duration_ms": 2643879, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 5: Diagon Alley", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" - }, - "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" - }, - { - "id": "2F4ricTDPdDT2h2m0mhUbt", - "description": "", - "chapter_number": 6, - "duration_ms": 2286524, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" - }, - "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" - }, - { - "id": "2nCrEIRgNfQpR9BUryaiyr", - "description": "", - "chapter_number": 7, - "duration_ms": 1773949, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 7: The Sorting Hat", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" - }, - "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" - }, - { - "id": "4jVigNVaZVhuAOXlf8TDNX", - "description": "", - "chapter_number": 8, - "duration_ms": 1125799, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 8: The Potions Master", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" - }, - "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" - }, - { - "id": "0IHdKlFFno5yhCdmRSip9g", - "description": "", - "chapter_number": 9, - "duration_ms": 1841528, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 9: The Midnight Duel", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" - }, - "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" - }, - { - "id": "20kk3OD8mjGkpucTvqYa9K", - "description": "", - "chapter_number": 10, - "duration_ms": 1571735, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 10: Halloween", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", - "external_urls": { - "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" - }, - "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" - }, - { - "id": "7vG172nPGGr3ZXm4YdL1nx", - "description": "", - "chapter_number": 11, - "duration_ms": 1209887, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 11: Quidditch", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" - }, - "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" - }, - { - "id": "1yRfwSOp8Jy1GisI0JIhMK", - "description": "", - "chapter_number": 12, - "duration_ms": 2066155, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 12: The Mirror of Erised", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" - }, - "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" - }, - { - "id": "3BKzXnwHwemuVsJC2bSIYA", - "description": "", - "chapter_number": 13, - "duration_ms": 1219422, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 13: Nicolas Flamel", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" - }, - "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" - }, - { - "id": "1wBkAOL29N9vkHTfvaACGv", - "description": "", - "chapter_number": 14, - "duration_ms": 1280000, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 14: Norbert The Norwegian Ridgeback", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" - }, - "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" - }, - { - "id": "23cBJs22XGN3G7gA2EA0i1", - "description": "", - "chapter_number": 15, - "duration_ms": 2063306, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 15: The Forbidden Forest", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", - "external_urls": { - "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" - }, - "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" - }, - { - "id": "3K5mu1lHmrHC3CNPWV9r2A", - "description": "", - "chapter_number": 16, - "duration_ms": 2587167, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 16: Through the Trapdoor", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" - }, - "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" - }, - { - "id": "0V36QZwEj9VPrEiZF6AWoh", - "description": "", - "chapter_number": 17, - "duration_ms": 2327308, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 17: The Man with Two Faces", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" - }, - "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" - }, - { - "id": "04xYt1v4vGr7V9lJxl5xwL", - "description": "", - "chapter_number": 18, - "duration_ms": 95770, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Ending Credits", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", - "external_urls": { - "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" - }, - "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" - }, - { - "id": "5q5hnqCbUbgulqlsrnWL7h", - "description": "", - "chapter_number": 19, - "duration_ms": 300000, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Harry Potter and the Philosopher's Stone", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "explicit": false, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" - }, - "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" - } + "authors": [ + { + "name": "J.K. Rowling" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "chapters": { + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?offset=0&limit=50", + "items": [ + { + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } ], - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 20 - }, - "copyrights": [ - { - "text": "Pottermore Ltd. 1997", - "type": "C" - } - ], - "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" - }, - "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", - "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", - "id": "6SJQ8VzM5PlDy11wMtcD6v", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "languages": [""], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + }, + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" + }, + { + "id": "3XcHJLv9NVV3lI4ECSNGcl", + "description": "", + "chapter_number": 1, + "duration_ms": 1901683, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 1: The Boy Who Lived", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" + }, + "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" + }, + { + "id": "6yXRrpO4DYkPEphS1wApK6", + "description": "", + "chapter_number": 2, + "duration_ms": 1329841, + "images": [ + { "height": 640, - "width": 640 + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 2: The Vanishing Glass", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", + "external_urls": { + "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" + }, + { + "id": "10fQLdhdGVbBYXvlXRVIPa", + "description": "", + "chapter_number": 3, + "duration_ms": 1517244, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { "height": 300, - "width": 300 + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 3: The Letters from No One", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", + "external_urls": { + "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" }, - { - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" + }, + { + "id": "46BVQZ5N2HbrtvO7EesYUY", + "description": "", + "chapter_number": 4, + "duration_ms": 1470066, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { "height": 64, - "width": 64 - } - ], - "languages": ["en"], - "media_type": "audio", - "name": "Harry Potter and the Philosopher's Stone", - "narrators": [ - { - "name": "Stephen Fry" - } + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 4: The Keeper of the Keys", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", + "external_urls": { + "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" + }, + "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" + }, + { + "id": "4G2TaqHalYmLiL7fvJC75u", + "description": "", + "chapter_number": 5, + "duration_ms": 2643879, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 5: Diagon Alley", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" + }, + "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" + }, + { + "id": "2F4ricTDPdDT2h2m0mhUbt", + "description": "", + "chapter_number": 6, + "duration_ms": 2286524, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" + }, + "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" + }, + { + "id": "2nCrEIRgNfQpR9BUryaiyr", + "description": "", + "chapter_number": 7, + "duration_ms": 1773949, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 7: The Sorting Hat", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" + }, + "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" + }, + { + "id": "4jVigNVaZVhuAOXlf8TDNX", + "description": "", + "chapter_number": 8, + "duration_ms": 1125799, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 8: The Potions Master", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" + }, + "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" + }, + { + "id": "0IHdKlFFno5yhCdmRSip9g", + "description": "", + "chapter_number": 9, + "duration_ms": 1841528, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 9: The Midnight Duel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" + }, + "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" + }, + { + "id": "20kk3OD8mjGkpucTvqYa9K", + "description": "", + "chapter_number": 10, + "duration_ms": 1571735, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 10: Halloween", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", + "external_urls": { + "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" + }, + "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" + }, + { + "id": "7vG172nPGGr3ZXm4YdL1nx", + "description": "", + "chapter_number": 11, + "duration_ms": 1209887, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 11: Quidditch", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", + "external_urls": { + "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" + }, + "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" + }, + { + "id": "1yRfwSOp8Jy1GisI0JIhMK", + "description": "", + "chapter_number": 12, + "duration_ms": 2066155, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 12: The Mirror of Erised", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" + }, + "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" + }, + { + "id": "3BKzXnwHwemuVsJC2bSIYA", + "description": "", + "chapter_number": 13, + "duration_ms": 1219422, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 13: Nicolas Flamel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" + }, + "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" + }, + { + "id": "1wBkAOL29N9vkHTfvaACGv", + "description": "", + "chapter_number": 14, + "duration_ms": 1280000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 14: Norbert The Norwegian Ridgeback", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" + }, + "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" + }, + { + "id": "23cBJs22XGN3G7gA2EA0i1", + "description": "", + "chapter_number": 15, + "duration_ms": 2063306, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 15: The Forbidden Forest", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", + "external_urls": { + "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" + }, + "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" + }, + { + "id": "3K5mu1lHmrHC3CNPWV9r2A", + "description": "", + "chapter_number": 16, + "duration_ms": 2587167, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 16: Through the Trapdoor", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" + }, + "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" + }, + { + "id": "0V36QZwEj9VPrEiZF6AWoh", + "description": "", + "chapter_number": 17, + "duration_ms": 2327308, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 17: The Man with Two Faces", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" + }, + "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" + }, + { + "id": "04xYt1v4vGr7V9lJxl5xwL", + "description": "", + "chapter_number": 18, + "duration_ms": 95770, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Ending Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", + "external_urls": { + "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" + }, + "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" + }, + { + "id": "5q5hnqCbUbgulqlsrnWL7h", + "description": "", + "chapter_number": 19, + "duration_ms": 300000, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Harry Potter and the Philosopher's Stone", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "explicit": false, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", + "external_urls": { + "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" + }, + "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" + } ], - "publisher": "J.K. Rowling", - "total_chapters": 20, - "type": "audiobook", - "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20 + }, + "copyrights": [ + { + "text": "Pottermore Ltd. 1997", + "type": "C" + } + ], + "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" + }, + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "id": "6SJQ8VzM5PlDy11wMtcD6v", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "height": 64, + "width": 64 + } + ], + "languages": ["en"], + "media_type": "audio", + "name": "Harry Potter and the Philosopher's Stone", + "narrators": [ + { + "name": "Stephen Fry" + } + ], + "publisher": "J.K. Rowling", + "total_chapters": 20, + "type": "audiobook", + "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" } diff --git a/tests/fixtures/audiobook_chapters.json b/tests/fixtures/audiobook_chapters.json index 70f3ad9..40f747b 100644 --- a/tests/fixtures/audiobook_chapters.json +++ b/tests/fixtures/audiobook_chapters.json @@ -1,4490 +1,4490 @@ { - "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 20, - "items": [ + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v/chapters?limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20, + "items": [ + { + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "explicit": false, + "images": [ { - "id": "0bnJ1qcNgHwwPWbDJAia57", - "description": "", - "chapter_number": 0, - "duration_ms": 23000, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Opening Credits", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" - }, - "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "3XcHJLv9NVV3lI4ECSNGcl", - "description": "", - "chapter_number": 1, - "duration_ms": 1901683, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 1: The Boy Who Lived", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" - }, - "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "6yXRrpO4DYkPEphS1wApK6", - "description": "", - "chapter_number": 2, - "duration_ms": 1329841, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 2: The Vanishing Glass", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", - "external_urls": { - "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" - }, - "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + }, + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" + }, + { + "id": "3XcHJLv9NVV3lI4ECSNGcl", + "description": "", + "chapter_number": 1, + "duration_ms": 1901683, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 1: The Boy Who Lived", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3XcHJLv9NVV3lI4ECSNGcl", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XcHJLv9NVV3lI4ECSNGcl" + }, + "href": "https://api.spotify.com/v1/chapters/3XcHJLv9NVV3lI4ECSNGcl" + }, + { + "id": "6yXRrpO4DYkPEphS1wApK6", + "description": "", + "chapter_number": 2, + "duration_ms": 1329841, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 2: The Vanishing Glass", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:6yXRrpO4DYkPEphS1wApK6", + "external_urls": { + "spotify": "https://open.spotify.com/episode/6yXRrpO4DYkPEphS1wApK6" + }, + "href": "https://api.spotify.com/v1/chapters/6yXRrpO4DYkPEphS1wApK6" + }, + { + "id": "10fQLdhdGVbBYXvlXRVIPa", + "description": "", + "chapter_number": 3, + "duration_ms": 1517244, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 3: The Letters from No One", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", + "external_urls": { + "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" + }, + "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" + }, + { + "id": "46BVQZ5N2HbrtvO7EesYUY", + "description": "", + "chapter_number": 4, + "duration_ms": 1470066, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 4: The Keeper of the Keys", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", + "external_urls": { + "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" + }, + "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" + }, + { + "id": "4G2TaqHalYmLiL7fvJC75u", + "description": "", + "chapter_number": 5, + "duration_ms": 2643879, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 5: Diagon Alley", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" + }, + "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" + }, + { + "id": "2F4ricTDPdDT2h2m0mhUbt", + "description": "", + "chapter_number": 6, + "duration_ms": 2286524, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" + }, + "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" + }, + { + "id": "2nCrEIRgNfQpR9BUryaiyr", + "description": "", + "chapter_number": 7, + "duration_ms": 1773949, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "10fQLdhdGVbBYXvlXRVIPa", - "description": "", - "chapter_number": 3, - "duration_ms": 1517244, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 3: The Letters from No One", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:10fQLdhdGVbBYXvlXRVIPa", - "external_urls": { - "spotify": "https://open.spotify.com/episode/10fQLdhdGVbBYXvlXRVIPa" - }, - "href": "https://api.spotify.com/v1/chapters/10fQLdhdGVbBYXvlXRVIPa" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 7: The Sorting Hat", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", + "external_urls": { + "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" + }, + "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" + }, + { + "id": "4jVigNVaZVhuAOXlf8TDNX", + "description": "", + "chapter_number": 8, + "duration_ms": 1125799, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 8: The Potions Master", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", + "external_urls": { + "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" + }, + "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" + }, + { + "id": "0IHdKlFFno5yhCdmRSip9g", + "description": "", + "chapter_number": 9, + "duration_ms": 1841528, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 9: The Midnight Duel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" + }, + "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" + }, + { + "id": "20kk3OD8mjGkpucTvqYa9K", + "description": "", + "chapter_number": 10, + "duration_ms": 1571735, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 10: Halloween", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", + "external_urls": { + "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" + }, + "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" + }, + { + "id": "7vG172nPGGr3ZXm4YdL1nx", + "description": "", + "chapter_number": 11, + "duration_ms": 1209887, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "46BVQZ5N2HbrtvO7EesYUY", - "description": "", - "chapter_number": 4, - "duration_ms": 1470066, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 4: The Keeper of the Keys", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:46BVQZ5N2HbrtvO7EesYUY", - "external_urls": { - "spotify": "https://open.spotify.com/episode/46BVQZ5N2HbrtvO7EesYUY" - }, - "href": "https://api.spotify.com/v1/chapters/46BVQZ5N2HbrtvO7EesYUY" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "4G2TaqHalYmLiL7fvJC75u", - "description": "", - "chapter_number": 5, - "duration_ms": 2643879, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 5: Diagon Alley", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4G2TaqHalYmLiL7fvJC75u", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4G2TaqHalYmLiL7fvJC75u" - }, - "href": "https://api.spotify.com/v1/chapters/4G2TaqHalYmLiL7fvJC75u" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 11: Quidditch", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", + "external_urls": { + "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" + }, + "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" + }, + { + "id": "1yRfwSOp8Jy1GisI0JIhMK", + "description": "", + "chapter_number": 12, + "duration_ms": 2066155, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 12: The Mirror of Erised", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" + }, + "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" + }, + { + "id": "3BKzXnwHwemuVsJC2bSIYA", + "description": "", + "chapter_number": 13, + "duration_ms": 1219422, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "2F4ricTDPdDT2h2m0mhUbt", - "description": "", - "chapter_number": 6, - "duration_ms": 2286524, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 6: The Journey from Platform Nine and Three-quarters", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2F4ricTDPdDT2h2m0mhUbt", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2F4ricTDPdDT2h2m0mhUbt" - }, - "href": "https://api.spotify.com/v1/chapters/2F4ricTDPdDT2h2m0mhUbt" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "2nCrEIRgNfQpR9BUryaiyr", - "description": "", - "chapter_number": 7, - "duration_ms": 1773949, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 7: The Sorting Hat", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:2nCrEIRgNfQpR9BUryaiyr", - "external_urls": { - "spotify": "https://open.spotify.com/episode/2nCrEIRgNfQpR9BUryaiyr" - }, - "href": "https://api.spotify.com/v1/chapters/2nCrEIRgNfQpR9BUryaiyr" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 13: Nicolas Flamel", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" + }, + "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" + }, + { + "id": "1wBkAOL29N9vkHTfvaACGv", + "description": "", + "chapter_number": 14, + "duration_ms": 1280000, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "4jVigNVaZVhuAOXlf8TDNX", - "description": "", - "chapter_number": 8, - "duration_ms": 1125799, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 8: The Potions Master", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:4jVigNVaZVhuAOXlf8TDNX", - "external_urls": { - "spotify": "https://open.spotify.com/episode/4jVigNVaZVhuAOXlf8TDNX" - }, - "href": "https://api.spotify.com/v1/chapters/4jVigNVaZVhuAOXlf8TDNX" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "0IHdKlFFno5yhCdmRSip9g", - "description": "", - "chapter_number": 9, - "duration_ms": 1841528, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 9: The Midnight Duel", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0IHdKlFFno5yhCdmRSip9g", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0IHdKlFFno5yhCdmRSip9g" - }, - "href": "https://api.spotify.com/v1/chapters/0IHdKlFFno5yhCdmRSip9g" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 14: Norbert The Norwegian Ridgeback", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", + "external_urls": { + "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" + }, + "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" + }, + { + "id": "23cBJs22XGN3G7gA2EA0i1", + "description": "", + "chapter_number": 15, + "duration_ms": 2063306, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "20kk3OD8mjGkpucTvqYa9K", - "description": "", - "chapter_number": 10, - "duration_ms": 1571735, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 10: Halloween", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:20kk3OD8mjGkpucTvqYa9K", - "external_urls": { - "spotify": "https://open.spotify.com/episode/20kk3OD8mjGkpucTvqYa9K" - }, - "href": "https://api.spotify.com/v1/chapters/20kk3OD8mjGkpucTvqYa9K" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "7vG172nPGGr3ZXm4YdL1nx", - "description": "", - "chapter_number": 11, - "duration_ms": 1209887, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 11: Quidditch", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:7vG172nPGGr3ZXm4YdL1nx", - "external_urls": { - "spotify": "https://open.spotify.com/episode/7vG172nPGGr3ZXm4YdL1nx" - }, - "href": "https://api.spotify.com/v1/chapters/7vG172nPGGr3ZXm4YdL1nx" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 15: The Forbidden Forest", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", + "external_urls": { + "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" + }, + "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" + }, + { + "id": "3K5mu1lHmrHC3CNPWV9r2A", + "description": "", + "chapter_number": 16, + "duration_ms": 2587167, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "1yRfwSOp8Jy1GisI0JIhMK", - "description": "", - "chapter_number": 12, - "duration_ms": 2066155, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 12: The Mirror of Erised", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1yRfwSOp8Jy1GisI0JIhMK", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1yRfwSOp8Jy1GisI0JIhMK" - }, - "href": "https://api.spotify.com/v1/chapters/1yRfwSOp8Jy1GisI0JIhMK" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "3BKzXnwHwemuVsJC2bSIYA", - "description": "", - "chapter_number": 13, - "duration_ms": 1219422, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 13: Nicolas Flamel", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3BKzXnwHwemuVsJC2bSIYA", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3BKzXnwHwemuVsJC2bSIYA" - }, - "href": "https://api.spotify.com/v1/chapters/3BKzXnwHwemuVsJC2bSIYA" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 16: Through the Trapdoor", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", + "external_urls": { + "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" + }, + "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" + }, + { + "id": "0V36QZwEj9VPrEiZF6AWoh", + "description": "", + "chapter_number": 17, + "duration_ms": 2327308, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "1wBkAOL29N9vkHTfvaACGv", - "description": "", - "chapter_number": 14, - "duration_ms": 1280000, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 14: Norbert The Norwegian Ridgeback", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:1wBkAOL29N9vkHTfvaACGv", - "external_urls": { - "spotify": "https://open.spotify.com/episode/1wBkAOL29N9vkHTfvaACGv" - }, - "href": "https://api.spotify.com/v1/chapters/1wBkAOL29N9vkHTfvaACGv" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "23cBJs22XGN3G7gA2EA0i1", - "description": "", - "chapter_number": 15, - "duration_ms": 2063306, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 15: The Forbidden Forest", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:23cBJs22XGN3G7gA2EA0i1", - "external_urls": { - "spotify": "https://open.spotify.com/episode/23cBJs22XGN3G7gA2EA0i1" - }, - "href": "https://api.spotify.com/v1/chapters/23cBJs22XGN3G7gA2EA0i1" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Chapter 17: The Man with Two Faces", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" + }, + "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" + }, + { + "id": "04xYt1v4vGr7V9lJxl5xwL", + "description": "", + "chapter_number": 18, + "duration_ms": 95770, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "3K5mu1lHmrHC3CNPWV9r2A", - "description": "", - "chapter_number": 16, - "duration_ms": 2587167, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 16: Through the Trapdoor", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:3K5mu1lHmrHC3CNPWV9r2A", - "external_urls": { - "spotify": "https://open.spotify.com/episode/3K5mu1lHmrHC3CNPWV9r2A" - }, - "href": "https://api.spotify.com/v1/chapters/3K5mu1lHmrHC3CNPWV9r2A" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "0V36QZwEj9VPrEiZF6AWoh", - "description": "", - "chapter_number": 17, - "duration_ms": 2327308, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Chapter 17: The Man with Two Faces", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:0V36QZwEj9VPrEiZF6AWoh", - "external_urls": { - "spotify": "https://open.spotify.com/episode/0V36QZwEj9VPrEiZF6AWoh" - }, - "href": "https://api.spotify.com/v1/chapters/0V36QZwEj9VPrEiZF6AWoh" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" + } + ], + "languages": [""], + "name": "Ending Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", + "external_urls": { + "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" + }, + "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" + }, + { + "id": "5q5hnqCbUbgulqlsrnWL7h", + "description": "", + "chapter_number": 19, + "duration_ms": 300000, + "explicit": false, + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" }, { - "id": "04xYt1v4vGr7V9lJxl5xwL", - "description": "", - "chapter_number": 18, - "duration_ms": 95770, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Ending Credits", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:04xYt1v4vGr7V9lJxl5xwL", - "external_urls": { - "spotify": "https://open.spotify.com/episode/04xYt1v4vGr7V9lJxl5xwL" - }, - "href": "https://api.spotify.com/v1/chapters/04xYt1v4vGr7V9lJxl5xwL" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" }, { - "id": "5q5hnqCbUbgulqlsrnWL7h", - "description": "", - "chapter_number": 19, - "duration_ms": 300000, - "explicit": false, - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" - } - ], - "languages": [""], - "name": "Harry Potter and the Philosopher's Stone", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "html_description": "", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "chapter", - "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", - "external_urls": { - "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" - }, - "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6" } - ] + ], + "languages": [""], + "name": "Harry Potter and the Philosopher's Stone", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "html_description": "", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "chapter", + "uri": "spotify:episode:5q5hnqCbUbgulqlsrnWL7h", + "external_urls": { + "spotify": "https://open.spotify.com/episode/5q5hnqCbUbgulqlsrnWL7h" + }, + "href": "https://api.spotify.com/v1/chapters/5q5hnqCbUbgulqlsrnWL7h" + } + ] } diff --git a/tests/fixtures/chapter.json b/tests/fixtures/chapter.json index 79adc4f..8691576 100644 --- a/tests/fixtures/chapter.json +++ b/tests/fixtures/chapter.json @@ -1,466 +1,466 @@ { - "id": "0bnJ1qcNgHwwPWbDJAia57", - "description": "", - "chapter_number": 0, - "duration_ms": 23000, - "explicit": false, - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", - "width": 64 - } - ], - "languages": ["en"], - "name": "Opening Credits", - "audio_preview_url": null, - "release_date": "2015-11-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "id": "0bnJ1qcNgHwwPWbDJAia57", + "description": "", + "chapter_number": 0, + "duration_ms": 23000, + "explicit": false, + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "width": 640 }, - "is_playable": true, - "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "width": 64 + } + ], + "languages": ["en"], + "name": "Opening Credits", + "audio_preview_url": null, + "release_date": "2015-11-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "is_playable": true, + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "audiobook": { + "authors": [ + { + "name": "J.K. Rowling" + } + ], "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" ], - "audiobook": { - "authors": [ - { - "name": "J.K. Rowling" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [ - { - "text": "Pottermore Ltd. 1997", - "type": "C" - } - ], - "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" - }, - "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", - "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", - "id": "6SJQ8VzM5PlDy11wMtcD6v", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", - "width": 64 - } - ], - "languages": ["en"], - "media_type": "audio", - "name": "Harry Potter and the Philosopher's Stone", - "narrators": [ - { - "name": "Stephen Fry" - } - ], - "publisher": "J.K. Rowling", - "total_chapters": 38, - "type": "audiobook", - "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" - }, - "type": "chapter", - "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "copyrights": [ + { + "text": "Pottermore Ltd. 1997", + "type": "C" + } + ], + "description": "Author(s): J.K. Rowling Narrator(s): Stephen Fry Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "edition": "Unabridged", + "explicit": false, "external_urls": { - "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + "spotify": "https://open.spotify.com/show/6SJQ8VzM5PlDy11wMtcD6v" }, - "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" + "href": "https://api.spotify.com/v1/audiobooks/6SJQ8VzM5PlDy11wMtcD6v", + "html_description": "Author(s): J.K. Rowling
Narrator(s): Stephen Fry
Stephen Fry brings the richness of these magical stories to life in the original British recordings.Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Treat your ears to a performance so rich and captivating you'll imagine yourself in the halls of Hogwarts. Wherever you listen, the unmistakable voice of Stephen Fry is guaranteed to guide you ever more deeply into this magical story and transport you to the heart of the adventure.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Theme music composed by James HanniganHaving become classics of our time, the Harry Potter stories never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new listeners.", + "id": "6SJQ8VzM5PlDy11wMtcD6v", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a86fe12c98e7f447c66626dcb6", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b6fe12c98e7f447c66626dcb6", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b6fe12c98e7f447c66626dcb6", + "width": 64 + } + ], + "languages": ["en"], + "media_type": "audio", + "name": "Harry Potter and the Philosopher's Stone", + "narrators": [ + { + "name": "Stephen Fry" + } + ], + "publisher": "J.K. Rowling", + "total_chapters": 38, + "type": "audiobook", + "uri": "spotify:show:6SJQ8VzM5PlDy11wMtcD6v" + }, + "type": "chapter", + "uri": "spotify:episode:0bnJ1qcNgHwwPWbDJAia57", + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bnJ1qcNgHwwPWbDJAia57" + }, + "href": "https://api.spotify.com/v1/chapters/0bnJ1qcNgHwwPWbDJAia57" } diff --git a/tests/fixtures/current_playing_track.json b/tests/fixtures/current_playing_track.json index d4eafaa..17a7057 100644 --- a/tests/fixtures/current_playing_track.json +++ b/tests/fixtures/current_playing_track.json @@ -1,466 +1,466 @@ { - "timestamp": 1702851692462, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + "timestamp": 1702851692462, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" }, - "progress_ms": 134749, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1LorgdkFY2zgE6NbDdY19k" - }, - "href": "https://api.spotify.com/v1/albums/1LorgdkFY2zgE6NbDdY19k", - "id": "1LorgdkFY2zgE6NbDdY19k", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2", - "width": 64 - } - ], - "name": "Dun Smeren Geld Verdienen", - "release_date": "2019-05-13", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:1LorgdkFY2zgE6NbDdY19k" + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + }, + "progress_ms": 134749, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1LorgdkFY2zgE6NbDdY19k" + }, + "href": "https://api.spotify.com/v1/albums/1LorgdkFY2zgE6NbDdY19k", + "id": "1LorgdkFY2zgE6NbDdY19k", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731de89c5340be36804e01fdf2", + "width": 640 }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245581, - "explicit": true, - "external_ids": { - "isrc": "GBMJG1909751" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021de89c5340be36804e01fdf2", + "width": 300 }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511de89c5340be36804e01fdf2", + "width": 64 + } + ], + "name": "Dun Smeren Geld Verdienen", + "release_date": "2019-05-13", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:1LorgdkFY2zgE6NbDdY19k" + }, + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ" + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" }, - "href": "https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ", - "id": "4sIkwgf9bU7rQPvsA37rVQ", - "is_local": false, - "name": "Witte Was", - "popularity": 59, - "preview_url": "https://p.scdn.co/mp3-preview/7e4836cab15ac1f1d03c78c84e411ffa71103a77?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 6, - "type": "track", - "uri": "spotify:track:4sIkwgf9bU7rQPvsA37rVQ" + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245581, + "explicit": true, + "external_ids": { + "isrc": "GBMJG1909751" }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } + "external_urls": { + "spotify": "https://open.spotify.com/track/4sIkwgf9bU7rQPvsA37rVQ" }, - "is_playing": true + "href": "https://api.spotify.com/v1/tracks/4sIkwgf9bU7rQPvsA37rVQ", + "id": "4sIkwgf9bU7rQPvsA37rVQ", + "is_local": false, + "name": "Witte Was", + "popularity": 59, + "preview_url": "https://p.scdn.co/mp3-preview/7e4836cab15ac1f1d03c78c84e411ffa71103a77?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 6, + "type": "track", + "uri": "spotify:track:4sIkwgf9bU7rQPvsA37rVQ" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/current_user.json b/tests/fixtures/current_user.json index 964bf2b..76c399c 100644 --- a/tests/fixtures/current_user.json +++ b/tests/fixtures/current_user.json @@ -1,24 +1,24 @@ { - "country": "NL", - "display_name": "Joost Lekkerkerker", - "explicit_content": { "filter_enabled": false, "filter_locked": false }, - "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" }, - "followers": { "href": null, "total": 21 }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "images": [ - { - "height": 300, - "url": "https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc", - "width": 64 - } - ], - "product": "premium", - "type": "user", - "uri": "spotify:user:1112264649" + "country": "NL", + "display_name": "Joost Lekkerkerker", + "explicit_content": { "filter_enabled": false, "filter_locked": false }, + "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" }, + "followers": { "href": null, "total": 21 }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "images": [ + { + "height": 300, + "url": "https://i.scdn.co/image/ab6775700000ee8546569a64d252247acb1491bc", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67757000003b8246569a64d252247acb1491bc", + "width": 64 + } + ], + "product": "premium", + "type": "user", + "uri": "spotify:user:1112264649" } diff --git a/tests/fixtures/current_user_playlist_1.json b/tests/fixtures/current_user_playlist_1.json index 7b084bb..e573a9b 100644 --- a/tests/fixtures/current_user_playlist_1.json +++ b/tests/fixtures/current_user_playlist_1.json @@ -1,2274 +1,2274 @@ { - "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48", - "limit": 48, - "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48", - "offset": 0, - "previous": null, - "total": 94, - "items": [ - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" - }, - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", - "id": "1Cp6VQCKf2VL4sP09jN9oX", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": null - } - ], - "name": "To find", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks", - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Wsgrrb7PCORhHq5L7wF0d" - }, - "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d", - "id": "0Wsgrrb7PCORhHq5L7wF0d", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0204290e7559226bf75ac34da8", - "width": null - } - ], - "name": "Repeat ones", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA9Or/3CAEwspEWBNRjmXsGtIRpiq", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/tracks", - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/items", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:0Wsgrrb7PCORhHq5L7wF0d" - }, - { - "collaborative": false, - "description": "New playlist description", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" - }, - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", - "id": "2dGgoMPWpapXYA6rX7ZbbB", - "images": null, - "name": "New Playlist", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAfu2PYguJO6XYV1gFlnjUp0umkry", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", - "total": 0 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/items", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB" - }, - { - "collaborative": true, - "description": "Updated playlist description", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" - }, - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", - "id": "4hQFqB1AtOpzsAv01E8n6c", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983", - "width": null - } - ], - "name": "Updated Playlist Name2", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/items", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" - }, - { - "collaborative": false, - "description": "A musical time capsule from the past has been unsealed\u2026!", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2G2eo5DxAtxLu7aNGVvNpY" - }, - "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY", - "id": "2G2eo5DxAtxLu7aNGVvNpY", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416264ef6071da49cbe93a951", - "width": null - } - ], - "name": "My 2024 Playlist in a Bottle", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA49BO4ePrhQ9Y7ENMXmDik23Vv27", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/tracks", - "total": 3 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/items", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:2G2eo5DxAtxLu7aNGVvNpY" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" - }, - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", - "id": "5t75uJ5vBvEdbbvs5uIqXJ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", - "width": null - } - ], - "name": "Sweet", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", - "total": 3 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/items", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" - }, - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", - "id": "0pM0KTMXM7K5qr3sL2DPw1", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": null - } - ], - "name": "Pain", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACAnbhCSBgmOCZb+KmWOAhPdGgQDl", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", - "total": 3 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/items", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" - }, - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", - "id": "4WkWJ0EjHEFASDevhM8oPw", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", - "width": null - } - ], - "name": "Hyper", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/items", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" - }, - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", - "id": "1RHirWgH1weMsBLi4KOK9d", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 60 - } - ], - "name": "Ain\u2019t got shit on me", - "owner": { - "display_name": "Rensie", - "external_urls": { - "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" - }, - "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", - "id": "317g2sbpe3ccycu45fes6lfr5lpe", - "type": "user", - "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", - "total": 30 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/items", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" - }, - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", - "id": "2ZfissHhjQnhlmD54h6elH", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", - "width": 60 - } - ], - "name": "Billie (interlude)", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", - "total": 7 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/items", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" - }, - { - "collaborative": false, - "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" - }, - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", - "id": "1vOHEgZ5UszkWycPjnG2Uo", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", - "width": null - } - ], - "name": "Forza Horizon 5 Bass Arena", - "owner": { - "display_name": "SylveonTribe", - "external_urls": { - "spotify": "https://open.spotify.com/user/rwilming" - }, - "href": "https://api.spotify.com/v1/users/rwilming", - "id": "rwilming", - "type": "user", - "uri": "spotify:user:rwilming" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", - "total": 17 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/items", - "total": 17 - }, - "type": "playlist", - "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" - }, - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", - "id": "0Jgs7FxHX86twpgCDehAHv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", - "width": 60 - } - ], - "name": "Cr\u00e8me", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", - "total": 6 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/items", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" - }, - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", - "id": "6fHmmdjd2Urd7DAhb4bqOB", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", - "width": 60 - } - ], - "name": "My Shazam Tracks", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABWHcOmMJhCMpNqc5zVozVx9Lbcnk4", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", - "total": 532 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/items", - "total": 532 - }, - "type": "playlist", - "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" - }, - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", - "id": "5H2U7tZb9dMSHPwi20XcuD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 60 - } - ], - "name": "Likes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAJKzTbmZHqmOUqQe1xOWb4eZgf1n/", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", - "total": 4276 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/items", - "total": 4276 - }, - "type": "playlist", - "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" - }, - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", - "id": "709T4OzANnUi2lKQLlVkrE", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", - "width": 60 - } - ], - "name": "March '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", - "total": 4 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/items", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" - }, - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", - "id": "57ZuuAVl0eAZvhisoFP3SC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", - "width": 60 - } - ], - "name": "February '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", - "total": 20 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/items", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" - }, - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", - "id": "4OI1xDCLFlEcfgaeyowpEu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 60 - } - ], - "name": "January '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", - "total": 4 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/items", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" - }, - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", - "id": "4NsY2DKzQIjaajal5L25Kt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", - "width": 60 - } - ], - "name": "December '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", - "total": 7 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/items", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" - }, - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", - "id": "5dV0IeLCysOP6qEDGzhHw0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 60 - } - ], - "name": "November '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", - "total": 13 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/items", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" - }, - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", - "id": "40bvnxNQlivxZ02DmDzNxy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", - "width": 60 - } - ], - "name": "October '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", - "total": 9 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/items", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" - }, - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", - "id": "2ExZs1G4AOluuEwg3q5M1v", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 60 - } - ], - "name": "September '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", - "total": 19 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/items", - "total": 19 - }, - "type": "playlist", - "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" - }, - { - "collaborative": false, - "description": "de soms niet zo casual weird vibe playlist", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" - }, - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", - "id": "4jNUJLnkZJ32nuFE1PjkGu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", - "width": 60 - } - ], - "name": "Slumpm\u00e4ssiga", - "owner": { - "display_name": "leanne", - "external_urls": { - "spotify": "https://open.spotify.com/user/xleanne_" - }, - "href": "https://api.spotify.com/v1/users/xleanne_", - "id": "xleanne_", - "type": "user", - "uri": "spotify:user:xleanne_" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", - "total": 107 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/items", - "total": 107 - }, - "type": "playlist", - "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" - }, - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", - "id": "700dVjBihCDj2HwyhYDTRp", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 60 - } - ], - "name": "August '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", - "total": 31 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/items", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" - }, - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", - "id": "6B5dmWX7pK2LHHtS6ph265", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 60 - } - ], - "name": "Discover Weekly Archive", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", - "total": 1434 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/items", - "total": 1434 - }, - "type": "playlist", - "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" - }, - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", - "id": "0ISThPpDv4JBNeHdptcK6i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", - "width": 60 - } - ], - "name": "Dance vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", - "total": 20 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/items", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" - }, - { - "collaborative": true, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" - }, - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", - "id": "2ElmM8s9Um1XSP07hADX9s", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 60 - } - ], - "name": "goeien numertjs", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", - "total": 62 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/items", - "total": 62 - }, - "type": "playlist", - "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" - }, - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", - "id": "0DRUBqBUSFJH1a7FvBIsGg", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 60 - } - ], - "name": "Summer vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", - "total": 13 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/items", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" - }, - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", - "id": "4PSXSX9WhxdjAzSjU175od", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 60 - } - ], - "name": "July '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", - "total": 31 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/items", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" - }, - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", - "id": "1XKSZRcsYP6VTkObunDIjQ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 60 - } - ], - "name": "June '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", - "total": 50 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/items", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" - }, - { - "collaborative": false, - "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" - }, - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", - "id": "3uCD1EyW3JRx8SV1QnA3Zm", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", - "width": null - } - ], - "name": "GTA Cayo Perico Beach Party: Keinemusik Set", - "owner": { - "display_name": "Austin Martinez", - "external_urls": { - "spotify": "https://open.spotify.com/user/127651589" - }, - "href": "https://api.spotify.com/v1/users/127651589", - "id": "127651589", - "type": "user", - "uri": "spotify:user:127651589" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", - "total": 26 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/items", - "total": 26 - }, - "type": "playlist", - "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" - }, - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", - "id": "3yPujxZ9OiB4By8COZaxaK", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", - "width": 60 - } - ], - "name": "May '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", - "total": 64 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/items", - "total": 64 - }, - "type": "playlist", - "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" - }, - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", - "id": "4A31OO75jaLCV2r7bvbQUa", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 60 - } - ], - "name": "April '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", - "total": 49 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/items", - "total": 49 - }, - "type": "playlist", - "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" - }, - { - "collaborative": false, - "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" - }, - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", - "id": "6JbGAAe70bKTA3yfddjWTK", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", - "width": null - } - ], - "name": "BASS BOOSTED CAR MUSIC 2023", - "owner": { - "display_name": "LIZOT", - "external_urls": { - "spotify": "https://open.spotify.com/user/max.kleinschmidt" - }, - "href": "https://api.spotify.com/v1/users/max.kleinschmidt", - "id": "max.kleinschmidt", - "type": "user", - "uri": "spotify:user:max.kleinschmidt" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", - "total": 47 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/items", - "total": 47 - }, - "type": "playlist", - "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" - }, - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", - "id": "6lVbphMrnxl1vIlfPhdA8i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 60 - } - ], - "name": "March '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", - "total": 36 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/items", - "total": 36 - }, - "type": "playlist", - "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" - }, - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", - "id": "3l0iA85qv43y9aMWztVIHu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 60 - } - ], - "name": "February '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", - "total": 27 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/items", - "total": 27 - }, - "type": "playlist", - "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" - }, - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", - "id": "2jp4GK1k1l7I1X67f2EbmD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", - "width": 60 - } - ], - "name": "January '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", - "total": 34 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/items", - "total": 34 - }, - "type": "playlist", - "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" - }, - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", - "id": "027kb6scBKg9y9dE5nPPTv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 60 - } - ], - "name": "December '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", - "total": 28 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/items", - "total": 28 - }, - "type": "playlist", - "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" - }, - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", - "id": "1lX3M3MvpNmQGzuh7tVi15", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 60 - } - ], - "name": "November '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", - "total": 32 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/items", - "total": 32 - }, - "type": "playlist", - "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6qGlky0reWcIeMAz70W8fd" - }, - "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd", - "id": "6qGlky0reWcIeMAz70W8fd", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", - "width": 60 - } - ], - "name": "October '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAJJ6I6Itv30mFoGlx1ZWKc0I40cME", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/tracks", - "total": 35 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/items", - "total": 35 - }, - "type": "playlist", - "uri": "spotify:playlist:6qGlky0reWcIeMAz70W8fd" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0RyuPsj7lVf8NTQlLnH3j0" - }, - "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0", - "id": "0RyuPsj7lVf8NTQlLnH3j0", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8412a6b60909be15810cf163c8", - "width": null - } - ], - "name": "Tones and I and I", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA4LicILuoxQI0vQ3sHt3FqsRHU5+", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/tracks", - "total": 25 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/items", - "total": 25 - }, - "type": "playlist", - "uri": "spotify:playlist:0RyuPsj7lVf8NTQlLnH3j0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7nXa5Ki4rYpTdkymKP9FaX" - }, - "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX", - "id": "7nXa5Ki4rYpTdkymKP9FaX", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", - "width": 60 - } - ], - "name": "September '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAH8Ic4YdKV/m3GHQ6NR1rA1MmupYc", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/tracks", - "total": 30 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/items", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:7nXa5Ki4rYpTdkymKP9FaX" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0cr5tOok6jV1LbxRW3Q1N7" - }, - "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7", - "id": "0cr5tOok6jV1LbxRW3Q1N7", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", - "width": 60 - } - ], - "name": "August '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAINvOu3RTd6/L2JNcOmvga6vYW+N6", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/tracks", - "total": 31 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/items", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:0cr5tOok6jV1LbxRW3Q1N7" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2OCmZ2TQS3I1t03liWGkKS" - }, - "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS", - "id": "2OCmZ2TQS3I1t03liWGkKS", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", - "width": 60 - } - ], - "name": "July '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAPbe/75GjdiboQ8NQHoSjBc6HWWSy", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/tracks", - "total": 60 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/items", - "total": 60 - }, - "type": "playlist", - "uri": "spotify:playlist:2OCmZ2TQS3I1t03liWGkKS" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5O4UBQXD3A6FrZ9crDNfiC" - }, - "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC", - "id": "5O4UBQXD3A6FrZ9crDNfiC", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02722206ae6845cdbbb4ed5e44", - "width": null - } - ], - "name": "Juni '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAn6jyYPE1Rydis2Aw912enTZzyzT", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/tracks", - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/items", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:5O4UBQXD3A6FrZ9crDNfiC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4ncsy40OjpUIDhbXzi7BR4" - }, - "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4", - "id": "4ncsy40OjpUIDhbXzi7BR4", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", - "width": 60 - } - ], - "name": "June '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAALjpQDG7JUhg4XF64j36IVHVh6DmK", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/tracks", - "total": 45 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/items", - "total": 45 - }, - "type": "playlist", - "uri": "spotify:playlist:4ncsy40OjpUIDhbXzi7BR4" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6DSDjystyVtnkfdsoANXu0" - }, - "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0", - "id": "6DSDjystyVtnkfdsoANXu0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", - "width": 60 - } - ], - "name": "Disco Vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACNeSMD6hLdkSArDZihVm9W9X94kw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/tracks", - "total": 6 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/items", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:6DSDjystyVtnkfdsoANXu0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2jvlY5A7LXMtJjQFAZpkER" - }, - "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER", - "id": "2jvlY5A7LXMtJjQFAZpkER", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", - "width": 60 - } - ], - "name": "May '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAALOTM51RP7q2tcb0KZvUn5wBJYing", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/tracks", - "total": 43 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/items", - "total": 43 - }, - "type": "playlist", - "uri": "spotify:playlist:2jvlY5A7LXMtJjQFAZpkER" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/7j2y0Baus5KEznyrb9P7Hh" - }, - "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh", - "id": "7j2y0Baus5KEznyrb9P7Hh", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", - "width": 60 - } - ], - "name": "funk wav bounces vol 2", - "owner": { - "display_name": "angelarbarnes", - "external_urls": { - "spotify": "https://open.spotify.com/user/angelarbarnes" - }, - "href": "https://api.spotify.com/v1/users/angelarbarnes", - "id": "angelarbarnes", - "type": "user", - "uri": "spotify:user:angelarbarnes" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAwnmqbrq34IfUqN5UdZBCYOxnJW9i", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/tracks", - "total": 161 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/items", - "total": 161 - }, - "type": "playlist", - "uri": "spotify:playlist:7j2y0Baus5KEznyrb9P7Hh" + "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48", + "limit": 48, + "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 94, + "items": [ + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" + }, + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX", + "id": "1Cp6VQCKf2VL4sP09jN9oX", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": null + } + ], + "name": "To find", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Wsgrrb7PCORhHq5L7wF0d" + }, + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d", + "id": "0Wsgrrb7PCORhHq5L7wF0d", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0204290e7559226bf75ac34da8", + "width": null + } + ], + "name": "Repeat ones", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA9Or/3CAEwspEWBNRjmXsGtIRpiq", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0Wsgrrb7PCORhHq5L7wF0d/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:0Wsgrrb7PCORhHq5L7wF0d" + }, + { + "collaborative": false, + "description": "New playlist description", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" + }, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", + "id": "2dGgoMPWpapXYA6rX7ZbbB", + "images": null, + "name": "New Playlist", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAfu2PYguJO6XYV1gFlnjUp0umkry", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", + "total": 0 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/items", + "total": 0 + }, + "type": "playlist", + "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB" + }, + { + "collaborative": true, + "description": "Updated playlist description", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" + }, + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", + "id": "4hQFqB1AtOpzsAv01E8n6c", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983", + "width": null + } + ], + "name": "Updated Playlist Name2", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" + }, + { + "collaborative": false, + "description": "A musical time capsule from the past has been unsealed\u2026!", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2G2eo5DxAtxLu7aNGVvNpY" + }, + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY", + "id": "2G2eo5DxAtxLu7aNGVvNpY", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8416264ef6071da49cbe93a951", + "width": null + } + ], + "name": "My 2024 Playlist in a Bottle", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA49BO4ePrhQ9Y7ENMXmDik23Vv27", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2G2eo5DxAtxLu7aNGVvNpY/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:2G2eo5DxAtxLu7aNGVvNpY" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" + }, + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", + "id": "5t75uJ5vBvEdbbvs5uIqXJ", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", + "width": null + } + ], + "name": "Sweet", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null + } + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACAnbhCSBgmOCZb+KmWOAhPdGgQDl", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", + "total": 3 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/items", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" + }, + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", + "id": "4WkWJ0EjHEFASDevhM8oPw", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", + "width": null + } + ], + "name": "Hyper", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" + }, + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", + "id": "1RHirWgH1weMsBLi4KOK9d", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 60 } - ] + ], + "name": "Ain\u2019t got shit on me", + "owner": { + "display_name": "Rensie", + "external_urls": { + "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" + }, + "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", + "id": "317g2sbpe3ccycu45fes6lfr5lpe", + "type": "user", + "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", + "total": 30 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/items", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" + }, + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", + "id": "2ZfissHhjQnhlmD54h6elH", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0200295a5d7ed6dd3eccb60364ab67616d00001e02723d4df900fd02eff83579d9ab67616d00001e027f8859341a395010424f106bab67616d00001e02c506dbc3f05d3ce4daf355c4", + "width": 60 + } + ], + "name": "Billie (interlude)", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", + "total": 7 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/items", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" + }, + { + "collaborative": false, + "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" + }, + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", + "id": "1vOHEgZ5UszkWycPjnG2Uo", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", + "width": null + } + ], + "name": "Forza Horizon 5 Bass Arena", + "owner": { + "display_name": "SylveonTribe", + "external_urls": { + "spotify": "https://open.spotify.com/user/rwilming" + }, + "href": "https://api.spotify.com/v1/users/rwilming", + "id": "rwilming", + "type": "user", + "uri": "spotify:user:rwilming" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", + "total": 17 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/items", + "total": 17 + }, + "type": "playlist", + "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" + }, + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", + "id": "0Jgs7FxHX86twpgCDehAHv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e02a056a29ccd190522d6e64114ab67616d00001e02d0e28d91b4de74babd1908a9ab67616d00001e02e729e0662930665af38db5ad", + "width": 60 + } + ], + "name": "Cr\u00e8me", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", + "total": 6 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/items", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" + }, + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", + "id": "6fHmmdjd2Urd7DAhb4bqOB", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e025958d5d767c63fcf27c20c9cab67616d00001e0288fed14b936c38007a302413ab67616d00001e02936563d574a962c9e59afda4ab67616d00001e02ab37ab7ce23fb1f13c6c5866", + "width": 60 + } + ], + "name": "My Shazam Tracks", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAABWHcOmMJhCMpNqc5zVozVx9Lbcnk4", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", + "total": 532 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/items", + "total": 532 + }, + "type": "playlist", + "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" + }, + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", + "id": "5H2U7tZb9dMSHPwi20XcuD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021c7f9645cc7b97312fe00fb9ab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02f677c5754726a2eb54c807feab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 60 + } + ], + "name": "Likes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJKzTbmZHqmOUqQe1xOWb4eZgf1n/", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", + "total": 4276 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/items", + "total": 4276 + }, + "type": "playlist", + "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" + }, + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", + "id": "709T4OzANnUi2lKQLlVkrE", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0226168325581434cdbfcf0f2aab67616d00001e02336a313426983a122d8ed70cab67616d00001e029b90e4ccf55c0a23a13f4eaeab67616d00001e02d3a20da9371b8e8624fd047b", + "width": 60 + } + ], + "name": "March '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", + "total": 4 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/items", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" + }, + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", + "id": "57ZuuAVl0eAZvhisoFP3SC", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027c693d6ed6dff0d48cf15c23ab67616d00001e02c70a41a26e020661d61c05be", + "width": 60 + } + ], + "name": "February '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", + "total": 20 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/items", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" + }, + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", + "id": "4OI1xDCLFlEcfgaeyowpEu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 60 + } + ], + "name": "January '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", + "total": 4 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/items", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" + }, + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", + "id": "4NsY2DKzQIjaajal5L25Kt", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e0290eb2694488164403ad812e9ab67616d00001e02d2d57ba12d531fc8eaaf49cd", + "width": 60 + } + ], + "name": "December '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", + "total": 7 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/items", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" + }, + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", + "id": "5dV0IeLCysOP6qEDGzhHw0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 60 + } + ], + "name": "November '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", + "total": 13 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/items", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" + }, + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", + "id": "40bvnxNQlivxZ02DmDzNxy", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e0276fe2ba0664a6f5cce2d0ac6ab67616d00001e02be6df8bb79d67c727d938f4a", + "width": 60 + } + ], + "name": "October '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", + "total": 9 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/items", + "total": 9 + }, + "type": "playlist", + "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" + }, + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", + "id": "2ExZs1G4AOluuEwg3q5M1v", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02548f06ce82f36337bac46e21ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 60 + } + ], + "name": "September '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", + "total": 19 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/items", + "total": 19 + }, + "type": "playlist", + "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" + }, + { + "collaborative": false, + "description": "de soms niet zo casual weird vibe playlist", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" + }, + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", + "id": "4jNUJLnkZJ32nuFE1PjkGu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021308d479a61f2a3b088a5708ab67616d00001e022ffc2c580b6595a3e675a730ab67616d00001e02335092e5a1317f2ee9d701d7ab67616d00001e02395ee31df8ad9108f5775b1c", + "width": 60 + } + ], + "name": "Slumpm\u00e4ssiga", + "owner": { + "display_name": "leanne", + "external_urls": { + "spotify": "https://open.spotify.com/user/xleanne_" + }, + "href": "https://api.spotify.com/v1/users/xleanne_", + "id": "xleanne_", + "type": "user", + "uri": "spotify:user:xleanne_" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", + "total": 107 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/items", + "total": 107 + }, + "type": "playlist", + "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" + }, + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", + "id": "700dVjBihCDj2HwyhYDTRp", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e02c0545aaaffd1560eec25b5a1ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 60 + } + ], + "name": "August '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" + }, + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", + "id": "6B5dmWX7pK2LHHtS6ph265", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02d03de263a7e4554713b9a77fab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 60 + } + ], + "name": "Discover Weekly Archive", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", + "total": 1434 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/items", + "total": 1434 + }, + "type": "playlist", + "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" + }, + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", + "id": "0ISThPpDv4JBNeHdptcK6i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204983fd825ffccc2828f5f5bab67616d00001e02231b8bf75d17c6a4d6770015ab67616d00001e027a890e1103aa7e8304fc062bab67616d00001e02bffd2fc0fd4c3b09d3cd2616", + "width": 60 + } + ], + "name": "Dance vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", + "total": 20 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/items", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" + }, + { + "collaborative": true, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" + }, + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", + "id": "2ElmM8s9Um1XSP07hADX9s", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 60 + } + ], + "name": "goeien numertjs", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", + "total": 62 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/items", + "total": 62 + }, + "type": "playlist", + "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" + }, + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", + "id": "0DRUBqBUSFJH1a7FvBIsGg", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 60 + } + ], + "name": "Summer vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", + "total": 13 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/items", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" + }, + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", + "id": "4PSXSX9WhxdjAzSjU175od", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02dc806722f6802a8ea9953c89ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 60 + } + ], + "name": "July '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" + }, + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", + "id": "1XKSZRcsYP6VTkObunDIjQ", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 60 + } + ], + "name": "June '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", + "total": 50 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/items", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" + }, + { + "collaborative": false, + "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" + }, + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", + "id": "3uCD1EyW3JRx8SV1QnA3Zm", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", + "width": null + } + ], + "name": "GTA Cayo Perico Beach Party: Keinemusik Set", + "owner": { + "display_name": "Austin Martinez", + "external_urls": { + "spotify": "https://open.spotify.com/user/127651589" + }, + "href": "https://api.spotify.com/v1/users/127651589", + "id": "127651589", + "type": "user", + "uri": "spotify:user:127651589" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", + "total": 26 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/items", + "total": 26 + }, + "type": "playlist", + "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" + }, + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", + "id": "3yPujxZ9OiB4By8COZaxaK", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02de26b55f9c67f6728d871406", + "width": 60 + } + ], + "name": "May '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", + "total": 64 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/items", + "total": 64 + }, + "type": "playlist", + "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" + }, + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", + "id": "4A31OO75jaLCV2r7bvbQUa", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 60 + } + ], + "name": "April '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", + "total": 49 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/items", + "total": 49 + }, + "type": "playlist", + "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" + }, + { + "collaborative": false, + "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" + }, + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", + "id": "6JbGAAe70bKTA3yfddjWTK", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", + "width": null + } + ], + "name": "BASS BOOSTED CAR MUSIC 2023", + "owner": { + "display_name": "LIZOT", + "external_urls": { + "spotify": "https://open.spotify.com/user/max.kleinschmidt" + }, + "href": "https://api.spotify.com/v1/users/max.kleinschmidt", + "id": "max.kleinschmidt", + "type": "user", + "uri": "spotify:user:max.kleinschmidt" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", + "total": 47 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/items", + "total": 47 + }, + "type": "playlist", + "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" + }, + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", + "id": "6lVbphMrnxl1vIlfPhdA8i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02a8316bd5ce0a8cf6bead17f2ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 60 + } + ], + "name": "March '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", + "total": 36 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/items", + "total": 36 + }, + "type": "playlist", + "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" + }, + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", + "id": "3l0iA85qv43y9aMWztVIHu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 60 + } + ], + "name": "February '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", + "total": 27 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/items", + "total": 27 + }, + "type": "playlist", + "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" + }, + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", + "id": "2jp4GK1k1l7I1X67f2EbmD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02136d46f65c783bd9742dfc6dab67616d00001e0221b704f8cfa87252352a50cbab67616d00001e027506c963b821d3b508fb2261ab67616d00001e02808bcc3151a05dbd4805f340", + "width": 60 + } + ], + "name": "January '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", + "total": 34 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/items", + "total": 34 + }, + "type": "playlist", + "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" + }, + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", + "id": "027kb6scBKg9y9dE5nPPTv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 60 + } + ], + "name": "December '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", + "total": 28 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/items", + "total": 28 + }, + "type": "playlist", + "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" + }, + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", + "id": "1lX3M3MvpNmQGzuh7tVi15", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02adb6e18f5d394f7e5fc1b01dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 60 + } + ], + "name": "November '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", + "total": 32 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/items", + "total": 32 + }, + "type": "playlist", + "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6qGlky0reWcIeMAz70W8fd" + }, + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd", + "id": "6qGlky0reWcIeMAz70W8fd", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0205ad046dd5d98362704d5f0dab67616d00001e029e3ffbc9245852e20a4d0c83ab67616d00001e02bb3c162ddba09bfba12199eaab67616d00001e02bcd0dda21a3a319df932d203", + "width": 60 + } + ], + "name": "October '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJJ6I6Itv30mFoGlx1ZWKc0I40cME", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/tracks", + "total": 35 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6qGlky0reWcIeMAz70W8fd/items", + "total": 35 + }, + "type": "playlist", + "uri": "spotify:playlist:6qGlky0reWcIeMAz70W8fd" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0RyuPsj7lVf8NTQlLnH3j0" + }, + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0", + "id": "0RyuPsj7lVf8NTQlLnH3j0", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8412a6b60909be15810cf163c8", + "width": null + } + ], + "name": "Tones and I and I", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA4LicILuoxQI0vQ3sHt3FqsRHU5+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/tracks", + "total": 25 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0RyuPsj7lVf8NTQlLnH3j0/items", + "total": 25 + }, + "type": "playlist", + "uri": "spotify:playlist:0RyuPsj7lVf8NTQlLnH3j0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/7nXa5Ki4rYpTdkymKP9FaX" + }, + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX", + "id": "7nXa5Ki4rYpTdkymKP9FaX", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02093275e675037dda1a37f73aab67616d00001e0245ec1340ea4b91a1f00a40abab67616d00001e025929b628a2e83996c4591519ab67616d00001e02ed4b6d22cb8de1aef4dc1927", + "width": 60 + } + ], + "name": "September '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAH8Ic4YdKV/m3GHQ6NR1rA1MmupYc", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/tracks", + "total": 30 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/7nXa5Ki4rYpTdkymKP9FaX/items", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:7nXa5Ki4rYpTdkymKP9FaX" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0cr5tOok6jV1LbxRW3Q1N7" + }, + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7", + "id": "0cr5tOok6jV1LbxRW3Q1N7", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0225180571abce9472f61bd722ab67616d00001e022fdadd6e64e069ee6c13a373ab67616d00001e023e0d8f5017fe3e6d6fb0f776ab67616d00001e02ab6e4b74b1ab1ce2dc6e7ca6", + "width": 60 + } + ], + "name": "August '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAINvOu3RTd6/L2JNcOmvga6vYW+N6", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/tracks", + "total": 31 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/0cr5tOok6jV1LbxRW3Q1N7/items", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:0cr5tOok6jV1LbxRW3Q1N7" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2OCmZ2TQS3I1t03liWGkKS" + }, + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS", + "id": "2OCmZ2TQS3I1t03liWGkKS", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0211b32bddec78cb96bcd8154bab67616d00001e0252e99b3edb5e6eee37bb246fab67616d00001e02cf562e0e90b0a28cb571775fab67616d00001e02ec3d15eab5bd77027abc4b23", + "width": 60 + } + ], + "name": "July '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAPbe/75GjdiboQ8NQHoSjBc6HWWSy", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/tracks", + "total": 60 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2OCmZ2TQS3I1t03liWGkKS/items", + "total": 60 + }, + "type": "playlist", + "uri": "spotify:playlist:2OCmZ2TQS3I1t03liWGkKS" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5O4UBQXD3A6FrZ9crDNfiC" + }, + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC", + "id": "5O4UBQXD3A6FrZ9crDNfiC", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02722206ae6845cdbbb4ed5e44", + "width": null + } + ], + "name": "Juni '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAn6jyYPE1Rydis2Aw912enTZzyzT", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/tracks", + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/5O4UBQXD3A6FrZ9crDNfiC/items", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:5O4UBQXD3A6FrZ9crDNfiC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4ncsy40OjpUIDhbXzi7BR4" + }, + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4", + "id": "4ncsy40OjpUIDhbXzi7BR4", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0210c7ffb39d047bb532ba4dacab67616d00001e021a4c1c9b3113ee5dedf009c5ab67616d00001e0259d1b5794cefd3e7e86a775dab67616d00001e025cd88ee55eaa0c94f0f5e7c2", + "width": 60 + } + ], + "name": "June '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAALjpQDG7JUhg4XF64j36IVHVh6DmK", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/tracks", + "total": 45 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/4ncsy40OjpUIDhbXzi7BR4/items", + "total": 45 + }, + "type": "playlist", + "uri": "spotify:playlist:4ncsy40OjpUIDhbXzi7BR4" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6DSDjystyVtnkfdsoANXu0" + }, + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0", + "id": "6DSDjystyVtnkfdsoANXu0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022282cf1bf4b5eb5a6ee67f6eab67616d00001e0264ff626ae62af9867c4ee2e1ab67616d00001e0288baa83a6c7bc59e18b74e79ab67616d00001e02dd03ba4ad12beff6aed2d13c", + "width": 60 + } + ], + "name": "Disco Vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACNeSMD6hLdkSArDZihVm9W9X94kw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/tracks", + "total": 6 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/6DSDjystyVtnkfdsoANXu0/items", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:6DSDjystyVtnkfdsoANXu0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jvlY5A7LXMtJjQFAZpkER" + }, + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER", + "id": "2jvlY5A7LXMtJjQFAZpkER", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0203bf634fe9526dfcc79f8526ab67616d00001e027058c5d53a78507ff4a666fbab67616d00001e02d766fd9e96ce4be7776759a4ab67616d00001e02db6219fb4ee7ceceaf41e769", + "width": 60 + } + ], + "name": "May '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAALOTM51RP7q2tcb0KZvUn5wBJYing", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/tracks", + "total": 43 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/2jvlY5A7LXMtJjQFAZpkER/items", + "total": 43 + }, + "type": "playlist", + "uri": "spotify:playlist:2jvlY5A7LXMtJjQFAZpkER" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/7j2y0Baus5KEznyrb9P7Hh" + }, + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh", + "id": "7j2y0Baus5KEznyrb9P7Hh", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02175c577a61aa13d4fb4b6534ab67616d00001e0219842db9fce84f370835265cab67616d00001e022e92f776279eaf45d14a33fdab67616d00001e02ee1ae7d44f10961722736148", + "width": 60 + } + ], + "name": "funk wav bounces vol 2", + "owner": { + "display_name": "angelarbarnes", + "external_urls": { + "spotify": "https://open.spotify.com/user/angelarbarnes" + }, + "href": "https://api.spotify.com/v1/users/angelarbarnes", + "id": "angelarbarnes", + "type": "user", + "uri": "spotify:user:angelarbarnes" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAwnmqbrq34IfUqN5UdZBCYOxnJW9i", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/tracks", + "total": 161 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/7j2y0Baus5KEznyrb9P7Hh/items", + "total": 161 + }, + "type": "playlist", + "uri": "spotify:playlist:7j2y0Baus5KEznyrb9P7Hh" + } + ] } diff --git a/tests/fixtures/current_user_playlist_2.json b/tests/fixtures/current_user_playlist_2.json index 953a57d..90b999f 100644 --- a/tests/fixtures/current_user_playlist_2.json +++ b/tests/fixtures/current_user_playlist_2.json @@ -1,1966 +1,1966 @@ { - "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48&locale=en-US,en;q%3D0.5", - "limit": 48, - "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48&locale=en-US,en;q%3D0.5", - "offset": 0, - "previous": null, - "total": 111, - "items": [ - { - "collaborative": false, - "description": "You listened to freedom and vibing on Mondays in the morning. Here's some: melodic techno, house, fraternity, 130 bpm, doof doof and electric", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1", - "id": "37i9dQZF1EP6YuccBxUcC1", - "images": [ - { - "height": null, - "url": "https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg", - "width": null - } - ], - "name": "daylist • melodic techno house monday morning", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "AAAAAAAAAABk2EIIGQqKLD1fzg4cJNPW", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EP6YuccBxUcC1" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Cheyenne. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd", - "id": "37i9dQZF1EJvpyGjPopYtd", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg", - "width": null - } - ], - "name": "Cheyenne + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAB5VxMH9+Uucj60cxwQ1hP/", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJvpyGjPopYtd" - }, - { - "collaborative": false, - "description": "100% good vibes.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh", - "id": "37i9dQZF1DWYMroOc5KTTh", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2", - "width": null - } - ], - "name": "Serotonin", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "Zv8h8AAAAADjkIR1uih+iXplHwVe3RH7", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DWYMroOc5KTTh" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" - }, - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", - "id": "5t75uJ5vBvEdbbvs5uIqXJ", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", - "width": null - } - ], - "name": "Sweet", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" - }, - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", - "id": "0pM0KTMXM7K5qr3sL2DPw1", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": null - } - ], - "name": "Pain", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA1EpnaBVKgA8U/N/DhWkHB9jsoA1", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" - }, - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", - "id": "4WkWJ0EjHEFASDevhM8oPw", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", - "width": null - } - ], - "name": "Hyper", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Christel. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv", - "id": "37i9dQZF1EJwDEkXAeJkCv", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg", - "width": null - } - ], - "name": "Christel + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAAN3BwiC8g/3dZKnFCGe4eA", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJwDEkXAeJkCv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" - }, - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", - "id": "1RHirWgH1weMsBLi4KOK9d", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", - "width": 60 - } - ], - "name": "Ain’t got shit on me", - "owner": { - "display_name": "Rensie", - "external_urls": { - "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" - }, - "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", - "id": "317g2sbpe3ccycu45fes6lfr5lpe", - "type": "user", - "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and kosmik. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD", - "id": "37i9dQZF1EJDyIuS82b8FD", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg", - "width": null - } - ], - "name": "kosmik + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAADQO7myvn0ystLH2NNZd1rt", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJDyIuS82b8FD" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" - }, - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", - "id": "2ZfissHhjQnhlmD54h6elH", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", - "width": 60 - } - ], - "name": "Billie (interlude)", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" - }, - { - "collaborative": false, - "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" - }, - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", - "id": "1vOHEgZ5UszkWycPjnG2Uo", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", - "width": null - } - ], - "name": "Forza Horizon 5 Bass Arena", - "owner": { - "display_name": "SylveonTribe", - "external_urls": { - "spotify": "https://open.spotify.com/user/rwilming" - }, - "href": "https://api.spotify.com/v1/users/rwilming", - "id": "rwilming", - "type": "user", - "uri": "spotify:user:rwilming" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", - "total": 17 - }, - "type": "playlist", - "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" - }, - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", - "id": "4hQFqB1AtOpzsAv01E8n6c", - "images": null, - "name": "My Playlist #63", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAYPwcoknIxygt/qqqQmffBC6xjxY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", - "total": 0 - }, - "type": "playlist", - "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" - }, - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", - "id": "0Jgs7FxHX86twpgCDehAHv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", - "width": 60 - } - ], - "name": "Crème", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", - "total": 6 - }, - "type": "playlist", - "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" - }, - { - "collaborative": false, - "description": "Spotify Wrapped presents the songs that you loved most this year.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit", - "id": "37i9dQZF1F0sijgNaJdgit", - "images": [ - { - "height": null, - "url": "https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg", - "width": null - } - ], - "name": "Your Top Songs 2022", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "Y4jJ4gAAAACwtlsyYn1Mcj+djyNdzcd5", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit/tracks", - "total": 98 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1F0sijgNaJdgit" - }, - { - "collaborative": false, - "description": "The UK's biggest rock playlist. Cover: Circa Waves", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT", - "id": "37i9dQZF1DX4DZAVUAwHMT", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464", - "width": null - } - ], - "name": "The Rock List", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#ffffff", - "public": true, - "snapshot_id": "ZwALKQAAAADv+NljetLGFE9m+gYkVvpz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT/tracks", - "total": 80 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX4DZAVUAwHMT" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" - }, - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", - "id": "6fHmmdjd2Urd7DAhb4bqOB", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", - "width": 60 - } - ], - "name": "My Shazam Tracks", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAABFo0uvxASD5waHn+QvHuUxhTc3N5U", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", - "total": 466 - }, - "type": "playlist", - "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" - }, - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", - "id": "5H2U7tZb9dMSHPwi20XcuD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", - "width": 60 - } - ], - "name": "Likes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI60v6rt9ZTeTtVYYj2bqOxeL7C//", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", - "total": 4275 - }, - "type": "playlist", - "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" - }, - { - "collaborative": false, - "description": "Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc", - "id": "37i9dQZEVXcGYKTerf9omc", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==", - "width": null - } - ], - "name": "Discover Weekly", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAAAkVTlDM0zEvttx7VRAm5um", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXcGYKTerf9omc" - }, - { - "collaborative": false, - "description": "Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe", - "id": "37i9dQZEVXbsfxNSCNXcqe", - "images": [ - { - "height": null, - "url": "https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en", - "width": null - } - ], - "name": "Release Radar", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAACoAk1nSBcNqaIU4MZ2K0QY", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe/tracks", - "total": 30 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZEVXbsfxNSCNXcqe" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" - }, - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", - "id": "709T4OzANnUi2lKQLlVkrE", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", - "width": 60 - } - ], - "name": "March '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" - }, - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", - "id": "57ZuuAVl0eAZvhisoFP3SC", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", - "width": 60 - } - ], - "name": "February '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" - }, - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", - "id": "4OI1xDCLFlEcfgaeyowpEu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", - "width": 60 - } - ], - "name": "January '22", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", - "total": 4 - }, - "type": "playlist", - "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" - }, - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", - "id": "4NsY2DKzQIjaajal5L25Kt", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", - "width": 60 - } - ], - "name": "December '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", - "total": 7 - }, - "type": "playlist", - "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" - }, - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", - "id": "5dV0IeLCysOP6qEDGzhHw0", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", - "width": 60 - } - ], - "name": "November '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" - }, - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", - "id": "40bvnxNQlivxZ02DmDzNxy", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", - "width": 60 - } - ], - "name": "October '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", - "total": 9 - }, - "type": "playlist", - "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" - }, - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", - "id": "2ExZs1G4AOluuEwg3q5M1v", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 60 - } - ], - "name": "September '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", - "total": 19 - }, - "type": "playlist", - "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" - }, - { - "collaborative": false, - "description": "de soms niet zo casual weird vibe playlist", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" - }, - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", - "id": "4jNUJLnkZJ32nuFE1PjkGu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", - "width": 60 - } - ], - "name": "Slumpmässiga", - "owner": { - "display_name": "xleanne_", - "external_urls": { - "spotify": "https://open.spotify.com/user/xleanne_" - }, - "href": "https://api.spotify.com/v1/users/xleanne_", - "id": "xleanne_", - "type": "user", - "uri": "spotify:user:xleanne_" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", - "total": 107 - }, - "type": "playlist", - "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" - }, - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", - "id": "700dVjBihCDj2HwyhYDTRp", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", - "width": 60 - } - ], - "name": "August '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" - }, - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", - "id": "6B5dmWX7pK2LHHtS6ph265", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", - "width": 60 - } - ], - "name": "Discover Weekly Archive", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", - "total": 1434 - }, - "type": "playlist", - "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" - }, - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", - "id": "0ISThPpDv4JBNeHdptcK6i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", - "width": 60 - } - ], - "name": "Dance vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", - "total": 20 - }, - "type": "playlist", - "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" - }, - { - "collaborative": true, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" - }, - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", - "id": "2ElmM8s9Um1XSP07hADX9s", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", - "width": 60 - } - ], - "name": "goeien numertjs", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", - "total": 62 - }, - "type": "playlist", - "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" - }, - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", - "id": "0DRUBqBUSFJH1a7FvBIsGg", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", - "width": 60 - } - ], - "name": "Summer vibes", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", - "total": 13 - }, - "type": "playlist", - "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" - }, - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", - "id": "4PSXSX9WhxdjAzSjU175od", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", - "width": 60 - } - ], - "name": "July '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", - "total": 31 - }, - "type": "playlist", - "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and xleanne_. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly", - "id": "37i9dQZF1EJADo3CBlOCly", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg", - "width": null - } - ], - "name": "xleanne_ + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAACzZrF5pD+dIx3K5ku7m+sL", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJADo3CBlOCly" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" - }, - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", - "id": "1XKSZRcsYP6VTkObunDIjQ", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", - "width": 60 - } - ], - "name": "June '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" - }, - { - "collaborative": false, - "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" - }, - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", - "id": "3uCD1EyW3JRx8SV1QnA3Zm", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", - "width": null - } - ], - "name": "GTA Cayo Perico Beach Party: Keinemusik Set", - "owner": { - "display_name": "Austin Martinez", - "external_urls": { - "spotify": "https://open.spotify.com/user/127651589" - }, - "href": "https://api.spotify.com/v1/users/127651589", - "id": "127651589", - "type": "user", - "uri": "spotify:user:127651589" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", - "total": 26 - }, - "type": "playlist", - "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" - }, - { - "collaborative": false, - "description": "A Blend of music for Joost and Marc. Updates daily.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS", - "id": "37i9dQZF1EJBr22FUQwTGS", - "images": [ - { - "height": null, - "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg", - "width": null - } - ], - "name": "Marc + Joost", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAAAAAADC04p942tJK4EpnONJnwVe", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS/tracks", - "total": 50 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EJBr22FUQwTGS" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" - }, - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", - "id": "3yPujxZ9OiB4By8COZaxaK", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", - "width": 60 - } - ], - "name": "May '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", - "total": 64 - }, - "type": "playlist", - "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" - }, - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", - "id": "4A31OO75jaLCV2r7bvbQUa", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", - "width": 60 - } - ], - "name": "April '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", - "total": 49 - }, - "type": "playlist", - "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" - }, - { - "collaborative": false, - "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" - }, - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", - "id": "6JbGAAe70bKTA3yfddjWTK", - "images": [ - { - "height": null, - "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", - "width": null - } - ], - "name": "BASS BOOSTED CAR MUSIC 2023", - "owner": { - "display_name": "LIZOT", - "external_urls": { - "spotify": "https://open.spotify.com/user/max.kleinschmidt" - }, - "href": "https://api.spotify.com/v1/users/max.kleinschmidt", - "id": "max.kleinschmidt", - "type": "user", - "uri": "spotify:user:max.kleinschmidt" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", - "total": 47 - }, - "type": "playlist", - "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" - }, - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", - "id": "6lVbphMrnxl1vIlfPhdA8i", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", - "width": 60 - } - ], - "name": "March '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", - "total": 36 - }, - "type": "playlist", - "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" - }, - { - "collaborative": false, - "description": "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV", - "id": "37i9dQZF1DX3FNkD0kDpDV", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337", - "width": null - } - ], - "name": "ADE Guest List", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": "#2d46b9", - "public": true, - "snapshot_id": "Zv9oQAAAAACxcnsp4MHz+vGui3hjvR6C", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV/tracks", - "total": 45 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1DX3FNkD0kDpDV" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" - }, - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", - "id": "3l0iA85qv43y9aMWztVIHu", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", - "width": 60 - } - ], - "name": "February '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", - "total": 27 - }, - "type": "playlist", - "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" - }, - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", - "id": "2jp4GK1k1l7I1X67f2EbmD", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", - "width": 60 - } - ], - "name": "January '21", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", - "total": 34 - }, - "type": "playlist", - "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" - }, - { - "collaborative": false, - "description": "The songs you loved most this year, all wrapped up.", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6" - }, - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6", - "id": "37i9dQZF1EM9phQOPnbiB6", - "images": [ - { - "height": null, - "url": "https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg", - "width": null - } - ], - "name": "Your Top Songs 2020", - "owner": { - "display_name": "Spotify", - "external_urls": { - "spotify": "https://open.spotify.com/user/spotify" - }, - "href": "https://api.spotify.com/v1/users/spotify", - "id": "spotify", - "type": "user", - "uri": "spotify:user:spotify" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AZiMSAAAAAC0sxW0bTTwGQC5/H0U1ZHz", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6/tracks", - "total": 100 - }, - "type": "playlist", - "uri": "spotify:playlist:37i9dQZF1EM9phQOPnbiB6" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" - }, - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", - "id": "027kb6scBKg9y9dE5nPPTv", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", - "width": 60 - } - ], - "name": "December '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", - "total": 28 - }, - "type": "playlist", - "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" - }, - { - "collaborative": false, - "description": "", - "external_urls": { - "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" - }, - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", - "id": "1lX3M3MvpNmQGzuh7tVi15", - "images": [ - { - "height": 640, - "url": "https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 640 - }, - { - "height": 300, - "url": "https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 300 - }, - { - "height": 60, - "url": "https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", - "width": 60 - } - ], - "name": "November '20", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", - "total": 32 - }, - "type": "playlist", - "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" + "href": "https://api.spotify.com/v1/users/1112264649/playlists?offset=0&limit=48&locale=en-US,en;q%3D0.5", + "limit": 48, + "next": "https://api.spotify.com/v1/users/1112264649/playlists?offset=48&limit=48&locale=en-US,en;q%3D0.5", + "offset": 0, + "previous": null, + "total": 111, + "items": [ + { + "collaborative": false, + "description": "You listened to freedom and vibing on Mondays in the morning. Here's some: melodic techno, house, fraternity, 130 bpm, doof doof and electric", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EP6YuccBxUcC1" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1", + "id": "37i9dQZF1EP6YuccBxUcC1", + "images": [ + { + "height": null, + "url": "https://daylist.spotifycdn.com/playlist-covers-mix/en/morning_default.jpg", + "width": null + } + ], + "name": "daylist • melodic techno house monday morning", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "AAAAAAAAAABk2EIIGQqKLD1fzg4cJNPW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EP6YuccBxUcC1/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EP6YuccBxUcC1" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Cheyenne. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJvpyGjPopYtd" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd", + "id": "37i9dQZF1EJvpyGjPopYtd", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-pink-en.jpg", + "width": null + } + ], + "name": "Cheyenne + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAB5VxMH9+Uucj60cxwQ1hP/", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJvpyGjPopYtd/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJvpyGjPopYtd" + }, + { + "collaborative": false, + "description": "100% good vibes.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DWYMroOc5KTTh" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh", + "id": "37i9dQZF1DWYMroOc5KTTh", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f0000000253a4d12c459c3cd2d265dfa2", + "width": null + } + ], + "name": "Serotonin", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "Zv8h8AAAAADjkIR1uih+iXplHwVe3RH7", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DWYMroOc5KTTh/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DWYMroOc5KTTh" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5t75uJ5vBvEdbbvs5uIqXJ" + }, + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ", + "id": "5t75uJ5vBvEdbbvs5uIqXJ", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e0205c6f48cceeb832778012b21", + "width": null + } + ], + "name": "Sweet", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABOQvUVBN2G4BB0mGopx4KP5uBnu+", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5t75uJ5vBvEdbbvs5uIqXJ/tracks", + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:5t75uJ5vBvEdbbvs5uIqXJ" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null + } + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA1EpnaBVKgA8U/N/DhWkHB9jsoA1", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks", + "total": 2 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4WkWJ0EjHEFASDevhM8oPw" + }, + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw", + "id": "4WkWJ0EjHEFASDevhM8oPw", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02d061f5bfae8d38558f3698c1", + "width": null + } + ], + "name": "Hyper", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAA2+SfV6gJVq8OgnZwG0ssjUTdfvu", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4WkWJ0EjHEFASDevhM8oPw/tracks", + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:4WkWJ0EjHEFASDevhM8oPw" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Christel. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJwDEkXAeJkCv" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv", + "id": "37i9dQZF1EJwDEkXAeJkCv", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-forest-pink-en.jpg", + "width": null + } + ], + "name": "Christel + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAAN3BwiC8g/3dZKnFCGe4eA", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJwDEkXAeJkCv/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJwDEkXAeJkCv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1RHirWgH1weMsBLi4KOK9d" + }, + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d", + "id": "1RHirWgH1weMsBLi4KOK9d", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022f3e58dd611d177973cb3a8cab67616d00001e0245cab965cb4639a4e669564aab67616d00001e029e83c93811be6abfad8649d6ab67616d00001e02e4c03429788f0aff263a5fc6", + "width": 60 + } + ], + "name": "Ain’t got shit on me", + "owner": { + "display_name": "Rensie", + "external_urls": { + "spotify": "https://open.spotify.com/user/317g2sbpe3ccycu45fes6lfr5lpe" + }, + "href": "https://api.spotify.com/v1/users/317g2sbpe3ccycu45fes6lfr5lpe", + "id": "317g2sbpe3ccycu45fes6lfr5lpe", + "type": "user", + "uri": "spotify:user:317g2sbpe3ccycu45fes6lfr5lpe" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIObZq+YDDwTjnpqp2AjyuHn8az3Z", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1RHirWgH1weMsBLi4KOK9d/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:1RHirWgH1weMsBLi4KOK9d" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and kosmik. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJDyIuS82b8FD" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD", + "id": "37i9dQZF1EJDyIuS82b8FD", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-maroon-red-en.jpg", + "width": null + } + ], + "name": "kosmik + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAADQO7myvn0ystLH2NNZd1rt", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJDyIuS82b8FD/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJDyIuS82b8FD" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ZfissHhjQnhlmD54h6elH" + }, + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH", + "id": "2ZfissHhjQnhlmD54h6elH", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f0e63e38a0ea92314ab9d7fab67616d00001e027622b889949b07f15c6b57e2ab67616d00001e02a871bc3a84418ad1240a5d4eab67616d00001e02f56d363d03630bf3ee50b705", + "width": 60 + } + ], + "name": "Billie (interlude)", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAClUPy5QailhNAJTG2FeUlNQlhCeC", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ZfissHhjQnhlmD54h6elH/tracks", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:2ZfissHhjQnhlmD54h6elH" + }, + { + "collaborative": false, + "description": "Missing: Metrik - Techtonic; GAJATE - Baile Funk", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1vOHEgZ5UszkWycPjnG2Uo" + }, + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo", + "id": "1vOHEgZ5UszkWycPjnG2Uo", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84dce297c9b2a3b46d3c0a41fb", + "width": null + } + ], + "name": "Forza Horizon 5 Bass Arena", + "owner": { + "display_name": "SylveonTribe", + "external_urls": { + "spotify": "https://open.spotify.com/user/rwilming" + }, + "href": "https://api.spotify.com/v1/users/rwilming", + "id": "rwilming", + "type": "user", + "uri": "spotify:user:rwilming" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAGJBy9g8BoxcGY9PlK235g29V5iDv", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1vOHEgZ5UszkWycPjnG2Uo/tracks", + "total": 17 + }, + "type": "playlist", + "uri": "spotify:playlist:1vOHEgZ5UszkWycPjnG2Uo" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4hQFqB1AtOpzsAv01E8n6c" + }, + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c", + "id": "4hQFqB1AtOpzsAv01E8n6c", + "images": null, + "name": "My Playlist #63", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAYPwcoknIxygt/qqqQmffBC6xjxY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4hQFqB1AtOpzsAv01E8n6c/tracks", + "total": 0 + }, + "type": "playlist", + "uri": "spotify:playlist:4hQFqB1AtOpzsAv01E8n6c" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0Jgs7FxHX86twpgCDehAHv" + }, + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv", + "id": "0Jgs7FxHX86twpgCDehAHv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e026c9556ea020144591559e3e3ab67616d00001e0285d230a79a0f0081bff1f102ab67616d00001e02e014060de62f2809a3d16ac7ab67616d00001e02eb9d3cba22cfa81c14fb8f0b", + "width": 60 + } + ], + "name": "Crème", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAB5JoBY6tdwVKDKeugz64oxGvXNX8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0Jgs7FxHX86twpgCDehAHv/tracks", + "total": 6 + }, + "type": "playlist", + "uri": "spotify:playlist:0Jgs7FxHX86twpgCDehAHv" + }, + { + "collaborative": false, + "description": "Spotify Wrapped presents the songs that you loved most this year.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1F0sijgNaJdgit" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit", + "id": "37i9dQZF1F0sijgNaJdgit", + "images": [ + { + "height": null, + "url": "https://wrapped-images.spotifycdn.com/image/yts-2022/default/your-top-songs-2022_default_en.jpg", + "width": null + } + ], + "name": "Your Top Songs 2022", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "Y4jJ4gAAAACwtlsyYn1Mcj+djyNdzcd5", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1F0sijgNaJdgit/tracks", + "total": 98 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1F0sijgNaJdgit" + }, + { + "collaborative": false, + "description": "The UK's biggest rock playlist. Cover: Circa Waves", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX4DZAVUAwHMT" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT", + "id": "37i9dQZF1DX4DZAVUAwHMT", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f00000002460587c8418f9e99ddfa0464", + "width": null + } + ], + "name": "The Rock List", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#ffffff", + "public": true, + "snapshot_id": "ZwALKQAAAADv+NljetLGFE9m+gYkVvpz", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX4DZAVUAwHMT/tracks", + "total": 80 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DX4DZAVUAwHMT" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6fHmmdjd2Urd7DAhb4bqOB" + }, + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB", + "id": "6fHmmdjd2Urd7DAhb4bqOB", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020389027010b78a5e7dce426bab67616d00001e022b8ac52203215122968d4d6aab67616d00001e029eec33b045d88f87b9b06e67ab67616d00001e02ce70170f863e670be6a3874c", + "width": 60 + } + ], + "name": "My Shazam Tracks", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAABFo0uvxASD5waHn+QvHuUxhTc3N5U", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6fHmmdjd2Urd7DAhb4bqOB/tracks", + "total": 466 + }, + "type": "playlist", + "uri": "spotify:playlist:6fHmmdjd2Urd7DAhb4bqOB" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5H2U7tZb9dMSHPwi20XcuD" + }, + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD", + "id": "5H2U7tZb9dMSHPwi20XcuD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020aa31b3fb95f3e6bc48312d9ab67616d00001e027adbe35f4bcb61b4e9aa910cab67616d00001e02be90598dc5b123eb550c6d51ab67616d00001e02fe8c4d2d61fa92202800947c", + "width": 60 + } + ], + "name": "Likes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI60v6rt9ZTeTtVYYj2bqOxeL7C//", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5H2U7tZb9dMSHPwi20XcuD/tracks", + "total": 4275 + }, + "type": "playlist", + "uri": "spotify:playlist:5H2U7tZb9dMSHPwi20XcuD" + }, + { + "collaborative": false, + "description": "Your weekly mixtape of fresh music. Enjoy new music and deep cuts picked for you. Updates every Monday.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZEVXcGYKTerf9omc" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc", + "id": "37i9dQZEVXcGYKTerf9omc", + "images": [ + { + "height": null, + "url": "https://newjams-images.scdn.co/image/ab676477000033ad/dt/v3/discover-weekly/MJeySCHFAx31LmEuBGrG55letD5TLIXTCpfiZIWMsjHdcjZvNf1UcE4luVIM0bpDom7FKHJoeHt974AcHaBpQ48B7uzwdGQSm9Owdb0FtNk=/MjA6NjQ6ODBUNTEtMDEtNA==", + "width": null + } + ], + "name": "Discover Weekly", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAAAkVTlDM0zEvttx7VRAm5um", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXcGYKTerf9omc/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZEVXcGYKTerf9omc" + }, + { + "collaborative": false, + "description": "Catch all the latest music from artists you follow, plus new singles picked for you. Updates every Friday.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZEVXbsfxNSCNXcqe" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe", + "id": "37i9dQZEVXbsfxNSCNXcqe", + "images": [ + { + "height": null, + "url": "https://newjams-images.scdn.co/image/ab67647800003f8a/dt/v3/release-radar/ab6761610000e5eb9e528993a2820267b97f6aae/en", + "width": null + } + ], + "name": "Release Radar", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAACoAk1nSBcNqaIU4MZ2K0QY", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZEVXbsfxNSCNXcqe/tracks", + "total": 30 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZEVXbsfxNSCNXcqe" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/709T4OzANnUi2lKQLlVkrE" + }, + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE", + "id": "709T4OzANnUi2lKQLlVkrE", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0212b78e0955d7be6bd6e9084aab67616d00001e02336a313426983a122d8ed70cab67616d00001e028fae0b49fa2872779be1e77cab67616d00001e029b90e4ccf55c0a23a13f4eae", + "width": 60 + } + ], + "name": "March '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABSHXFNYmStGaJrf8U+9GY1WQ0Smd", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/709T4OzANnUi2lKQLlVkrE/tracks", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:709T4OzANnUi2lKQLlVkrE" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/57ZuuAVl0eAZvhisoFP3SC" + }, + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC", + "id": "57ZuuAVl0eAZvhisoFP3SC", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02490a887b85a95378ea66b41dab67616d00001e026bb188bb70c9561e60de61cbab67616d00001e027f500193535d8fe6d4cb398fab67616d00001e02ca964f2c3c069b3fb9ec11be", + "width": 60 + } + ], + "name": "February '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFRabb1cD3tb9R4fPIyRjfbLFQitm", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/57ZuuAVl0eAZvhisoFP3SC/tracks", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:57ZuuAVl0eAZvhisoFP3SC" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4OI1xDCLFlEcfgaeyowpEu" + }, + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu", + "id": "4OI1xDCLFlEcfgaeyowpEu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0215893afacb5d2604085a9d8eab67616d00001e02356a689446b81073e1071987ab67616d00001e027f86c9158ee0a14faa484d53ab67616d00001e0295da52884fb152645273020d", + "width": 60 + } + ], + "name": "January '22", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABfwkH1uXlLrIxVPcZ4jdwbjUlYec", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4OI1xDCLFlEcfgaeyowpEu/tracks", + "total": 4 + }, + "type": "playlist", + "uri": "spotify:playlist:4OI1xDCLFlEcfgaeyowpEu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4NsY2DKzQIjaajal5L25Kt" + }, + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt", + "id": "4NsY2DKzQIjaajal5L25Kt", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021bfe2bbcc1f3e104459fef3cab67616d00001e025425fecb078325803cd33dc8ab67616d00001e02a0a1e3d999ccb049ab3af5eaab67616d00001e02d7d88c479133a202690899d6", + "width": 60 + } + ], + "name": "December '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACCA8BqKuDt6UH0mCm/3TnfPN9bpw", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4NsY2DKzQIjaajal5L25Kt/tracks", + "total": 7 + }, + "type": "playlist", + "uri": "spotify:playlist:4NsY2DKzQIjaajal5L25Kt" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/5dV0IeLCysOP6qEDGzhHw0" + }, + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0", + "id": "5dV0IeLCysOP6qEDGzhHw0", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02014392f7224d7765e698a904ab67616d00001e0217f6a7b8151062c09e7c8a8fab67616d00001e02ec8d2bf88ac5308f8b9b8dc8ab67616d00001e02f4a6ca892c6ed5a8e969e8a9", + "width": 60 + } + ], + "name": "November '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAADrN0arCi4wX8dU6Je1ZYFFG2K4jo", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/5dV0IeLCysOP6qEDGzhHw0/tracks", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:5dV0IeLCysOP6qEDGzhHw0" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/40bvnxNQlivxZ02DmDzNxy" + }, + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy", + "id": "40bvnxNQlivxZ02DmDzNxy", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d47ca87b7476af61dd4e502ab67616d00001e023780c2d97ecbd5fc0a4cf107ab67616d00001e02fa244f6c5c40c2052d4c5408ab67616d00001e02feeecb5afca011822a371efe", + "width": 60 + } + ], + "name": "October '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAACpp8xX673vpf+VyajcYJdAHUhKQN", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/40bvnxNQlivxZ02DmDzNxy/tracks", + "total": 9 + }, + "type": "playlist", + "uri": "spotify:playlist:40bvnxNQlivxZ02DmDzNxy" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ExZs1G4AOluuEwg3q5M1v" + }, + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v", + "id": "2ExZs1G4AOluuEwg3q5M1v", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020a097bf1204c74abd760e3aeab67616d00001e022f3a0b652f199fc7b3ff0cabab67616d00001e023c041e53cb5c38b6de03e758ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 60 + } + ], + "name": "September '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAFDnqOxyK2DMmmbFjt7I5ySII3OnD", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ExZs1G4AOluuEwg3q5M1v/tracks", + "total": 19 + }, + "type": "playlist", + "uri": "spotify:playlist:2ExZs1G4AOluuEwg3q5M1v" + }, + { + "collaborative": false, + "description": "de soms niet zo casual weird vibe playlist", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4jNUJLnkZJ32nuFE1PjkGu" + }, + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu", + "id": "4jNUJLnkZJ32nuFE1PjkGu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e02395ee31df8ad9108f5775b1cab67616d00001e0269a6e28f64890d2ed52d5094ab67616d00001e029433432ccc03bf5e6b7837d2ab67616d00001e02f2486b438645e97b523e4f90", + "width": 60 + } + ], + "name": "Slumpmässiga", + "owner": { + "display_name": "xleanne_", + "external_urls": { + "spotify": "https://open.spotify.com/user/xleanne_" + }, + "href": "https://api.spotify.com/v1/users/xleanne_", + "id": "xleanne_", + "type": "user", + "uri": "spotify:user:xleanne_" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAASAaQ9ZR0Kk0a2GD+NUAP2DfgqTid", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4jNUJLnkZJ32nuFE1PjkGu/tracks", + "total": 107 + }, + "type": "playlist", + "uri": "spotify:playlist:4jNUJLnkZJ32nuFE1PjkGu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/700dVjBihCDj2HwyhYDTRp" + }, + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp", + "id": "700dVjBihCDj2HwyhYDTRp", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e021d8b02b7c886f34c408f4ca0ab67616d00001e027b85c73badee55bc69c6ce66ab67616d00001e029071131306eee200e8de2783ab67616d00001e02f7fb699c69d6529d4495766d", + "width": 60 + } + ], + "name": "August '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIMxOgErYXRNVEEoQQh3RBcMlgpz2", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/700dVjBihCDj2HwyhYDTRp/tracks", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:700dVjBihCDj2HwyhYDTRp" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6B5dmWX7pK2LHHtS6ph265" + }, + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265", + "id": "6B5dmWX7pK2LHHtS6ph265", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0272a0322c6a1ff584ead1adc5ab67616d00001e02a91f9722dea90b3ac0d725daab67616d00001e02b98892f41cd5ab918c34daa9ab67616d00001e02ebea6d997f62d17e9c4eab6c", + "width": 60 + } + ], + "name": "Discover Weekly Archive", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAFmxwywmKeyw2ykACBaq/XgOpW7eUU", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6B5dmWX7pK2LHHtS6ph265/tracks", + "total": 1434 + }, + "type": "playlist", + "uri": "spotify:playlist:6B5dmWX7pK2LHHtS6ph265" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0ISThPpDv4JBNeHdptcK6i" + }, + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i", + "id": "0ISThPpDv4JBNeHdptcK6i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0293aa4d55db0e53466971c07fab67616d00001e02bffd2fc0fd4c3b09d3cd2616ab67616d00001e02c3647b02a2dba464fa7a739bab67616d00001e02f4956c3ceefc6fa1cffc6da6", + "width": 60 + } + ], + "name": "Dance vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAF3xuuTFC2OrUZwYf7K4tnMfsaf0N", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0ISThPpDv4JBNeHdptcK6i/tracks", + "total": 20 + }, + "type": "playlist", + "uri": "spotify:playlist:0ISThPpDv4JBNeHdptcK6i" + }, + { + "collaborative": true, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2ElmM8s9Um1XSP07hADX9s" + }, + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s", + "id": "2ElmM8s9Um1XSP07hADX9s", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f5b85c5d4a8131d01aca941ab67616d00001e0268c13496a915eea4d4325681ab67616d00001e02a91c10fe9472d9bd89802e5aab67616d00001e02c691f9d8b09e963e7935faab", + "width": 60 + } + ], + "name": "goeien numertjs", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQ1YIIUoOxc70iCjAaudAkDDb1p2J", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2ElmM8s9Um1XSP07hADX9s/tracks", + "total": 62 + }, + "type": "playlist", + "uri": "spotify:playlist:2ElmM8s9Um1XSP07hADX9s" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0DRUBqBUSFJH1a7FvBIsGg" + }, + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg", + "id": "0DRUBqBUSFJH1a7FvBIsGg", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e023d197fe39ea86e8b4ac05f28ab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e025486d91bd83f2c4e0b1669f5ab67616d00001e02e6d896d0369324af77f47e9a", + "width": 60 } - ] + ], + "name": "Summer vibes", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAD9aKoW5FG3O6NM2mBhzMZzcZQhGh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0DRUBqBUSFJH1a7FvBIsGg/tracks", + "total": 13 + }, + "type": "playlist", + "uri": "spotify:playlist:0DRUBqBUSFJH1a7FvBIsGg" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4PSXSX9WhxdjAzSjU175od" + }, + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od", + "id": "4PSXSX9WhxdjAzSjU175od", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e027c33cef24775c3780a9930f4ab67616d00001e029357f6851b075c6fb7b44f41ab67616d00001e02ef24c3fdbf856340d55cfeb2ab67616d00001e02fa091c156c618ffd26ed2356", + "width": 60 + } + ], + "name": "July '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIOwMEN9rLgafJ2ndIvaQejmBKzK3", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4PSXSX9WhxdjAzSjU175od/tracks", + "total": 31 + }, + "type": "playlist", + "uri": "spotify:playlist:4PSXSX9WhxdjAzSjU175od" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and xleanne_. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJADo3CBlOCly" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly", + "id": "37i9dQZF1EJADo3CBlOCly", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-royal-azure-en.jpg", + "width": null + } + ], + "name": "xleanne_ + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAACzZrF5pD+dIx3K5ku7m+sL", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJADo3CBlOCly/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJADo3CBlOCly" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1XKSZRcsYP6VTkObunDIjQ" + }, + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ", + "id": "1XKSZRcsYP6VTkObunDIjQ", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020902cf9a0391c16a5fa4f969ab67616d00001e0234b23957c8bf15277804a2aeab67616d00001e02577dd278fa34655ace27f2c5ab67616d00001e028ff16aeca5722fcced965cb8", + "width": 60 + } + ], + "name": "June '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMygu/hHO3ngMmH5s9SWLnjOPaYJZ", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1XKSZRcsYP6VTkObunDIjQ/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:1XKSZRcsYP6VTkObunDIjQ" + }, + { + "collaborative": false, + "description": "This is a playlist of some of the songs in the Keinemusik set during the beach party in the Cayo Perico mission in Grand Theft Auto 5 ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3uCD1EyW3JRx8SV1QnA3Zm" + }, + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm", + "id": "3uCD1EyW3JRx8SV1QnA3Zm", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da848e09c57d7b2ef2a17e853d4c", + "width": null + } + ], + "name": "GTA Cayo Perico Beach Party: Keinemusik Set", + "owner": { + "display_name": "Austin Martinez", + "external_urls": { + "spotify": "https://open.spotify.com/user/127651589" + }, + "href": "https://api.spotify.com/v1/users/127651589", + "id": "127651589", + "type": "user", + "uri": "spotify:user:127651589" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAILgHyU8L6YfuRuNeifYpOSFjc6Ay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3uCD1EyW3JRx8SV1QnA3Zm/tracks", + "total": 26 + }, + "type": "playlist", + "uri": "spotify:playlist:3uCD1EyW3JRx8SV1QnA3Zm" + }, + { + "collaborative": false, + "description": "A Blend of music for Joost and Marc. Updates daily.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EJBr22FUQwTGS" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS", + "id": "37i9dQZF1EJBr22FUQwTGS", + "images": [ + { + "height": null, + "url": "https://blend-playlist-covers.spotifycdn.com/v2/blend_DEFAULT-azure-yellow-en.jpg", + "width": null + } + ], + "name": "Marc + Joost", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAAAAAADC04p942tJK4EpnONJnwVe", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EJBr22FUQwTGS/tracks", + "total": 50 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EJBr22FUQwTGS" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3yPujxZ9OiB4By8COZaxaK" + }, + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK", + "id": "3yPujxZ9OiB4By8COZaxaK", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e022614c295a38ee782d093aa09ab67616d00001e0236e0535a12c22b83a6a59768ab67616d00001e024e587b1639b57a16e9161883ab67616d00001e02a1035156496a35002a9deeb5", + "width": 60 + } + ], + "name": "May '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAQQLd3S53NXqTS8ApC2f5BmZX88Ub", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3yPujxZ9OiB4By8COZaxaK/tracks", + "total": 64 + }, + "type": "playlist", + "uri": "spotify:playlist:3yPujxZ9OiB4By8COZaxaK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/4A31OO75jaLCV2r7bvbQUa" + }, + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa", + "id": "4A31OO75jaLCV2r7bvbQUa", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0204ef796699518264973fee48ab67616d00001e021e2057f92f53ad311ac934ddab67616d00001e0243b45e6fad695fb69d771075ab67616d00001e02ea427780debfc4faf793df19", + "width": 60 + } + ], + "name": "April '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAMkpQmpasdKd7sxVBjwbFfPtlQuCH", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/4A31OO75jaLCV2r7bvbQUa/tracks", + "total": 49 + }, + "type": "playlist", + "uri": "spotify:playlist:4A31OO75jaLCV2r7bvbQUa" + }, + { + "collaborative": false, + "description": "HYPERTECHNO | TECHNO | SLAP HOUSE | BRAZILIAN BASS | BASS HOUSE | EDM | BASS BOOSTED CAR MUSIC | FUTURE HOUSE | FUTURE BOUNCE | GYM MOTIVATION", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6JbGAAe70bKTA3yfddjWTK" + }, + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK", + "id": "6JbGAAe70bKTA3yfddjWTK", + "images": [ + { + "height": null, + "url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da849fa7c9ddef714003c524c89c", + "width": null + } + ], + "name": "BASS BOOSTED CAR MUSIC 2023", + "owner": { + "display_name": "LIZOT", + "external_urls": { + "spotify": "https://open.spotify.com/user/max.kleinschmidt" + }, + "href": "https://api.spotify.com/v1/users/max.kleinschmidt", + "id": "max.kleinschmidt", + "type": "user", + "uri": "spotify:user:max.kleinschmidt" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAEVKAeUtjFyV4KaDQCfKyokSERMrsh", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6JbGAAe70bKTA3yfddjWTK/tracks", + "total": 47 + }, + "type": "playlist", + "uri": "spotify:playlist:6JbGAAe70bKTA3yfddjWTK" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/6lVbphMrnxl1vIlfPhdA8i" + }, + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i", + "id": "6lVbphMrnxl1vIlfPhdA8i", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020678208f00e4111c88958bb9ab67616d00001e0216faab065323874331824083ab67616d00001e02979ee06e9685aff6ff000417ab67616d00001e02cf6a74cdef3c4e0d828c4057", + "width": 60 + } + ], + "name": "March '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAJZmeXYJPuucIlnmPwNBfWXWUO4dG", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/6lVbphMrnxl1vIlfPhdA8i/tracks", + "total": 36 + }, + "type": "playlist", + "uri": "spotify:playlist:6lVbphMrnxl1vIlfPhdA8i" + }, + { + "collaborative": false, + "description": "Unlock the Beats of ADE 2024! Prepare for an unforgettable experience as we spotlight the electrifying tracks from 2,500+ artists who will define this year's 1,000+ ADE events. This is your exclusive sneak peek into this years’ line-up! ", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1DX3FNkD0kDpDV" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV", + "id": "37i9dQZF1DX3FNkD0kDpDV", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67706f00000002f9923c344f94fc95547da337", + "width": null + } + ], + "name": "ADE Guest List", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": "#2d46b9", + "public": true, + "snapshot_id": "Zv9oQAAAAACxcnsp4MHz+vGui3hjvR6C", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1DX3FNkD0kDpDV/tracks", + "total": 45 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1DX3FNkD0kDpDV" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3l0iA85qv43y9aMWztVIHu" + }, + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu", + "id": "3l0iA85qv43y9aMWztVIHu", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0245951a69fe39a6e163122eabab67616d00001e02460771a72003ffccb35a568fab67616d00001e02927a9b11b73b0d238983065cab67616d00001e02fbe46d92ba0d5ca39d419f07", + "width": 60 + } + ], + "name": "February '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHEpGSRJ2tk9XKma5yfU+X0JHBbay", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3l0iA85qv43y9aMWztVIHu/tracks", + "total": 27 + }, + "type": "playlist", + "uri": "spotify:playlist:3l0iA85qv43y9aMWztVIHu" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2jp4GK1k1l7I1X67f2EbmD" + }, + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD", + "id": "2jp4GK1k1l7I1X67f2EbmD", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0236c95d8631f465e6898bccc8ab67616d00001e02808bcc3151a05dbd4805f340ab67616d00001e028cffb7c6c40759eaf8a5a142ab67616d00001e02a11119d93d213de96081c6e7", + "width": 60 + } + ], + "name": "January '21", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAI2CYzXdTK19s58FVBG+8+tlAqSJ8", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/2jp4GK1k1l7I1X67f2EbmD/tracks", + "total": 34 + }, + "type": "playlist", + "uri": "spotify:playlist:2jp4GK1k1l7I1X67f2EbmD" + }, + { + "collaborative": false, + "description": "The songs you loved most this year, all wrapped up.", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/37i9dQZF1EM9phQOPnbiB6" + }, + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6", + "id": "37i9dQZF1EM9phQOPnbiB6", + "images": [ + { + "height": null, + "url": "https://lineup-images.scdn.co/wrapped-2020-top100_DEFAULT-en.jpg", + "width": null + } + ], + "name": "Your Top Songs 2020", + "owner": { + "display_name": "Spotify", + "external_urls": { + "spotify": "https://open.spotify.com/user/spotify" + }, + "href": "https://api.spotify.com/v1/users/spotify", + "id": "spotify", + "type": "user", + "uri": "spotify:user:spotify" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AZiMSAAAAAC0sxW0bTTwGQC5/H0U1ZHz", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/37i9dQZF1EM9phQOPnbiB6/tracks", + "total": 100 + }, + "type": "playlist", + "uri": "spotify:playlist:37i9dQZF1EM9phQOPnbiB6" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/027kb6scBKg9y9dE5nPPTv" + }, + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv", + "id": "027kb6scBKg9y9dE5nPPTv", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e0217cc3111c640c8e15efee21fab67616d00001e021c8cb0a0bc1490aaa287db71ab67616d00001e02e2a6468a88f17315e33274b7ab67616d00001e02f49c98f285a7cebc07fe581c", + "width": 60 + } + ], + "name": "December '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAHf73XkyYH3mkS+z4ljCb1UDR/guI", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/027kb6scBKg9y9dE5nPPTv/tracks", + "total": 28 + }, + "type": "playlist", + "uri": "spotify:playlist:027kb6scBKg9y9dE5nPPTv" + }, + { + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1lX3M3MvpNmQGzuh7tVi15" + }, + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15", + "id": "1lX3M3MvpNmQGzuh7tVi15", + "images": [ + { + "height": 640, + "url": "https://mosaic.scdn.co/640/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 640 + }, + { + "height": 300, + "url": "https://mosaic.scdn.co/300/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 300 + }, + { + "height": 60, + "url": "https://mosaic.scdn.co/60/ab67616d00001e020f8c3812f2ce29f1feadcf94ab67616d00001e0229fd157c5178bd374375e34dab67616d00001e024e667c4d363b244d8ec17a9dab67616d00001e02d632291b4714c9b1a7ef2d02", + "width": 60 + } + ], + "name": "November '20", + "owner": { + "display_name": "Joost Lekkerkerker", + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAIY+yPId2tYordTc1Tly3Db405vMW", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1lX3M3MvpNmQGzuh7tVi15/tracks", + "total": 32 + }, + "type": "playlist", + "uri": "spotify:playlist:1lX3M3MvpNmQGzuh7tVi15" + } + ] } diff --git a/tests/fixtures/devices.json b/tests/fixtures/devices.json index bf4a275..e589d11 100644 --- a/tests/fixtures/devices.json +++ b/tests/fixtures/devices.json @@ -1,14 +1,14 @@ { - "devices": [ - { - "id": "21dac6b0e0a1f181870fdc9749b2656466557687", - "is_active": false, - "is_private_session": false, - "is_restricted": false, - "name": "DESKTOP-BKC5SIK", - "supports_volume": true, - "type": "Computer", - "volume_percent": 69 - } - ] + "devices": [ + { + "id": "21dac6b0e0a1f181870fdc9749b2656466557687", + "is_active": false, + "is_private_session": false, + "is_restricted": false, + "name": "DESKTOP-BKC5SIK", + "supports_volume": true, + "type": "Computer", + "volume_percent": 69 + } + ] } diff --git a/tests/fixtures/episode.json b/tests/fixtures/episode.json index ec5d0df..b181154 100644 --- a/tests/fixtures/episode.json +++ b/tests/fixtures/episode.json @@ -1,262 +1,262 @@ { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" + }, + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3o0RYoo5iOMKSmEbunsbvW", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 90000 }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "explicit": true, "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3o0RYoo5iOMKSmEbunsbvW", + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } ], "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", "languages": ["en-US"], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 90000 }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en-US"], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "total_episodes": 159, - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" - }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "total_episodes": 159, + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + }, + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" } diff --git a/tests/fixtures/followed_artists.json b/tests/fixtures/followed_artists.json index 6ffe1a8..6e8ac49 100644 --- a/tests/fixtures/followed_artists.json +++ b/tests/fixtures/followed_artists.json @@ -1,1474 +1,1469 @@ { - "artists": { - "href": "https://api.spotify.com/v1/me/following?type=artist&limit=48", - "limit": 48, - "next": "https://api.spotify.com/v1/me/following?type=artist&limit=48&after=7CajNmpbOovFoOoasH2HaY", - "cursors": { "after": "7CajNmpbOovFoOoasH2HaY" }, - "total": 83, - "items": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/49RPyTk0BluLrg3scWFCOw" - }, - "followers": { "href": null, "total": 9445 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/49RPyTk0BluLrg3scWFCOw", - "id": "49RPyTk0BluLrg3scWFCOw", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb6c0e10129c7d490c1b2f43a1", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051746c0e10129c7d490c1b2f43a1", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1786c0e10129c7d490c1b2f43a1", - "height": 160, - "width": 160 - } - ], - "name": "The Excellent Man from Minneapolis", - "popularity": 22, - "type": "artist", - "uri": "spotify:artist:49RPyTk0BluLrg3scWFCOw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" - }, - "followers": { "href": null, "total": 57004 }, - "genres": ["power metal", "symphonic metal"], - "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", - "id": "0r6IrOHMBaKiiZPV1zeIu2", - "images": [ - { - "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", - "height": 1000, - "width": 1000 - }, - { - "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", - "height": 200, - "width": 200 - }, - { - "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", - "height": 64, - "width": 64 - } - ], - "name": "Follow The Cipher", - "popularity": 42, - "type": "artist", - "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "followers": { "href": null, "total": 153014 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16", - "height": 160, - "width": 160 - } - ], - "name": "Confidence Man", - "popularity": 52, - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "followers": { "href": null, "total": 1734133 }, - "genres": ["chillwave", "chillstep"], - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", - "height": 160, - "width": 160 - } - ], - "name": "ODESZA", - "popularity": 65, - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "followers": { "href": null, "total": 961706 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", - "height": 160, - "width": 160 - } - ], - "name": "Jamie xx", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" - }, - "followers": { "href": null, "total": 146164 }, - "genres": ["slap house"], - "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", - "id": "25sJFKMqDENdsTF7zRXoif", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", - "height": 160, - "width": 160 - } - ], - "name": "Klaas", - "popularity": 63, - "type": "artist", - "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "followers": { "href": null, "total": 82823 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb7525b42a023687841595bbd3", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051747525b42a023687841595bbd3", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1787525b42a023687841595bbd3", - "height": 160, - "width": 160 - } - ], - "name": "Abor & Tynna", - "popularity": 48, - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" - }, - "followers": { "href": null, "total": 29781 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", - "id": "5UlJRJmlRLhQJX8lJuerVq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", - "height": 160, - "width": 160 - } - ], - "name": "Telenova", - "popularity": 39, - "type": "artist", - "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "followers": { "href": null, "total": 4101737 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb", - "height": 160, - "width": 160 - } - ], - "name": "Foster The People", - "popularity": 69, - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" - }, - "followers": { "href": null, "total": 621 }, - "genres": ["nederpop"], - "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", - "id": "74Yus6IHfa3tWZzXXAYtS2", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eba38b7b74df480f484747aa5e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174a38b7b74df480f484747aa5e", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178a38b7b74df480f484747aa5e", - "height": 160, - "width": 160 - } - ], - "name": "Onkruid", - "popularity": 7, - "type": "artist", - "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66FZq0wsY6770bc4O9Dlig" - }, - "followers": { "href": null, "total": 217533 }, - "genres": [ - "hard techno", - "techno", - "tekno", - "gabber", - "hardcore techno", - "hardcore" - ], - "href": "https://api.spotify.com/v1/artists/66FZq0wsY6770bc4O9Dlig", - "id": "66FZq0wsY6770bc4O9Dlig", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb86c24ac383ac8bac2abf3490", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517486c24ac383ac8bac2abf3490", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17886c24ac383ac8bac2abf3490", - "height": 160, - "width": 160 - } - ], - "name": "Vieze Asbak", - "popularity": 61, - "type": "artist", - "uri": "spotify:artist:66FZq0wsY6770bc4O9Dlig" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "followers": { "href": null, "total": 1011655 }, - "genres": ["downtempo", "electronica", "trip hop"], - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb6bc3053447db6b61f3fe444c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051746bc3053447db6b61f3fe444c", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1786bc3053447db6b61f3fe444c", - "height": 160, - "width": 160 - } - ], - "name": "R\u00f6yksopp", - "popularity": 59, - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2vhrwzjf9H3icunkVFi9tq" - }, - "followers": { "href": null, "total": 361828 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/2vhrwzjf9H3icunkVFi9tq", - "id": "2vhrwzjf9H3icunkVFi9tq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebe3bfc7d382ee69ad39301bf3", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174e3bfc7d382ee69ad39301bf3", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178e3bfc7d382ee69ad39301bf3", - "height": 160, - "width": 160 - } - ], - "name": "Smash Into Pieces", - "popularity": 57, - "type": "artist", - "uri": "spotify:artist:2vhrwzjf9H3icunkVFi9tq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" - }, - "followers": { "href": null, "total": 6368 }, - "genres": ["synthwave", "synthpop", "indie dance"], - "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", - "id": "17IDrizGUiveZm4P77Kkio", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb865270a866f29852ee53fa3f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174865270a866f29852ee53fa3f", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178865270a866f29852ee53fa3f", - "height": 160, - "width": 160 - } - ], - "name": "Icarus", - "popularity": 28, - "type": "artist", - "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "followers": { "href": null, "total": 981067 }, - "genres": ["gabber", "europop"], - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", - "height": 160, - "width": 160 - } - ], - "name": "Joost", - "popularity": 65, - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7FdBcGYvnLdBA3thdl1jpO" - }, - "followers": { "href": null, "total": 679 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7FdBcGYvnLdBA3thdl1jpO", - "id": "7FdBcGYvnLdBA3thdl1jpO", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb08d114a81d91a2a9c9fe54c4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517408d114a81d91a2a9c9fe54c4", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17808d114a81d91a2a9c9fe54c4", - "height": 160, - "width": 160 - } - ], - "name": "Scarjen", - "popularity": 0, - "type": "artist", - "uri": "spotify:artist:7FdBcGYvnLdBA3thdl1jpO" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1QOHbhVRpDoNtRkz79si6b" - }, - "followers": { "href": null, "total": 65031 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1QOHbhVRpDoNtRkz79si6b", - "id": "1QOHbhVRpDoNtRkz79si6b", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb17117582d67a9817d018ba55", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517417117582d67a9817d018ba55", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17817117582d67a9817d018ba55", - "height": 160, - "width": 160 - } - ], - "name": "Karen Harding", - "popularity": 53, - "type": "artist", - "uri": "spotify:artist:1QOHbhVRpDoNtRkz79si6b" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "followers": { "href": null, "total": 2464287 }, - "genres": ["stutter house", "house", "edm"], - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", - "height": 160, - "width": 160 - } - ], - "name": "Fred again..", - "popularity": 78, - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1DbXVMdQqNejIYLU2xsIMi" - }, - "followers": { "href": null, "total": 1033 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1DbXVMdQqNejIYLU2xsIMi", - "id": "1DbXVMdQqNejIYLU2xsIMi", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8", - "height": 160, - "width": 160 - } - ], - "name": "Ryan Ritual", - "popularity": 6, - "type": "artist", - "uri": "spotify:artist:1DbXVMdQqNejIYLU2xsIMi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "followers": { "href": null, "total": 1144334 }, - "genres": ["indie soul"], - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", - "height": 160, - "width": 160 - } - ], - "name": "Parcels", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "followers": { "href": null, "total": 172224 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", - "height": 160, - "width": 160 - } - ], - "name": "Alfie Templeman", - "popularity": 46, - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5wF7Cde0abKtrbCj1Gcow7" - }, - "followers": { "href": null, "total": 1848 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5wF7Cde0abKtrbCj1Gcow7", - "id": "5wF7Cde0abKtrbCj1Gcow7", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb30aaa02dea97e4836793acfa", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517430aaa02dea97e4836793acfa", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17830aaa02dea97e4836793acfa", - "height": 160, - "width": 160 - } - ], - "name": "Only Seven Left", - "popularity": 9, - "type": "artist", - "uri": "spotify:artist:5wF7Cde0abKtrbCj1Gcow7" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/56X1AGaHZthmkHfMZTcvnY" - }, - "followers": { "href": null, "total": 838 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/56X1AGaHZthmkHfMZTcvnY", - "id": "56X1AGaHZthmkHfMZTcvnY", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb6e47926f9b3da6014495b505", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051746e47926f9b3da6014495b505", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1786e47926f9b3da6014495b505", - "height": 160, - "width": 160 - } - ], - "name": "Lustrum Albertus Magnus", - "popularity": 20, - "type": "artist", - "uri": "spotify:artist:56X1AGaHZthmkHfMZTcvnY" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" - }, - "followers": { "href": null, "total": 1282232 }, - "genres": [ - "power metal", - "speed metal", - "metal", - "symphonic metal" - ], - "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", - "id": "2pH3wEn4eYlMMIIQyKPbVR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", - "height": 160, - "width": 160 - } - ], - "name": "DragonForce", - "popularity": 56, - "type": "artist", - "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "followers": { "href": null, "total": 154064 }, - "genres": ["nederpop", "hollands"], - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", - "height": 160, - "width": 160 - } - ], - "name": "Goldband", - "popularity": 50, - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4IF11U0nzFhAaLDGZH3vSx" - }, - "followers": { "href": null, "total": 175524 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/4IF11U0nzFhAaLDGZH3vSx", - "id": "4IF11U0nzFhAaLDGZH3vSx", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb2fd30c40ef0995f9e884121c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051742fd30c40ef0995f9e884121c", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1782fd30c40ef0995f9e884121c", - "height": 160, - "width": 160 - } - ], - "name": "RichaadEB", - "popularity": 54, - "type": "artist", - "uri": "spotify:artist:4IF11U0nzFhAaLDGZH3vSx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/10GT4yz8c6xjjnPGtGPI1l" - }, - "followers": { "href": null, "total": 189669 }, - "genres": ["nu disco"], - "href": "https://api.spotify.com/v1/artists/10GT4yz8c6xjjnPGtGPI1l", - "id": "10GT4yz8c6xjjnPGtGPI1l", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb96a091a0f6f5b83e6c0ce41e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517496a091a0f6f5b83e6c0ce41e", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17896a091a0f6f5b83e6c0ce41e", - "height": 160, - "width": 160 - } - ], - "name": "Franc Moody", - "popularity": 54, - "type": "artist", - "uri": "spotify:artist:10GT4yz8c6xjjnPGtGPI1l" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1kDGbuxWknIKx4FlgWxiSp" - }, - "followers": { "href": null, "total": 1356513 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/1kDGbuxWknIKx4FlgWxiSp", - "id": "1kDGbuxWknIKx4FlgWxiSp", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57", - "height": 160, - "width": 160 - } - ], - "name": "Nothing But Thieves", - "popularity": 62, - "type": "artist", - "uri": "spotify:artist:1kDGbuxWknIKx4FlgWxiSp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0uBVyPbLZRDNEBiA4fZUlp" - }, - "followers": { "href": null, "total": 120715 }, - "genres": ["nederpop"], - "href": "https://api.spotify.com/v1/artists/0uBVyPbLZRDNEBiA4fZUlp", - "id": "0uBVyPbLZRDNEBiA4fZUlp", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb88e1735fe7e1b00d7203e13a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517488e1735fe7e1b00d7203e13a", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17888e1735fe7e1b00d7203e13a", - "height": 160, - "width": 160 - } - ], - "name": "Froukje", - "popularity": 54, - "type": "artist", - "uri": "spotify:artist:0uBVyPbLZRDNEBiA4fZUlp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "followers": { "href": null, "total": 740284 }, - "genres": ["norwegian pop"], - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", - "height": 160, - "width": 160 - } - ], - "name": "Sigrid", - "popularity": 55, - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "followers": { "href": null, "total": 85930 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb988f5c8a44e2ecf58ee7b282", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174988f5c8a44e2ecf58ee7b282", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178988f5c8a44e2ecf58ee7b282", - "height": 160, - "width": 160 - } - ], - "name": "Litany", - "popularity": 42, - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7EuzcvdfScUqksgKfyN7J0" - }, - "followers": { "href": null, "total": 12394 }, - "genres": ["dansk pop", "dansktop"], - "href": "https://api.spotify.com/v1/artists/7EuzcvdfScUqksgKfyN7J0", - "id": "7EuzcvdfScUqksgKfyN7J0", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebc9fd64f340405adebbabbbb1", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174c9fd64f340405adebbabbbb1", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178c9fd64f340405adebbabbbb1", - "height": 160, - "width": 160 - } - ], - "name": "Fyr Og Flamme", - "popularity": 29, - "type": "artist", - "uri": "spotify:artist:7EuzcvdfScUqksgKfyN7J0" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/37yradccJvSdTTA2Ol112q" - }, - "followers": { "href": null, "total": 7904 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/37yradccJvSdTTA2Ol112q", - "id": "37yradccJvSdTTA2Ol112q", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb02705fb156e30c3e086a9a17", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517402705fb156e30c3e086a9a17", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17802705fb156e30c3e086a9a17", - "height": 160, - "width": 160 - } - ], - "name": "Brett Domino", - "popularity": 17, - "type": "artist", - "uri": "spotify:artist:37yradccJvSdTTA2Ol112q" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" - }, - "followers": { "href": null, "total": 399626 }, - "genres": ["power metal", "symphonic metal", "metal"], - "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", - "id": "0rEuaTPLMhlViNCJrg3NEH", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", - "height": 160, - "width": 160 - } - ], - "name": "Beast In Black", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "followers": { "href": null, "total": 2506437 }, - "genres": [ - "power metal", - "metal", - "heavy metal", - "symphonic metal", - "folk metal" - ], - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", - "height": 160, - "width": 160 - } - ], - "name": "Sabaton", - "popularity": 70, - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" - }, - "followers": { "href": null, "total": 874156 }, - "genres": ["disco house", "nu disco", "funky house", "house"], - "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", - "id": "2WBJQGf1bT1kxuoqziH5g4", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7", - "height": 160, - "width": 160 - } - ], - "name": "Purple Disco Machine", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6Dd3NScHWwnW6obMFbl1BH" - }, - "followers": { "href": null, "total": 1918680 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6Dd3NScHWwnW6obMFbl1BH", - "id": "6Dd3NScHWwnW6obMFbl1BH", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebe79374211456f3edbb005e2c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174e79374211456f3edbb005e2c", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178e79374211456f3edbb005e2c", - "height": 160, - "width": 160 - } - ], - "name": "Daya", - "popularity": 70, - "type": "artist", - "uri": "spotify:artist:6Dd3NScHWwnW6obMFbl1BH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7s666LjS611IPQ63Clon0r" - }, - "followers": { "href": null, "total": 884 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7s666LjS611IPQ63Clon0r", - "id": "7s666LjS611IPQ63Clon0r", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb40afab9ab091f76e7948ea16", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517440afab9ab091f76e7948ea16", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17840afab9ab091f76e7948ea16", - "height": 160, - "width": 160 - } - ], - "name": "Sunday Avenue", - "popularity": 5, - "type": "artist", - "uri": "spotify:artist:7s666LjS611IPQ63Clon0r" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/760CXsrIDEEqLxeF2x4tRO" - }, - "followers": { "href": null, "total": 21371 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/760CXsrIDEEqLxeF2x4tRO", - "id": "760CXsrIDEEqLxeF2x4tRO", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb102dde38e9c72ced7033d34d", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174102dde38e9c72ced7033d34d", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178102dde38e9c72ced7033d34d", - "height": 160, - "width": 160 - } - ], - "name": "Maestro Ziikos", - "popularity": 25, - "type": "artist", - "uri": "spotify:artist:760CXsrIDEEqLxeF2x4tRO" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7Egoy0UuRKksBWzmGYzd68" - }, - "followers": { "href": null, "total": 77 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7Egoy0UuRKksBWzmGYzd68", - "id": "7Egoy0UuRKksBWzmGYzd68", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb83b9ffb1f6cd3975392af7f7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517483b9ffb1f6cd3975392af7f7", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17883b9ffb1f6cd3975392af7f7", - "height": 160, - "width": 160 - } - ], - "name": "YENO", - "popularity": 0, - "type": "artist", - "uri": "spotify:artist:7Egoy0UuRKksBWzmGYzd68" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/751YCAfHx8dQSUbAN8Q9dl" - }, - "followers": { "href": null, "total": 545 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/751YCAfHx8dQSUbAN8Q9dl", - "id": "751YCAfHx8dQSUbAN8Q9dl", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb253147018c2d40ef1c0cdacd", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174253147018c2d40ef1c0cdacd", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178253147018c2d40ef1c0cdacd", - "height": 160, - "width": 160 - } - ], - "name": "Nicolas Kanza", - "popularity": 2, - "type": "artist", - "uri": "spotify:artist:751YCAfHx8dQSUbAN8Q9dl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "followers": { "href": null, "total": 59839 }, - "genres": ["future bass"], - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb73c480b64dd16ef5d6396265", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517473c480b64dd16ef5d6396265", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17873c480b64dd16ef5d6396265", - "height": 160, - "width": 160 - } - ], - "name": "Conro", - "popularity": 42, - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4AQrqVz6BYwy29iMxcGtx7" - }, - "followers": { "href": null, "total": 310628 }, - "genres": ["nu disco"], - "href": "https://api.spotify.com/v1/artists/4AQrqVz6BYwy29iMxcGtx7", - "id": "4AQrqVz6BYwy29iMxcGtx7", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb05858f274692344c6f5ee13a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6761610000517405858f274692344c6f5ee13a", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f17805858f274692344c6f5ee13a", - "height": 160, - "width": 160 - } - ], - "name": "Roosevelt", - "popularity": 54, - "type": "artist", - "uri": "spotify:artist:4AQrqVz6BYwy29iMxcGtx7" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6jDwZUFYUH1dC4xWzOd8QU" - }, - "followers": { "href": null, "total": 318962 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6jDwZUFYUH1dC4xWzOd8QU", - "id": "6jDwZUFYUH1dC4xWzOd8QU", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebfc761f5e2d8f6db4dfaaa5ca", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174fc761f5e2d8f6db4dfaaa5ca", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178fc761f5e2d8f6db4dfaaa5ca", - "height": 160, - "width": 160 - } - ], - "name": "Caleb Hyles", - "popularity": 55, - "type": "artist", - "uri": "spotify:artist:6jDwZUFYUH1dC4xWzOd8QU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" - }, - "followers": { "href": null, "total": 372904 }, - "genres": ["house"], - "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", - "id": "1yqxFtPHKcGcv6SXZNdyT9", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebe85ae0ce3fe84474211ef54b", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174e85ae0ce3fe84474211ef54b", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178e85ae0ce3fe84474211ef54b", - "height": 160, - "width": 160 - } - ], - "name": "MK", - "popularity": 67, - "type": "artist", - "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6Gk5hoM7eW8NSCYhICMDHw" - }, - "followers": { "href": null, "total": 179757 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6Gk5hoM7eW8NSCYhICMDHw", - "id": "6Gk5hoM7eW8NSCYhICMDHw", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebf30f0f0e7f93877befa196af", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174f30f0f0e7f93877befa196af", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178f30f0f0e7f93877befa196af", - "height": 160, - "width": 160 - } - ], - "name": "Zak Abel", - "popularity": 57, - "type": "artist", - "uri": "spotify:artist:6Gk5hoM7eW8NSCYhICMDHw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "followers": { "href": null, "total": 946656 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5ebd6f6bf343b8bf12f12dc1a25", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616100005174d6f6bf343b8bf12f12dc1a25", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f178d6f6bf343b8bf12f12dc1a25", - "height": 160, - "width": 160 - } - ], - "name": "Becky Hill", - "popularity": 67, - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7CajNmpbOovFoOoasH2HaY" - }, - "followers": { "href": null, "total": 23296885 }, - "genres": ["edm"], - "href": "https://api.spotify.com/v1/artists/7CajNmpbOovFoOoasH2HaY", - "id": "7CajNmpbOovFoOoasH2HaY", - "images": [ - { - "url": "https://i.scdn.co/image/ab6761610000e5eb8ebba5e60113b48de8c11f6b", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab676161000051748ebba5e60113b48de8c11f6b", - "height": 320, - "width": 320 - }, - { - "url": "https://i.scdn.co/image/ab6761610000f1788ebba5e60113b48de8c11f6b", - "height": 160, - "width": 160 - } - ], - "name": "Calvin Harris", - "popularity": 84, - "type": "artist", - "uri": "spotify:artist:7CajNmpbOovFoOoasH2HaY" - } - ] - } + "artists": { + "href": "https://api.spotify.com/v1/me/following?type=artist&limit=48", + "limit": 48, + "next": "https://api.spotify.com/v1/me/following?type=artist&limit=48&after=7CajNmpbOovFoOoasH2HaY", + "cursors": { "after": "7CajNmpbOovFoOoasH2HaY" }, + "total": 83, + "items": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49RPyTk0BluLrg3scWFCOw" + }, + "followers": { "href": null, "total": 9445 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/49RPyTk0BluLrg3scWFCOw", + "id": "49RPyTk0BluLrg3scWFCOw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6c0e10129c7d490c1b2f43a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746c0e10129c7d490c1b2f43a1", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786c0e10129c7d490c1b2f43a1", + "height": 160, + "width": 160 + } + ], + "name": "The Excellent Man from Minneapolis", + "popularity": 22, + "type": "artist", + "uri": "spotify:artist:49RPyTk0BluLrg3scWFCOw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" + }, + "followers": { "href": null, "total": 57004 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", + "id": "0r6IrOHMBaKiiZPV1zeIu2", + "images": [ + { + "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", + "height": 1000, + "width": 1000 + }, + { + "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", + "height": 200, + "width": 200 + }, + { + "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", + "height": 64, + "width": 64 + } + ], + "name": "Follow The Cipher", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "followers": { "href": null, "total": 153014 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8cb8fe9483451962ad649d16", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051748cb8fe9483451962ad649d16", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788cb8fe9483451962ad649d16", + "height": 160, + "width": 160 + } + ], + "name": "Confidence Man", + "popularity": 52, + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "followers": { "href": null, "total": 1734133 }, + "genres": ["chillwave", "chillstep"], + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", + "height": 160, + "width": 160 + } + ], + "name": "ODESZA", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "followers": { "href": null, "total": 961706 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", + "height": 160, + "width": 160 + } + ], + "name": "Jamie xx", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" + }, + "followers": { "href": null, "total": 146164 }, + "genres": ["slap house"], + "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", + "id": "25sJFKMqDENdsTF7zRXoif", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", + "height": 160, + "width": 160 + } + ], + "name": "Klaas", + "popularity": 63, + "type": "artist", + "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "followers": { "href": null, "total": 82823 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb7525b42a023687841595bbd3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051747525b42a023687841595bbd3", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1787525b42a023687841595bbd3", + "height": 160, + "width": 160 + } + ], + "name": "Abor & Tynna", + "popularity": 48, + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" + }, + "followers": { "href": null, "total": 29781 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", + "id": "5UlJRJmlRLhQJX8lJuerVq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", + "height": 160, + "width": 160 + } + ], + "name": "Telenova", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "followers": { "href": null, "total": 4101737 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb22b8e662f0cfdddac8ab22bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517422b8e662f0cfdddac8ab22bb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17822b8e662f0cfdddac8ab22bb", + "height": 160, + "width": 160 + } + ], + "name": "Foster The People", + "popularity": 69, + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/74Yus6IHfa3tWZzXXAYtS2" + }, + "followers": { "href": null, "total": 621 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/74Yus6IHfa3tWZzXXAYtS2", + "id": "74Yus6IHfa3tWZzXXAYtS2", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eba38b7b74df480f484747aa5e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174a38b7b74df480f484747aa5e", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178a38b7b74df480f484747aa5e", + "height": 160, + "width": 160 + } + ], + "name": "Onkruid", + "popularity": 7, + "type": "artist", + "uri": "spotify:artist:74Yus6IHfa3tWZzXXAYtS2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66FZq0wsY6770bc4O9Dlig" + }, + "followers": { "href": null, "total": 217533 }, + "genres": [ + "hard techno", + "techno", + "tekno", + "gabber", + "hardcore techno", + "hardcore" + ], + "href": "https://api.spotify.com/v1/artists/66FZq0wsY6770bc4O9Dlig", + "id": "66FZq0wsY6770bc4O9Dlig", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb86c24ac383ac8bac2abf3490", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517486c24ac383ac8bac2abf3490", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17886c24ac383ac8bac2abf3490", + "height": 160, + "width": 160 + } + ], + "name": "Vieze Asbak", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:66FZq0wsY6770bc4O9Dlig" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "followers": { "href": null, "total": 1011655 }, + "genres": ["downtempo", "electronica", "trip hop"], + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6bc3053447db6b61f3fe444c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746bc3053447db6b61f3fe444c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786bc3053447db6b61f3fe444c", + "height": 160, + "width": 160 + } + ], + "name": "R\u00f6yksopp", + "popularity": 59, + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vhrwzjf9H3icunkVFi9tq" + }, + "followers": { "href": null, "total": 361828 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/2vhrwzjf9H3icunkVFi9tq", + "id": "2vhrwzjf9H3icunkVFi9tq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe3bfc7d382ee69ad39301bf3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e3bfc7d382ee69ad39301bf3", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e3bfc7d382ee69ad39301bf3", + "height": 160, + "width": 160 + } + ], + "name": "Smash Into Pieces", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:2vhrwzjf9H3icunkVFi9tq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17IDrizGUiveZm4P77Kkio" + }, + "followers": { "href": null, "total": 6368 }, + "genres": ["synthwave", "synthpop", "indie dance"], + "href": "https://api.spotify.com/v1/artists/17IDrizGUiveZm4P77Kkio", + "id": "17IDrizGUiveZm4P77Kkio", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb865270a866f29852ee53fa3f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174865270a866f29852ee53fa3f", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178865270a866f29852ee53fa3f", + "height": 160, + "width": 160 + } + ], + "name": "Icarus", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:17IDrizGUiveZm4P77Kkio" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "followers": { "href": null, "total": 981067 }, + "genres": ["gabber", "europop"], + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", + "height": 160, + "width": 160 + } + ], + "name": "Joost", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7FdBcGYvnLdBA3thdl1jpO" + }, + "followers": { "href": null, "total": 679 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7FdBcGYvnLdBA3thdl1jpO", + "id": "7FdBcGYvnLdBA3thdl1jpO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb08d114a81d91a2a9c9fe54c4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517408d114a81d91a2a9c9fe54c4", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17808d114a81d91a2a9c9fe54c4", + "height": 160, + "width": 160 + } + ], + "name": "Scarjen", + "popularity": 0, + "type": "artist", + "uri": "spotify:artist:7FdBcGYvnLdBA3thdl1jpO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1QOHbhVRpDoNtRkz79si6b" + }, + "followers": { "href": null, "total": 65031 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1QOHbhVRpDoNtRkz79si6b", + "id": "1QOHbhVRpDoNtRkz79si6b", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb17117582d67a9817d018ba55", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517417117582d67a9817d018ba55", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17817117582d67a9817d018ba55", + "height": 160, + "width": 160 + } + ], + "name": "Karen Harding", + "popularity": 53, + "type": "artist", + "uri": "spotify:artist:1QOHbhVRpDoNtRkz79si6b" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "followers": { "href": null, "total": 2464287 }, + "genres": ["stutter house", "house", "edm"], + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", + "height": 160, + "width": 160 + } + ], + "name": "Fred again..", + "popularity": 78, + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1DbXVMdQqNejIYLU2xsIMi" + }, + "followers": { "href": null, "total": 1033 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1DbXVMdQqNejIYLU2xsIMi", + "id": "1DbXVMdQqNejIYLU2xsIMi", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb9b0c0d5e5e4f43a21b19f7e8", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051749b0c0d5e5e4f43a21b19f7e8", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1789b0c0d5e5e4f43a21b19f7e8", + "height": 160, + "width": 160 + } + ], + "name": "Ryan Ritual", + "popularity": 6, + "type": "artist", + "uri": "spotify:artist:1DbXVMdQqNejIYLU2xsIMi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "followers": { "href": null, "total": 1144334 }, + "genres": ["indie soul"], + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", + "height": 160, + "width": 160 + } + ], + "name": "Parcels", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "followers": { "href": null, "total": 172224 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", + "height": 160, + "width": 160 + } + ], + "name": "Alfie Templeman", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wF7Cde0abKtrbCj1Gcow7" + }, + "followers": { "href": null, "total": 1848 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5wF7Cde0abKtrbCj1Gcow7", + "id": "5wF7Cde0abKtrbCj1Gcow7", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb30aaa02dea97e4836793acfa", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517430aaa02dea97e4836793acfa", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17830aaa02dea97e4836793acfa", + "height": 160, + "width": 160 + } + ], + "name": "Only Seven Left", + "popularity": 9, + "type": "artist", + "uri": "spotify:artist:5wF7Cde0abKtrbCj1Gcow7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/56X1AGaHZthmkHfMZTcvnY" + }, + "followers": { "href": null, "total": 838 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/56X1AGaHZthmkHfMZTcvnY", + "id": "56X1AGaHZthmkHfMZTcvnY", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6e47926f9b3da6014495b505", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746e47926f9b3da6014495b505", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786e47926f9b3da6014495b505", + "height": 160, + "width": 160 + } + ], + "name": "Lustrum Albertus Magnus", + "popularity": 20, + "type": "artist", + "uri": "spotify:artist:56X1AGaHZthmkHfMZTcvnY" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" + }, + "followers": { "href": null, "total": 1282232 }, + "genres": ["power metal", "speed metal", "metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", + "id": "2pH3wEn4eYlMMIIQyKPbVR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", + "height": 160, + "width": 160 + } + ], + "name": "DragonForce", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "followers": { "href": null, "total": 154064 }, + "genres": ["nederpop", "hollands"], + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", + "height": 160, + "width": 160 + } + ], + "name": "Goldband", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4IF11U0nzFhAaLDGZH3vSx" + }, + "followers": { "href": null, "total": 175524 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4IF11U0nzFhAaLDGZH3vSx", + "id": "4IF11U0nzFhAaLDGZH3vSx", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb2fd30c40ef0995f9e884121c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051742fd30c40ef0995f9e884121c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1782fd30c40ef0995f9e884121c", + "height": 160, + "width": 160 + } + ], + "name": "RichaadEB", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:4IF11U0nzFhAaLDGZH3vSx" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/10GT4yz8c6xjjnPGtGPI1l" + }, + "followers": { "href": null, "total": 189669 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/10GT4yz8c6xjjnPGtGPI1l", + "id": "10GT4yz8c6xjjnPGtGPI1l", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb96a091a0f6f5b83e6c0ce41e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517496a091a0f6f5b83e6c0ce41e", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17896a091a0f6f5b83e6c0ce41e", + "height": 160, + "width": 160 + } + ], + "name": "Franc Moody", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:10GT4yz8c6xjjnPGtGPI1l" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1kDGbuxWknIKx4FlgWxiSp" + }, + "followers": { "href": null, "total": 1356513 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/1kDGbuxWknIKx4FlgWxiSp", + "id": "1kDGbuxWknIKx4FlgWxiSp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb065faf07b0343e97bf3fba57", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174065faf07b0343e97bf3fba57", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178065faf07b0343e97bf3fba57", + "height": 160, + "width": 160 + } + ], + "name": "Nothing But Thieves", + "popularity": 62, + "type": "artist", + "uri": "spotify:artist:1kDGbuxWknIKx4FlgWxiSp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0uBVyPbLZRDNEBiA4fZUlp" + }, + "followers": { "href": null, "total": 120715 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/0uBVyPbLZRDNEBiA4fZUlp", + "id": "0uBVyPbLZRDNEBiA4fZUlp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb88e1735fe7e1b00d7203e13a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517488e1735fe7e1b00d7203e13a", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17888e1735fe7e1b00d7203e13a", + "height": 160, + "width": 160 + } + ], + "name": "Froukje", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:0uBVyPbLZRDNEBiA4fZUlp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "followers": { "href": null, "total": 740284 }, + "genres": ["norwegian pop"], + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", + "height": 160, + "width": 160 + } + ], + "name": "Sigrid", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "followers": { "href": null, "total": 85930 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb988f5c8a44e2ecf58ee7b282", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174988f5c8a44e2ecf58ee7b282", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178988f5c8a44e2ecf58ee7b282", + "height": 160, + "width": 160 + } + ], + "name": "Litany", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7EuzcvdfScUqksgKfyN7J0" + }, + "followers": { "href": null, "total": 12394 }, + "genres": ["dansk pop", "dansktop"], + "href": "https://api.spotify.com/v1/artists/7EuzcvdfScUqksgKfyN7J0", + "id": "7EuzcvdfScUqksgKfyN7J0", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebc9fd64f340405adebbabbbb1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174c9fd64f340405adebbabbbb1", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178c9fd64f340405adebbabbbb1", + "height": 160, + "width": 160 + } + ], + "name": "Fyr Og Flamme", + "popularity": 29, + "type": "artist", + "uri": "spotify:artist:7EuzcvdfScUqksgKfyN7J0" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/37yradccJvSdTTA2Ol112q" + }, + "followers": { "href": null, "total": 7904 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/37yradccJvSdTTA2Ol112q", + "id": "37yradccJvSdTTA2Ol112q", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb02705fb156e30c3e086a9a17", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517402705fb156e30c3e086a9a17", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17802705fb156e30c3e086a9a17", + "height": 160, + "width": 160 + } + ], + "name": "Brett Domino", + "popularity": 17, + "type": "artist", + "uri": "spotify:artist:37yradccJvSdTTA2Ol112q" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "followers": { "href": null, "total": 399626 }, + "genres": ["power metal", "symphonic metal", "metal"], + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", + "height": 160, + "width": 160 + } + ], + "name": "Beast In Black", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "followers": { "href": null, "total": 2506437 }, + "genres": [ + "power metal", + "metal", + "heavy metal", + "symphonic metal", + "folk metal" + ], + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", + "height": 160, + "width": 160 + } + ], + "name": "Sabaton", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2WBJQGf1bT1kxuoqziH5g4" + }, + "followers": { "href": null, "total": 874156 }, + "genres": ["disco house", "nu disco", "funky house", "house"], + "href": "https://api.spotify.com/v1/artists/2WBJQGf1bT1kxuoqziH5g4", + "id": "2WBJQGf1bT1kxuoqziH5g4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebbd1cb147996bda17ecc97dd7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174bd1cb147996bda17ecc97dd7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178bd1cb147996bda17ecc97dd7", + "height": 160, + "width": 160 + } + ], + "name": "Purple Disco Machine", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:2WBJQGf1bT1kxuoqziH5g4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Dd3NScHWwnW6obMFbl1BH" + }, + "followers": { "href": null, "total": 1918680 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6Dd3NScHWwnW6obMFbl1BH", + "id": "6Dd3NScHWwnW6obMFbl1BH", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe79374211456f3edbb005e2c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e79374211456f3edbb005e2c", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e79374211456f3edbb005e2c", + "height": 160, + "width": 160 + } + ], + "name": "Daya", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:6Dd3NScHWwnW6obMFbl1BH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7s666LjS611IPQ63Clon0r" + }, + "followers": { "href": null, "total": 884 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7s666LjS611IPQ63Clon0r", + "id": "7s666LjS611IPQ63Clon0r", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb40afab9ab091f76e7948ea16", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517440afab9ab091f76e7948ea16", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17840afab9ab091f76e7948ea16", + "height": 160, + "width": 160 + } + ], + "name": "Sunday Avenue", + "popularity": 5, + "type": "artist", + "uri": "spotify:artist:7s666LjS611IPQ63Clon0r" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/760CXsrIDEEqLxeF2x4tRO" + }, + "followers": { "href": null, "total": 21371 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/760CXsrIDEEqLxeF2x4tRO", + "id": "760CXsrIDEEqLxeF2x4tRO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb102dde38e9c72ced7033d34d", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174102dde38e9c72ced7033d34d", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178102dde38e9c72ced7033d34d", + "height": 160, + "width": 160 + } + ], + "name": "Maestro Ziikos", + "popularity": 25, + "type": "artist", + "uri": "spotify:artist:760CXsrIDEEqLxeF2x4tRO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Egoy0UuRKksBWzmGYzd68" + }, + "followers": { "href": null, "total": 77 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7Egoy0UuRKksBWzmGYzd68", + "id": "7Egoy0UuRKksBWzmGYzd68", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb83b9ffb1f6cd3975392af7f7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517483b9ffb1f6cd3975392af7f7", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17883b9ffb1f6cd3975392af7f7", + "height": 160, + "width": 160 + } + ], + "name": "YENO", + "popularity": 0, + "type": "artist", + "uri": "spotify:artist:7Egoy0UuRKksBWzmGYzd68" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/751YCAfHx8dQSUbAN8Q9dl" + }, + "followers": { "href": null, "total": 545 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/751YCAfHx8dQSUbAN8Q9dl", + "id": "751YCAfHx8dQSUbAN8Q9dl", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb253147018c2d40ef1c0cdacd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174253147018c2d40ef1c0cdacd", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178253147018c2d40ef1c0cdacd", + "height": 160, + "width": 160 + } + ], + "name": "Nicolas Kanza", + "popularity": 2, + "type": "artist", + "uri": "spotify:artist:751YCAfHx8dQSUbAN8Q9dl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "followers": { "href": null, "total": 59839 }, + "genres": ["future bass"], + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb73c480b64dd16ef5d6396265", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517473c480b64dd16ef5d6396265", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17873c480b64dd16ef5d6396265", + "height": 160, + "width": 160 + } + ], + "name": "Conro", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4AQrqVz6BYwy29iMxcGtx7" + }, + "followers": { "href": null, "total": 310628 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/4AQrqVz6BYwy29iMxcGtx7", + "id": "4AQrqVz6BYwy29iMxcGtx7", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb05858f274692344c6f5ee13a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6761610000517405858f274692344c6f5ee13a", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f17805858f274692344c6f5ee13a", + "height": 160, + "width": 160 + } + ], + "name": "Roosevelt", + "popularity": 54, + "type": "artist", + "uri": "spotify:artist:4AQrqVz6BYwy29iMxcGtx7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6jDwZUFYUH1dC4xWzOd8QU" + }, + "followers": { "href": null, "total": 318962 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6jDwZUFYUH1dC4xWzOd8QU", + "id": "6jDwZUFYUH1dC4xWzOd8QU", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebfc761f5e2d8f6db4dfaaa5ca", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174fc761f5e2d8f6db4dfaaa5ca", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178fc761f5e2d8f6db4dfaaa5ca", + "height": 160, + "width": 160 + } + ], + "name": "Caleb Hyles", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:6jDwZUFYUH1dC4xWzOd8QU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" + }, + "followers": { "href": null, "total": 372904 }, + "genres": ["house"], + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebe85ae0ce3fe84474211ef54b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174e85ae0ce3fe84474211ef54b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178e85ae0ce3fe84474211ef54b", + "height": 160, + "width": 160 + } + ], + "name": "MK", + "popularity": 67, + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Gk5hoM7eW8NSCYhICMDHw" + }, + "followers": { "href": null, "total": 179757 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6Gk5hoM7eW8NSCYhICMDHw", + "id": "6Gk5hoM7eW8NSCYhICMDHw", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebf30f0f0e7f93877befa196af", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174f30f0f0e7f93877befa196af", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178f30f0f0e7f93877befa196af", + "height": 160, + "width": 160 + } + ], + "name": "Zak Abel", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:6Gk5hoM7eW8NSCYhICMDHw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "followers": { "href": null, "total": 946656 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5ebd6f6bf343b8bf12f12dc1a25", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616100005174d6f6bf343b8bf12f12dc1a25", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f178d6f6bf343b8bf12f12dc1a25", + "height": 160, + "width": 160 + } + ], + "name": "Becky Hill", + "popularity": 67, + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7CajNmpbOovFoOoasH2HaY" + }, + "followers": { "href": null, "total": 23296885 }, + "genres": ["edm"], + "href": "https://api.spotify.com/v1/artists/7CajNmpbOovFoOoasH2HaY", + "id": "7CajNmpbOovFoOoasH2HaY", + "images": [ + { + "url": "https://i.scdn.co/image/ab6761610000e5eb8ebba5e60113b48de8c11f6b", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab676161000051748ebba5e60113b48de8c11f6b", + "height": 320, + "width": 320 + }, + { + "url": "https://i.scdn.co/image/ab6761610000f1788ebba5e60113b48de8c11f6b", + "height": 160, + "width": 160 + } + ], + "name": "Calvin Harris", + "popularity": 84, + "type": "artist", + "uri": "spotify:artist:7CajNmpbOovFoOoasH2HaY" + } + ] + } } diff --git a/tests/fixtures/get_album.json b/tests/fixtures/get_album.json index 632a2f2..0edce9d 100644 --- a/tests/fixtures/get_album.json +++ b/tests/fixtures/get_album.json @@ -1,2613 +1,2613 @@ { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3IqzqH6ShrRtie9Yd2ODyG" + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3IqzqH6ShrRtie9Yd2ODyG" + }, + "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG", + "id": "3IqzqH6ShrRtie9Yd2ODyG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a61a28c2f084761f8833bce6", + "height": 640, + "width": 640 }, - "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG", - "id": "3IqzqH6ShrRtie9Yd2ODyG", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a61a28c2f084761f8833bce6", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a61a28c2f084761f8833bce6", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a61a28c2f084761f8833bce6", - "height": 64, - "width": 64 - } - ], - "name": "SINGLARITY", - "release_date": "2020-12-18", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", - "artists": [ - { + { + "url": "https://i.scdn.co/image/ab67616d00001e02a61a28c2f084761f8833bce6", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a61a28c2f084761f8833bce6", + "height": 64, + "width": 64 + } + ], + "name": "SINGLARITY", + "release_date": "2020-12-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3IqzqH6ShrRtie9Yd2ODyG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", "id": "3jULn43a6xfzqleyeFjPIq", "name": "Area 11", "type": "artist", "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/3IqzqH6ShrRtie9Yd2ODyG/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 260372, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6akJGriy4njdP8fZTPGjwz" - }, - "href": "https://api.spotify.com/v1/tracks/6akJGriy4njdP8fZTPGjwz", - "id": "6akJGriy4njdP8fZTPGjwz", - "name": "All Your Friends", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6akJGriy4njdP8fZTPGjwz", - "is_local": false + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 260372, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6akJGriy4njdP8fZTPGjwz" + }, + "href": "https://api.spotify.com/v1/tracks/6akJGriy4njdP8fZTPGjwz", + "id": "6akJGriy4njdP8fZTPGjwz", + "name": "All Your Friends", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6akJGriy4njdP8fZTPGjwz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206613, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7N02bJK1amhplZ8yAapRS5" - }, - "href": "https://api.spotify.com/v1/tracks/7N02bJK1amhplZ8yAapRS5", - "id": "7N02bJK1amhplZ8yAapRS5", - "name": "New Magiks", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:7N02bJK1amhplZ8yAapRS5", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206613, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7N02bJK1amhplZ8yAapRS5" + }, + "href": "https://api.spotify.com/v1/tracks/7N02bJK1amhplZ8yAapRS5", + "id": "7N02bJK1amhplZ8yAapRS5", + "name": "New Magiks", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7N02bJK1amhplZ8yAapRS5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 237266, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6wcBBzmaXHTfg6xNWtjhal" - }, - "href": "https://api.spotify.com/v1/tracks/6wcBBzmaXHTfg6xNWtjhal", - "id": "6wcBBzmaXHTfg6xNWtjhal", - "name": "Everybody Gets a Piece", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6wcBBzmaXHTfg6xNWtjhal", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 237266, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wcBBzmaXHTfg6xNWtjhal" + }, + "href": "https://api.spotify.com/v1/tracks/6wcBBzmaXHTfg6xNWtjhal", + "id": "6wcBBzmaXHTfg6xNWtjhal", + "name": "Everybody Gets a Piece", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6wcBBzmaXHTfg6xNWtjhal", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244813, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6S1fviwvPfMGD7kk6oAZQN" - }, - "href": "https://api.spotify.com/v1/tracks/6S1fviwvPfMGD7kk6oAZQN", - "id": "6S1fviwvPfMGD7kk6oAZQN", - "name": "Curtain Fall", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6S1fviwvPfMGD7kk6oAZQN", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244813, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6S1fviwvPfMGD7kk6oAZQN" + }, + "href": "https://api.spotify.com/v1/tracks/6S1fviwvPfMGD7kk6oAZQN", + "id": "6S1fviwvPfMGD7kk6oAZQN", + "name": "Curtain Fall", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6S1fviwvPfMGD7kk6oAZQN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227517, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0HeSCiPSm1d6V7b4CMHPo3" - }, - "href": "https://api.spotify.com/v1/tracks/0HeSCiPSm1d6V7b4CMHPo3", - "id": "0HeSCiPSm1d6V7b4CMHPo3", - "name": "Tear Up", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:0HeSCiPSm1d6V7b4CMHPo3", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227517, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0HeSCiPSm1d6V7b4CMHPo3" + }, + "href": "https://api.spotify.com/v1/tracks/0HeSCiPSm1d6V7b4CMHPo3", + "id": "0HeSCiPSm1d6V7b4CMHPo3", + "name": "Tear Up", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0HeSCiPSm1d6V7b4CMHPo3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 231891, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/72Q66d8akZekf6AQH414nc" - }, - "href": "https://api.spotify.com/v1/tracks/72Q66d8akZekf6AQH414nc", - "id": "72Q66d8akZekf6AQH414nc", - "name": "\u00d8CULIST", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:72Q66d8akZekf6AQH414nc", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231891, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/72Q66d8akZekf6AQH414nc" + }, + "href": "https://api.spotify.com/v1/tracks/72Q66d8akZekf6AQH414nc", + "id": "72Q66d8akZekf6AQH414nc", + "name": "\u00d8CULIST", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:72Q66d8akZekf6AQH414nc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 235540, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2X34r3wmh9KhM1LrohGotI" - }, - "href": "https://api.spotify.com/v1/tracks/2X34r3wmh9KhM1LrohGotI", - "id": "2X34r3wmh9KhM1LrohGotI", - "name": "Kaleidoscope", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2X34r3wmh9KhM1LrohGotI", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 235540, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2X34r3wmh9KhM1LrohGotI" + }, + "href": "https://api.spotify.com/v1/tracks/2X34r3wmh9KhM1LrohGotI", + "id": "2X34r3wmh9KhM1LrohGotI", + "name": "Kaleidoscope", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2X34r3wmh9KhM1LrohGotI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 264000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4QGWwmBFhq38PpGj0jRBZg" - }, - "href": "https://api.spotify.com/v1/tracks/4QGWwmBFhq38PpGj0jRBZg", - "id": "4QGWwmBFhq38PpGj0jRBZg", - "name": "Desaturate", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:4QGWwmBFhq38PpGj0jRBZg", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 264000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4QGWwmBFhq38PpGj0jRBZg" + }, + "href": "https://api.spotify.com/v1/tracks/4QGWwmBFhq38PpGj0jRBZg", + "id": "4QGWwmBFhq38PpGj0jRBZg", + "name": "Desaturate", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4QGWwmBFhq38PpGj0jRBZg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 234493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1DPGkXCZA2j9Eu98rrNcoj" - }, - "href": "https://api.spotify.com/v1/tracks/1DPGkXCZA2j9Eu98rrNcoj", - "id": "1DPGkXCZA2j9Eu98rrNcoj", - "name": "(Break) In Case Of...", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1DPGkXCZA2j9Eu98rrNcoj", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 234493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1DPGkXCZA2j9Eu98rrNcoj" + }, + "href": "https://api.spotify.com/v1/tracks/1DPGkXCZA2j9Eu98rrNcoj", + "id": "1DPGkXCZA2j9Eu98rrNcoj", + "name": "(Break) In Case Of...", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1DPGkXCZA2j9Eu98rrNcoj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267080, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6FcIiMd7sJSCNweLf6ZRsk" - }, - "href": "https://api.spotify.com/v1/tracks/6FcIiMd7sJSCNweLf6ZRsk", - "id": "6FcIiMd7sJSCNweLf6ZRsk", - "name": "Dancing on the Head of a Pin", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:6FcIiMd7sJSCNweLf6ZRsk", - "is_local": false + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6FcIiMd7sJSCNweLf6ZRsk" + }, + "href": "https://api.spotify.com/v1/tracks/6FcIiMd7sJSCNweLf6ZRsk", + "id": "6FcIiMd7sJSCNweLf6ZRsk", + "name": "Dancing on the Head of a Pin", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6FcIiMd7sJSCNweLf6ZRsk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 288493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/49i0yyGEPxP19NpGhNhsTv" - }, - "href": "https://api.spotify.com/v1/tracks/49i0yyGEPxP19NpGhNhsTv", - "id": "49i0yyGEPxP19NpGhNhsTv", - "name": "Singularity", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:49i0yyGEPxP19NpGhNhsTv", - "is_local": false - } - ] - }, - "copyrights": [ - { "text": "2020 Smihilism Records", "type": "C" }, - { "text": "2020 Smihilism Records", "type": "P" } - ], - "external_ids": { "upc": "195916707034" }, - "genres": [], - "label": "Smihilism Records", - "popularity": 20 + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 288493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/49i0yyGEPxP19NpGhNhsTv" + }, + "href": "https://api.spotify.com/v1/tracks/49i0yyGEPxP19NpGhNhsTv", + "id": "49i0yyGEPxP19NpGhNhsTv", + "name": "Singularity", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:49i0yyGEPxP19NpGhNhsTv", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2020 Smihilism Records", "type": "C" }, + { "text": "2020 Smihilism Records", "type": "P" } + ], + "external_ids": { "upc": "195916707034" }, + "genres": [], + "label": "Smihilism Records", + "popularity": 20 } diff --git a/tests/fixtures/new_playlist.json b/tests/fixtures/new_playlist.json index 98f85f2..f6a0132 100644 --- a/tests/fixtures/new_playlist.json +++ b/tests/fixtures/new_playlist.json @@ -1,39 +1,39 @@ { - "collaborative": false, - "description": "New playlist description", + "collaborative": false, + "description": "New playlist description", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" + }, + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", + "id": "2dGgoMPWpapXYA6rX7ZbbB", + "images": [], + "primary_color": null, + "name": "New Playlist", + "type": "playlist", + "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB", + "owner": { + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649", + "display_name": null, "external_urls": { - "spotify": "https://open.spotify.com/playlist/2dGgoMPWpapXYA6rX7ZbbB" - }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB", - "id": "2dGgoMPWpapXYA6rX7ZbbB", - "images": [], - "primary_color": null, - "name": "New Playlist", - "type": "playlist", - "uri": "spotify:playlist:2dGgoMPWpapXYA6rX7ZbbB", - "owner": { - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649", - "display_name": null, - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - } - }, - "public": false, - "snapshot_id": "AAABRUSqXDRHND7RgBQhEmksjQG8o/A+", - "tracks": { - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", - "total": 0, - "items": [] + "spotify": "https://open.spotify.com/user/1112264649" } + }, + "public": false, + "snapshot_id": "AAABRUSqXDRHND7RgBQhEmksjQG8o/A+", + "tracks": { + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "href": "https://api.spotify.com/v1/playlists/2dGgoMPWpapXYA6rX7ZbbB/tracks", + "total": 0, + "items": [] + } } diff --git a/tests/fixtures/playback_1.json b/tests/fixtures/playback_1.json index aa19225..f60200f 100644 --- a/tests/fixtures/playback_1.json +++ b/tests/fixtures/playback_1.json @@ -1,478 +1,478 @@ { - "device": { - "id": "21dac6b0e0a1f181870fdc9749b2656466557687", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "DESKTOP-BKC5SIK", - "supports_volume": true, - "type": "Computer", - "volume_percent": 69 + "device": { + "id": "21dac6b0e0a1f181870fdc9749b2656466557687", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "DESKTOP-BKC5SIK", + "supports_volume": true, + "type": "Computer", + "volume_percent": 69 + }, + "shuffle_state": false, + "repeat_state": "off", + "timestamp": 1701284951675, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/collection/tracks" }, - "shuffle_state": false, - "repeat_state": "off", - "timestamp": 1701284951675, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/collection/tracks" - }, - "href": "https://api.spotify.com/v1/me/tracks", - "type": "collection", - "uri": "spotify:user:1112264649:collection" - }, - "progress_ms": 225564, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1iasbpTobDPa5BmsK0Rz1f" - }, - "href": "https://api.spotify.com/v1/albums/1iasbpTobDPa5BmsK0Rz1f", - "id": "1iasbpTobDPa5BmsK0Rz1f", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722", - "width": 64 - } - ], - "name": "WARRIORS, Pt. 1 (Final Stage)", - "release_date": "2023-10-20", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1iasbpTobDPa5BmsK0Rz1f" + "href": "https://api.spotify.com/v1/me/tracks", + "type": "collection", + "uri": "spotify:user:1112264649:collection" + }, + "progress_ms": 225564, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iasbpTobDPa5BmsK0Rz1f" + }, + "href": "https://api.spotify.com/v1/albums/1iasbpTobDPa5BmsK0Rz1f", + "id": "1iasbpTobDPa5BmsK0Rz1f", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273326db007f167499d23171722", + "width": 640 }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268525, - "explicit": false, - "external_ids": { - "isrc": "QZTB52388870" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02326db007f167499d23171722", + "width": 300 }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851326db007f167499d23171722", + "width": 64 + } + ], + "name": "WARRIORS, Pt. 1 (Final Stage)", + "release_date": "2023-10-20", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iasbpTobDPa5BmsK0Rz1f" + }, + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv" + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" }, - "href": "https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv", - "id": "1FyXbzOlq3dkxaB6iRsETv", - "is_local": false, - "name": "WARRIORS, Pt. 1 (Final Stage)", - "popularity": 38, - "preview_url": "https://p.scdn.co/mp3-preview/f96aa9e00d2579b9e94aa3f0e73fceecfa825382?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 1, - "type": "track", - "uri": "spotify:track:1FyXbzOlq3dkxaB6iRsETv" + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268525, + "explicit": false, + "external_ids": { + "isrc": "QZTB52388870" }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } + "external_urls": { + "spotify": "https://open.spotify.com/track/1FyXbzOlq3dkxaB6iRsETv" }, - "is_playing": true + "href": "https://api.spotify.com/v1/tracks/1FyXbzOlq3dkxaB6iRsETv", + "id": "1FyXbzOlq3dkxaB6iRsETv", + "is_local": false, + "name": "WARRIORS, Pt. 1 (Final Stage)", + "popularity": 38, + "preview_url": "https://p.scdn.co/mp3-preview/f96aa9e00d2579b9e94aa3f0e73fceecfa825382?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 1, + "type": "track", + "uri": "spotify:track:1FyXbzOlq3dkxaB6iRsETv" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_2.json b/tests/fixtures/playback_2.json index b6d5c85..39ee16c 100644 --- a/tests/fixtures/playback_2.json +++ b/tests/fixtures/playback_2.json @@ -1,462 +1,462 @@ { - "device": { - "id": "a19f7a03a25aff3e43f457a328a8ba67a8c44789", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "Master Bathroom Speaker", - "type": "Speaker", - "volume_percent": 25 + "device": { + "id": "a19f7a03a25aff3e43f457a328a8ba67a8c44789", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "Master Bathroom Speaker", + "type": "Speaker", + "volume_percent": 25 + }, + "shuffle_state": false, + "repeat_state": "off", + "timestamp": 1689639030791, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm" }, - "shuffle_state": false, - "repeat_state": "off", - "timestamp": 1689639030791, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/playlist/2r35vbe6hHl6yDSMfjKgmm" - }, - "href": "https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm", - "type": "playlist", - "uri": "spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm" - }, - "progress_ms": 249367, - "item": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq" - }, - "href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq", - "id": "2Hkut4rAAyrQxRdof7FVJq", - "name": "Rush", - "type": "artist", - "uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq" - } - ], - "available_markets": [ - "AD", - "AE", - "AG", - "AL", - "AM", - "AO", - "AR", - "AT", - "AU", - "AZ", - "BA", - "BB", - "BD", - "BE", - "BF", - "BG", - "BH", - "BI", - "BJ", - "BN", - "BO", - "BR", - "BS", - "BT", - "BW", - "BY", - "BZ", - "CD", - "CG", - "CH", - "CI", - "CL", - "CM", - "CO", - "CR", - "CV", - "CW", - "CY", - "CZ", - "DE", - "DJ", - "DK", - "DM", - "DO", - "DZ", - "EC", - "EE", - "EG", - "ES", - "FI", - "FJ", - "FM", - "FR", - "GA", - "GB", - "GD", - "GH", - "GM", - "GN", - "GQ", - "GR", - "GT", - "GW", - "GY", - "HK", - "HN", - "HR", - "HT", - "HU", - "ID", - "IE", - "IL", - "IN", - "IQ", - "IS", - "IT", - "JM", - "JO", - "KE", - "KG", - "KH", - "KI", - "KM", - "KN", - "KR", - "KW", - "KZ", - "LA", - "LB", - "LC", - "LI", - "LK", - "LR", - "LS", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MG", - "MH", - "MK", - "ML", - "MN", - "MO", - "MR", - "MT", - "MU", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NE", - "NG", - "NI", - "NL", - "NO", - "NP", - "NR", - "NZ", - "OM", - "PA", - "PE", - "PG", - "PH", - "PK", - "PL", - "PS", - "PT", - "PW", - "PY", - "QA", - "RO", - "RS", - "RW", - "SA", - "SB", - "SC", - "SE", - "SG", - "SI", - "SK", - "SL", - "SN", - "SR", - "ST", - "SV", - "SZ", - "TD", - "TG", - "TH", - "TJ", - "TL", - "TN", - "TO", - "TR", - "TT", - "TV", - "TW", - "TZ", - "UA", - "UG", - "US", - "UY", - "UZ", - "VC", - "VE", - "VN", - "WS", - "XK", - "ZA", - "ZM", - "ZW" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3nUNxSh2szhmN7iifAKv5i" - }, - "href": "https://api.spotify.com/v1/albums/3nUNxSh2szhmN7iifAKv5i", - "id": "3nUNxSh2szhmN7iifAKv5i", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983", - "width": 64 - } - ], - "name": "Permanent Waves", - "release_date": "1980-01-01", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:3nUNxSh2szhmN7iifAKv5i" + "href": "https://api.spotify.com/v1/playlists/2r35vbe6hHl6yDSMfjKgmm", + "type": "playlist", + "uri": "spotify:user:rushofficial:playlist:2r35vbe6hHl6yDSMfjKgmm" + }, + "progress_ms": 249367, + "item": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq" + }, + "href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq", + "id": "2Hkut4rAAyrQxRdof7FVJq", + "name": "Rush", + "type": "artist", + "uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq" + } + ], + "available_markets": [ + "AD", + "AE", + "AG", + "AL", + "AM", + "AO", + "AR", + "AT", + "AU", + "AZ", + "BA", + "BB", + "BD", + "BE", + "BF", + "BG", + "BH", + "BI", + "BJ", + "BN", + "BO", + "BR", + "BS", + "BT", + "BW", + "BY", + "BZ", + "CD", + "CG", + "CH", + "CI", + "CL", + "CM", + "CO", + "CR", + "CV", + "CW", + "CY", + "CZ", + "DE", + "DJ", + "DK", + "DM", + "DO", + "DZ", + "EC", + "EE", + "EG", + "ES", + "FI", + "FJ", + "FM", + "FR", + "GA", + "GB", + "GD", + "GH", + "GM", + "GN", + "GQ", + "GR", + "GT", + "GW", + "GY", + "HK", + "HN", + "HR", + "HT", + "HU", + "ID", + "IE", + "IL", + "IN", + "IQ", + "IS", + "IT", + "JM", + "JO", + "KE", + "KG", + "KH", + "KI", + "KM", + "KN", + "KR", + "KW", + "KZ", + "LA", + "LB", + "LC", + "LI", + "LK", + "LR", + "LS", + "LT", + "LU", + "LV", + "MC", + "MD", + "ME", + "MG", + "MH", + "MK", + "ML", + "MN", + "MO", + "MR", + "MT", + "MU", + "MV", + "MW", + "MX", + "MY", + "MZ", + "NA", + "NE", + "NG", + "NI", + "NL", + "NO", + "NP", + "NR", + "NZ", + "OM", + "PA", + "PE", + "PG", + "PH", + "PK", + "PL", + "PS", + "PT", + "PW", + "PY", + "QA", + "RO", + "RS", + "RW", + "SA", + "SB", + "SC", + "SE", + "SG", + "SI", + "SK", + "SL", + "SN", + "SR", + "ST", + "SV", + "SZ", + "TD", + "TG", + "TH", + "TJ", + "TL", + "TN", + "TO", + "TR", + "TT", + "TV", + "TW", + "TZ", + "UA", + "UG", + "US", + "UY", + "UZ", + "VC", + "VE", + "VN", + "WS", + "XK", + "ZA", + "ZM", + "ZW" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3nUNxSh2szhmN7iifAKv5i" + }, + "href": "https://api.spotify.com/v1/albums/3nUNxSh2szhmN7iifAKv5i", + "id": "3nUNxSh2szhmN7iifAKv5i", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27306c0d7ebcabad0c39b566983", + "width": 640 }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq" - }, - "href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq", - "id": "2Hkut4rAAyrQxRdof7FVJq", - "name": "Rush", - "type": "artist", - "uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 296466, - "explicit": false, - "external_ids": { - "isrc": "USMR18070028" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0206c0d7ebcabad0c39b566983", + "width": 300 }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485106c0d7ebcabad0c39b566983", + "width": 64 + } + ], + "name": "Permanent Waves", + "release_date": "1980-01-01", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:3nUNxSh2szhmN7iifAKv5i" + }, + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p" + "spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq" }, - "href": "https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p", - "id": "4e9hUiLsN4mx61ARosFi7p", - "is_local": false, - "name": "The Spirit Of Radio", - "popularity": 68, - "preview_url": "https://p.scdn.co/mp3-preview/75cc52f458b2416f33f15c499783c51119ba9a93?cid=20bbc62823a3412ba5267ea5398e52d0", - "track_number": 1, - "type": "track", - "uri": "spotify:track:4e9hUiLsN4mx61ARosFi7p" + "href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq", + "id": "2Hkut4rAAyrQxRdof7FVJq", + "name": "Rush", + "type": "artist", + "uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 296466, + "explicit": false, + "external_ids": { + "isrc": "USMR18070028" }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "skipping_prev": true, - "toggling_repeat_track": true - } + "external_urls": { + "spotify": "https://open.spotify.com/track/4e9hUiLsN4mx61ARosFi7p" }, - "is_playing": true + "href": "https://api.spotify.com/v1/tracks/4e9hUiLsN4mx61ARosFi7p", + "id": "4e9hUiLsN4mx61ARosFi7p", + "is_local": false, + "name": "The Spirit Of Radio", + "popularity": 68, + "preview_url": "https://p.scdn.co/mp3-preview/75cc52f458b2416f33f15c499783c51119ba9a93?cid=20bbc62823a3412ba5267ea5398e52d0", + "track_number": 1, + "type": "track", + "uri": "spotify:track:4e9hUiLsN4mx61ARosFi7p" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "skipping_prev": true, + "toggling_repeat_track": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_3.json b/tests/fixtures/playback_3.json index b03927f..cdd8fea 100644 --- a/tests/fixtures/playback_3.json +++ b/tests/fixtures/playback_3.json @@ -1,478 +1,478 @@ { - "device": { - "id": null, - "is_active": true, - "is_private_session": false, - "is_restricted": true, - "name": "Sonos Roam SL", - "supports_volume": true, - "type": "Speaker", - "volume_percent": 34 + "device": { + "id": null, + "is_active": true, + "is_private_session": false, + "is_restricted": true, + "name": "Sonos Roam SL", + "supports_volume": true, + "type": "Speaker", + "volume_percent": 34 + }, + "shuffle_state": false, + "repeat_state": "off", + "timestamp": 1701294541372, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/collection/tracks" }, - "shuffle_state": false, - "repeat_state": "off", - "timestamp": 1701294541372, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/collection/tracks" - }, - "href": "https://api.spotify.com/v1/me/tracks", - "type": "collection", - "uri": "spotify:user:1112264649:collection" - }, - "progress_ms": 7919, - "item": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "name": "Joost", - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3qCsGHHWG6t9izvmsE47jr" - }, - "href": "https://api.spotify.com/v1/albums/3qCsGHHWG6t9izvmsE47jr", - "id": "3qCsGHHWG6t9izvmsE47jr", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c", - "width": 64 - } - ], - "name": "Ome Robert", - "release_date": "2018-04-26", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:3qCsGHHWG6t9izvmsE47jr" + "href": "https://api.spotify.com/v1/me/tracks", + "type": "collection", + "uri": "spotify:user:1112264649:collection" + }, + "progress_ms": 7919, + "item": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "name": "Joost", + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3qCsGHHWG6t9izvmsE47jr" + }, + "href": "https://api.spotify.com/v1/albums/3qCsGHHWG6t9izvmsE47jr", + "id": "3qCsGHHWG6t9izvmsE47jr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ae0956d669aca836c4fb5a0c", + "width": 640 }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "name": "Joost", - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 152500, - "explicit": true, - "external_ids": { - "isrc": "NLG661800442" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ae0956d669aca836c4fb5a0c", + "width": 300 }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ae0956d669aca836c4fb5a0c", + "width": 64 + } + ], + "name": "Ome Robert", + "release_date": "2018-04-26", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3qCsGHHWG6t9izvmsE47jr" + }, + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z" + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" }, - "href": "https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z", - "id": "3TE49HXyoNczZk2IBhP87z", - "is_local": false, - "name": "Ome Robert", - "popularity": 50, - "preview_url": "https://p.scdn.co/mp3-preview/5921a992d9086f054c28ee15ebd4912c09b13378?cid=c7c59b798aab4892ac040a25f7dd1575", - "track_number": 1, - "type": "track", - "uri": "spotify:track:3TE49HXyoNczZk2IBhP87z" + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "name": "Joost", + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152500, + "explicit": true, + "external_ids": { + "isrc": "NLG661800442" }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true - } + "external_urls": { + "spotify": "https://open.spotify.com/track/3TE49HXyoNczZk2IBhP87z" }, - "is_playing": true + "href": "https://api.spotify.com/v1/tracks/3TE49HXyoNczZk2IBhP87z", + "id": "3TE49HXyoNczZk2IBhP87z", + "is_local": false, + "name": "Ome Robert", + "popularity": 50, + "preview_url": "https://p.scdn.co/mp3-preview/5921a992d9086f054c28ee15ebd4912c09b13378?cid=c7c59b798aab4892ac040a25f7dd1575", + "track_number": 1, + "type": "track", + "uri": "spotify:track:3TE49HXyoNczZk2IBhP87z" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_4.json b/tests/fixtures/playback_4.json index ea06928..59f0c49 100644 --- a/tests/fixtures/playback_4.json +++ b/tests/fixtures/playback_4.json @@ -1,67 +1,67 @@ { - "device": { - "id": "aee274e4bbe6b44cf3b22ad3b68eca3a6954a701", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "Joost’s MacBook Pro", - "supports_volume": true, - "type": "Computer", - "volume_percent": 67 + "device": { + "id": "aee274e4bbe6b44cf3b22ad3b68eca3a6954a701", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "Joost’s MacBook Pro", + "supports_volume": true, + "type": "Computer", + "volume_percent": 67 + }, + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1731336494187, + "context": null, + "progress_ms": 22215, + "item": { + "album": { + "album_type": null, + "artists": [], + "available_markets": [], + "external_urls": {}, + "href": null, + "id": null, + "images": [], + "name": "", + "release_date": null, + "release_date_precision": null, + "type": "album", + "uri": null }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1731336494187, - "context": null, - "progress_ms": 22215, - "item": { - "album": { - "album_type": null, - "artists": [], - "available_markets": [], - "external_urls": {}, - "href": null, - "id": null, - "images": [], - "name": "", - "release_date": null, - "release_date_precision": null, - "type": "album", - "uri": null - }, - "artists": [ - { - "external_urls": {}, - "href": null, - "id": null, - "name": "Four Tet x Fred again.. x Skrillex", - "type": "artist", - "uri": null - } - ], - "available_markets": [], - "disc_number": 0, - "duration_ms": 5432000, - "explicit": false, - "external_ids": {}, + "artists": [ + { "external_urls": {}, "href": null, "id": null, - "is_local": true, - "name": "Coachella 2023", - "popularity": 0, - "preview_url": null, - "track_number": 0, - "type": "track", - "uri": "spotify:local:Four+Tet+x+Fred+again..+x+Skrillex::Coachella+2023:5432" - }, - "currently_playing_type": "track", - "actions": { - "disallows": { - "resuming": true, - "skipping_prev": true - } - }, - "is_playing": true + "name": "Four Tet x Fred again.. x Skrillex", + "type": "artist", + "uri": null + } + ], + "available_markets": [], + "disc_number": 0, + "duration_ms": 5432000, + "explicit": false, + "external_ids": {}, + "external_urls": {}, + "href": null, + "id": null, + "is_local": true, + "name": "Coachella 2023", + "popularity": 0, + "preview_url": null, + "track_number": 0, + "type": "track", + "uri": "spotify:local:Four+Tet+x+Fred+again..+x+Skrillex::Coachella+2023:5432" + }, + "currently_playing_type": "track", + "actions": { + "disallows": { + "resuming": true, + "skipping_prev": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_audiobook_1.json b/tests/fixtures/playback_audiobook_1.json index 8f3af09..528e1af 100644 --- a/tests/fixtures/playback_audiobook_1.json +++ b/tests/fixtures/playback_audiobook_1.json @@ -1,297 +1,297 @@ { - "device": { - "id": "9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8", - "is_active": true, - "is_private_session": false, - "is_restricted": false, - "name": "Nothing phone (1)", - "supports_volume": false, - "type": "Smartphone", - "volume_percent": 100 + "device": { + "id": "9e3c475ee7d51dbebb4547dbc5b57e35ee6707f8", + "is_active": true, + "is_private_session": false, + "is_restricted": false, + "name": "Nothing phone (1)", + "supports_volume": false, + "type": "Smartphone", + "volume_percent": 100 + }, + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1729276241451, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1729276241451, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", - "type": "show", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + }, + "progress_ms": 15611, + "item": { + "audio_preview_url": null, + "description": "", + "duration_ms": 249652, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" }, - "progress_ms": 15611, - "item": { - "audio_preview_url": null, - "description": "", - "duration_ms": 249652, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NW4BmIOG0qzQZgtLgsydR" - }, - "href": "https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR", - "html_description": "", - "id": "3NW4BmIOG0qzQZgtLgsydR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "is_externally_hosted": false, - "language": "", - "languages": [""], - "name": "Track 1", - "release_date": "0000", - "release_date_precision": "year", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "href": "https://api.spotify.com/v1/episodes/3NW4BmIOG0qzQZgtLgsydR", + "html_description": "", + "id": "3NW4BmIOG0qzQZgtLgsydR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", + "width": 64 + } + ], + "is_externally_hosted": false, + "language": "", + "languages": [""], + "name": "Track 1", + "release_date": "0000", + "release_date_precision": "year", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.


‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
Rob Cobben, cultuurverslaggever Dagblad De Limburger

", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "html_description": "Author(s): Anya NiewierraNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p><p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p><p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p><p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p><br><p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>Heleen Spanjaard, <i>Margriet</i></p><p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", + "width": 640 }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink

Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden.

De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.

Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.

Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.


‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’
Heleen Spanjaard, Margriet

‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’
Rob Cobben, cultuurverslaggever Dagblad De Limburger

", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", - "html_description": "Author(s): Anya NiewierraNarrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink<p>Na het succes van de bestsellers <i>Het bloemenmeisje</i> en <i>De Camino</i> komt Anya Niewierra met <i>De nomade</i>. Een aangrijpende thriller over vaderliefde en een verborgen verleden.</p><p>De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal.</p><p>Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie.</p><p>Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim.</p><br><p>‘Anya Niewierra heeft met <i>De nomade</i> weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan <i>De Camino</i>.’<br>Heleen Spanjaard, <i>Margriet</i></p><p>‘Verrassend, meeslepend en bloedstollend. <i>De nomade</i> is een waardige opvolger van <i>De Camino</i>.’<br>Rob Cobben, cultuurverslaggever <i>Dagblad De Limburger</i></p>", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8ecf13d909d494c02ba057feb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", - "width": 64 - } - ], - "is_externally_hosted": null, - "languages": ["nl"], - "media_type": "audio", - "name": "De nomade", - "publisher": "Anya Niewierra", - "total_episodes": null, - "type": "show", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5becf13d909d494c02ba057feb", + "width": 300 }, - "type": "episode", - "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR" - }, - "currently_playing_type": "episode", - "actions": { - "disallows": { - "resuming": true, - "skipping_prev": true + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703becf13d909d494c02ba057feb", + "width": 64 } + ], + "is_externally_hosted": null, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "publisher": "Anya Niewierra", + "total_episodes": null, + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" }, - "is_playing": true + "type": "episode", + "uri": "spotify:episode:3NW4BmIOG0qzQZgtLgsydR" + }, + "currently_playing_type": "episode", + "actions": { + "disallows": { + "resuming": true, + "skipping_prev": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playback_episode_1.json b/tests/fixtures/playback_episode_1.json index 95447f1..f267c6f 100644 --- a/tests/fixtures/playback_episode_1.json +++ b/tests/fixtures/playback_episode_1.json @@ -1,297 +1,297 @@ { - "device": { - "id": null, - "is_active": true, - "is_private_session": false, - "is_restricted": true, - "name": "Sonos Roam SL", - "supports_volume": true, - "type": "Speaker", - "volume_percent": 46 + "device": { + "id": null, + "is_active": true, + "is_private_session": false, + "is_restricted": true, + "name": "Sonos Roam SL", + "supports_volume": true, + "type": "Speaker", + "volume_percent": 46 + }, + "shuffle_state": false, + "smart_shuffle": false, + "repeat_state": "off", + "timestamp": 1728219605131, + "context": { + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" }, - "shuffle_state": false, - "smart_shuffle": false, - "repeat_state": "off", - "timestamp": 1728219605131, - "context": { - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + }, + "progress_ms": 5410, + "item": { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" }, - "progress_ms": 5410, - "item": { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3o0RYoo5iOMKSmEbunsbvW", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + }, + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" - }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en-US"], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "total_episodes": 120, - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" - }, - "currently_playing_type": "episode", - "actions": { - "disallows": { - "resuming": true + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "total_episodes": 120, + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD" }, - "is_playing": true + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + }, + "currently_playing_type": "episode", + "actions": { + "disallows": { + "resuming": true + } + }, + "is_playing": true } diff --git a/tests/fixtures/playlist_1.json b/tests/fixtures/playlist_1.json index c6d4d77..a8bf938 100644 --- a/tests/fixtures/playlist_1.json +++ b/tests/fixtures/playlist_1.json @@ -1,1959 +1,1959 @@ { - "collaborative": false, - "description": "", + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" + }, + "followers": { "href": null, "total": 0 }, + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track", + "id": "1Cp6VQCKf2VL4sP09jN9oX", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": null + } + ], + "name": "To find", + "owner": { + "display_name": "Joost Lekkerkerker", "external_urls": { - "spotify": "https://open.spotify.com/playlist/1Cp6VQCKf2VL4sP09jN9oX" + "spotify": "https://open.spotify.com/user/1112264649" }, - "followers": { "href": null, "total": 0 }, - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX?additional_types=track", - "id": "1Cp6VQCKf2VL4sP09jN9oX", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": null - } - ], - "name": "To find", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks?offset=0&limit=100&additional_types=track", + "items": [ + { + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAqEcxS92ddZ6R83Q8TWFhYshm18s", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/tracks?offset=0&limit=100&additional_types=track", - "items": [ - { - "added_at": "2025-07-29T21:11:55Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64, - "height": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" }, - "item": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64, - "height": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" }, - "video_thumbnail": { "url": null } + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 1 - }, - "items": { - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=100&additional_types=track", - "items": [ + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ { - "added_at": "2025-07-29T21:11:55Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "video_thumbnail": { "url": null } + } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 1 + }, + "items": { + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=100&additional_types=track", + "items": [ + { + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64, - "height": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" }, - "item": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64, - "height": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64, + "height": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" }, - "video_thumbnail": { "url": null } + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 1 - }, - "type": "playlist", - "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "video_thumbnail": { "url": null } + } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 1 + }, + "type": "playlist", + "uri": "spotify:playlist:1Cp6VQCKf2VL4sP09jN9oX" } diff --git a/tests/fixtures/playlist_2.json b/tests/fixtures/playlist_2.json index aa5126f..4cea3fb 100644 --- a/tests/fixtures/playlist_2.json +++ b/tests/fixtures/playlist_2.json @@ -1,200 +1,200 @@ { - "collaborative": false, - "description": "", + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph" + }, + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph?locale=en-US%2Cen%3Bq%3D0.5", + "id": "3toMXYM91T55pKzuysH5Ph", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af", + "width": null + } + ], + "name": "Starred", + "owner": { + "display_name": "chadandcaren", "external_urls": { - "spotify": "https://open.spotify.com/playlist/3toMXYM91T55pKzuysH5Ph" + "spotify": "https://open.spotify.com/user/chadandcaren" }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph?locale=en-US%2Cen%3Bq%3D0.5", - "id": "3toMXYM91T55pKzuysH5Ph", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e022f9b47bdc2b1c7cae7b014af", - "width": null - } - ], - "name": "Starred", - "owner": { - "display_name": "chadandcaren", - "external_urls": { + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAAAoRTkoeSGwZYJQxBuBVJ4+cWjJZf", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph/tracks?offset=0&limit=100&locale=en-US,en;q%3D0.5", + "items": [ + { + "added_at": "2013-01-19T21:31:09Z", + "added_by": { + "external_urls": { "spotify": "https://open.spotify.com/user/chadandcaren" + }, + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAAAoRTkoeSGwZYJQxBuBVJ4+cWjJZf", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/3toMXYM91T55pKzuysH5Ph/tracks?offset=0&limit=100&locale=en-US,en;q%3D0.5", - "items": [ + "is_local": true, + "primary_color": null, + "track": { + "album": { + "album_type": null, + "available_markets": [], + "external_urls": {}, + "href": null, + "id": null, + "images": [], + "name": "The Score", + "release_date": null, + "release_date_precision": null, + "type": "album", + "uri": null, + "artists": [] + }, + "artists": [ { - "added_at": "2013-01-19T21:31:09Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/chadandcaren" - }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" - }, - "is_local": true, - "primary_color": null, - "track": { - "album": { - "album_type": null, - "available_markets": [], - "external_urls": {}, - "href": null, - "id": null, - "images": [], - "name": "The Score", - "release_date": null, - "release_date_precision": null, - "type": "album", - "uri": null, - "artists": [] - }, - "artists": [ - { - "external_urls": {}, - "href": null, - "id": null, - "name": "Fugees (Refugee Camp)", - "type": "artist", - "uri": null - } - ], - "available_markets": [], - "explicit": false, - "preview_url": null, - "type": "track", - "disc_number": 0, - "external_ids": {}, - "external_urls": {}, - "href": null, - "id": null, - "duration_ms": 273000, - "name": "No Woman, No Cry", - "uri": "spotify:local:Fugees+%28Refugee+Camp%29:The+Score:No+Woman%2C+No+Cry:273", - "popularity": 0, - "track_number": 0, - "is_local": true + "external_urls": {}, + "href": null, + "id": null, + "name": "Fugees (Refugee Camp)", + "type": "artist", + "uri": null + } + ], + "available_markets": [], + "explicit": false, + "preview_url": null, + "type": "track", + "disc_number": 0, + "external_ids": {}, + "external_urls": {}, + "href": null, + "id": null, + "duration_ms": 273000, + "name": "No Woman, No Cry", + "uri": "spotify:local:Fugees+%28Refugee+Camp%29:The+Score:No+Woman%2C+No+Cry:273", + "popularity": 0, + "track_number": 0, + "is_local": true + }, + "video_thumbnail": { + "url": null + } + }, + { + "added_at": "2013-01-19T22:16:08Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/chadandcaren" + }, + "href": "https://api.spotify.com/v1/users/chadandcaren", + "id": "chadandcaren", + "type": "user", + "uri": "spotify:user:chadandcaren" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": "https://p.scdn.co/mp3-preview/5327d47d3f8c601cc8e783aaed138669c6331e31?cid=cfe923b2d660439caf2b557b21f31221", + "available_markets": [], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [], + "type": "album", + "album_type": "album", + "href": "https://api.spotify.com/v1/albums/3KVfMVtOmoVCgihLE4HoBr", + "id": "3KVfMVtOmoVCgihLE4HoBr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919", + "width": 64, + "height": 64 + } + ], + "name": "Be OK", + "release_date": "2008-01-01", + "release_date_precision": "day", + "uri": "spotify:album:3KVfMVtOmoVCgihLE4HoBr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" }, - "video_thumbnail": { - "url": null - } + "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", + "id": "2vm8GdHyrJh2O2MfbQFYG0", + "name": "Ingrid Michaelson", + "type": "artist", + "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3KVfMVtOmoVCgihLE4HoBr" }, + "total_tracks": 11 + }, + "artists": [ { - "added_at": "2013-01-19T22:16:08Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/chadandcaren" - }, - "href": "https://api.spotify.com/v1/users/chadandcaren", - "id": "chadandcaren", - "type": "user", - "uri": "spotify:user:chadandcaren" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": "https://p.scdn.co/mp3-preview/5327d47d3f8c601cc8e783aaed138669c6331e31?cid=cfe923b2d660439caf2b557b21f31221", - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "album", - "href": "https://api.spotify.com/v1/albums/3KVfMVtOmoVCgihLE4HoBr", - "id": "3KVfMVtOmoVCgihLE4HoBr", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273866dc0fd5fbfd51fd4c50919", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02866dc0fd5fbfd51fd4c50919", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851866dc0fd5fbfd51fd4c50919", - "width": 64, - "height": 64 - } - ], - "name": "Be OK", - "release_date": "2008-01-01", - "release_date_precision": "day", - "uri": "spotify:album:3KVfMVtOmoVCgihLE4HoBr", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" - }, - "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", - "id": "2vm8GdHyrJh2O2MfbQFYG0", - "name": "Ingrid Michaelson", - "type": "artist", - "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3KVfMVtOmoVCgihLE4HoBr" - }, - "total_tracks": 11 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" - }, - "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", - "id": "2vm8GdHyrJh2O2MfbQFYG0", - "name": "Ingrid Michaelson", - "type": "artist", - "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" - } - ], - "disc_number": 1, - "track_number": 10, - "duration_ms": 148706, - "external_ids": { - "isrc": "ushm80865849" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP" - }, - "href": "https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP", - "id": "4oeRfmp9XpKWym6YD1WvBP", - "name": "You and I", - "popularity": 0, - "uri": "spotify:track:4oeRfmp9XpKWym6YD1WvBP", - "is_local": false - }, - "video_thumbnail": { - "url": null - } + "external_urls": { + "spotify": "https://open.spotify.com/artist/2vm8GdHyrJh2O2MfbQFYG0" + }, + "href": "https://api.spotify.com/v1/artists/2vm8GdHyrJh2O2MfbQFYG0", + "id": "2vm8GdHyrJh2O2MfbQFYG0", + "name": "Ingrid Michaelson", + "type": "artist", + "uri": "spotify:artist:2vm8GdHyrJh2O2MfbQFYG0" } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 2 - }, - "type": "playlist", - "uri": "spotify:playlist:3toMXYM91T55pKzuysH5Ph" + ], + "disc_number": 1, + "track_number": 10, + "duration_ms": 148706, + "external_ids": { + "isrc": "ushm80865849" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4oeRfmp9XpKWym6YD1WvBP" + }, + "href": "https://api.spotify.com/v1/tracks/4oeRfmp9XpKWym6YD1WvBP", + "id": "4oeRfmp9XpKWym6YD1WvBP", + "name": "You and I", + "popularity": 0, + "uri": "spotify:track:4oeRfmp9XpKWym6YD1WvBP", + "is_local": false + }, + "video_thumbnail": { + "url": null + } + } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 2 + }, + "type": "playlist", + "uri": "spotify:playlist:3toMXYM91T55pKzuysH5Ph" } diff --git a/tests/fixtures/playlist_3.json b/tests/fixtures/playlist_3.json index 050ed9c..6e79cf9 100644 --- a/tests/fixtures/playlist_3.json +++ b/tests/fixtures/playlist_3.json @@ -1,1076 +1,1076 @@ { - "collaborative": false, - "description": "", + "collaborative": false, + "description": "", + "external_urls": { + "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + }, + "followers": { + "href": null, + "total": 0 + }, + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1?additional_types=track&locale=en-US%2Cen%3Bq%3D0.5", + "id": "0pM0KTMXM7K5qr3sL2DPw1", + "images": [ + { + "height": null, + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": null + } + ], + "name": "Pain", + "owner": { + "display_name": "Joost Lekkerkerker", "external_urls": { - "spotify": "https://open.spotify.com/playlist/0pM0KTMXM7K5qr3sL2DPw1" + "spotify": "https://open.spotify.com/user/1112264649" }, - "followers": { - "href": null, - "total": 0 - }, - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1?additional_types=track&locale=en-US%2Cen%3Bq%3D0.5", - "id": "0pM0KTMXM7K5qr3sL2DPw1", - "images": [ - { - "height": null, - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": null - } - ], - "name": "Pain", - "owner": { - "display_name": "Joost Lekkerkerker", - "external_urls": { + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "primary_color": null, + "public": true, + "snapshot_id": "AAAABAH0cNr4wijSj1w6aGGVK+7f85Ex", + "tracks": { + "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks?offset=0&limit=100&additional_types=track&locale=en-US,en;q%3D0.5", + "items": [ + { + "added_at": "2024-05-16T20:46:24Z", + "added_by": { + "external_urls": { "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "primary_color": null, - "public": true, - "snapshot_id": "AAAABAH0cNr4wijSj1w6aGGVK+7f85Ex", - "tracks": { - "href": "https://api.spotify.com/v1/playlists/0pM0KTMXM7K5qr3sL2DPw1/tracks?offset=0&limit=100&additional_types=track&locale=en-US,en;q%3D0.5", - "items": [ - { - "added_at": "2024-05-16T20:46:24Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/5iuJo58XqIENkyviBJ4dil", - "id": "5iuJo58XqIENkyviBJ4dil", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8", - "width": 64, - "height": 64 - } - ], - "name": "Nothing To Lose", - "release_date": "2020-05-01", - "release_date_precision": "day", - "uri": "spotify:album:5iuJo58XqIENkyviBJ4dil", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" - }, - "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", - "id": "6DDZJCwSnNF361mUwPEm4G", - "name": "Saint Nomad", - "type": "artist", - "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5iuJo58XqIENkyviBJ4dil" - }, - "total_tracks": 1 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" - }, - "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", - "id": "6DDZJCwSnNF361mUwPEm4G", - "name": "Saint Nomad", - "type": "artist", - "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 164453, - "external_ids": { - "isrc": "USM1C2000002" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw" - }, - "href": "https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw", - "id": "4bEdcyI0l4zX2Ut5m5Xrhw", - "name": "Nothing To Lose", - "popularity": 19, - "uri": "spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw", - "is_local": false + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/5iuJo58XqIENkyviBJ4dil", + "id": "5iuJo58XqIENkyviBJ4dil", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273991e1b6c088e2abc38f584c8", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02991e1b6c088e2abc38f584c8", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851991e1b6c088e2abc38f584c8", + "width": 64, + "height": 64 + } + ], + "name": "Nothing To Lose", + "release_date": "2020-05-01", + "release_date_precision": "day", + "uri": "spotify:album:5iuJo58XqIENkyviBJ4dil", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" }, - "video_thumbnail": { - "url": null - } + "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", + "id": "6DDZJCwSnNF361mUwPEm4G", + "name": "Saint Nomad", + "type": "artist", + "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5iuJo58XqIENkyviBJ4dil" }, + "total_tracks": 1 + }, + "artists": [ { - "added_at": "2024-05-16T20:53:44Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/4stVgm9xx3cSNYddv8oTcL", - "id": "4stVgm9xx3cSNYddv8oTcL", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de", - "width": 640, - "height": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de", - "width": 300, - "height": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de", - "width": 64, - "height": 64 - } - ], - "name": "Borrowed Time", - "release_date": "2019-06-28", - "release_date_precision": "day", - "uri": "spotify:album:4stVgm9xx3cSNYddv8oTcL", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" - }, - "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", - "id": "6GFq3n0UYhpfzYPprpmD4K", - "name": "Doko", - "type": "artist", - "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4stVgm9xx3cSNYddv8oTcL" - }, - "total_tracks": 1 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" - }, - "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", - "id": "6GFq3n0UYhpfzYPprpmD4K", - "name": "Doko", - "type": "artist", - "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 198022, - "external_ids": { - "isrc": "AUYAK1800008" - }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8" - }, - "href": "https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8", - "id": "2kmZop34md5KWP4gn7Zuj8", - "name": "Borrowed Time", - "popularity": 0, - "uri": "spotify:track:2kmZop34md5KWP4gn7Zuj8", - "is_local": false + "external_urls": { + "spotify": "https://open.spotify.com/artist/6DDZJCwSnNF361mUwPEm4G" + }, + "href": "https://api.spotify.com/v1/artists/6DDZJCwSnNF361mUwPEm4G", + "id": "6DDZJCwSnNF361mUwPEm4G", + "name": "Saint Nomad", + "type": "artist", + "uri": "spotify:artist:6DDZJCwSnNF361mUwPEm4G" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 164453, + "external_ids": { + "isrc": "USM1C2000002" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4bEdcyI0l4zX2Ut5m5Xrhw" + }, + "href": "https://api.spotify.com/v1/tracks/4bEdcyI0l4zX2Ut5m5Xrhw", + "id": "4bEdcyI0l4zX2Ut5m5Xrhw", + "name": "Nothing To Lose", + "popularity": 19, + "uri": "spotify:track:4bEdcyI0l4zX2Ut5m5Xrhw", + "is_local": false + }, + "video_thumbnail": { + "url": null + } + }, + { + "added_at": "2024-05-16T20:53:44Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/4stVgm9xx3cSNYddv8oTcL", + "id": "4stVgm9xx3cSNYddv8oTcL", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a8f196ac6565b31a5b6689de", + "width": 640, + "height": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a8f196ac6565b31a5b6689de", + "width": 300, + "height": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a8f196ac6565b31a5b6689de", + "width": 64, + "height": 64 + } + ], + "name": "Borrowed Time", + "release_date": "2019-06-28", + "release_date_precision": "day", + "uri": "spotify:album:4stVgm9xx3cSNYddv8oTcL", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" }, - "video_thumbnail": { - "url": null - } + "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", + "id": "6GFq3n0UYhpfzYPprpmD4K", + "name": "Doko", + "type": "artist", + "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4stVgm9xx3cSNYddv8oTcL" }, + "total_tracks": 1 + }, + "artists": [ { - "added_at": "2024-11-28T10:18:44Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" - }, - "is_local": false, - "primary_color": null, - "track": { - "explicit": true, - "audio_preview_url": null, - "description": "HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group! Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.", - "duration_ms": 2071013, - "episode": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe" - }, - "href": "https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe", - "html_description": "

HAPPYYYYY SEMEN DAY!!!!!! Love you xoxox

Check out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group

Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast


Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5ytYkag3JZJ3GP2uuFAEBe", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 - } - ], - "is_externally_hosted": false, - "language": "en", - "languages": ["en"], - "name": "Toni Delivers Semen", - "release_date": "2024-11-27", - "release_date_precision": "day", - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" - }, - "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", - "html_description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5OzkclFjD6iAjtAuo7aIYt", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Toni and Ryan", - "publisher": "Toni Lodge and Ryan Jon", - "total_episodes": 780, - "type": "show", - "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" - }, - "track": false, - "type": "episode", - "uri": "spotify:episode:5ytYkag3JZJ3GP2uuFAEBe" - }, - "video_thumbnail": { - "url": null - } + "external_urls": { + "spotify": "https://open.spotify.com/artist/6GFq3n0UYhpfzYPprpmD4K" + }, + "href": "https://api.spotify.com/v1/artists/6GFq3n0UYhpfzYPprpmD4K", + "id": "6GFq3n0UYhpfzYPprpmD4K", + "name": "Doko", + "type": "artist", + "uri": "spotify:artist:6GFq3n0UYhpfzYPprpmD4K" } - ], - "limit": 100, - "next": null, - "offset": 0, - "previous": null, - "total": 3 - }, - "type": "playlist", - "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 198022, + "external_ids": { + "isrc": "AUYAK1800008" + }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2kmZop34md5KWP4gn7Zuj8" + }, + "href": "https://api.spotify.com/v1/tracks/2kmZop34md5KWP4gn7Zuj8", + "id": "2kmZop34md5KWP4gn7Zuj8", + "name": "Borrowed Time", + "popularity": 0, + "uri": "spotify:track:2kmZop34md5KWP4gn7Zuj8", + "is_local": false + }, + "video_thumbnail": { + "url": null + } + }, + { + "added_at": "2024-11-28T10:18:44Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "explicit": true, + "audio_preview_url": null, + "description": "HAPPYYYYY SEMEN DAY!!!!!! Love you xoxoxCheck out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group! Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast Hosted on Acast. See acast.com/privacy for more information.", + "duration_ms": 2071013, + "episode": true, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5ytYkag3JZJ3GP2uuFAEBe" + }, + "href": "https://api.spotify.com/v1/episodes/5ytYkag3JZJ3GP2uuFAEBe", + "html_description": "

HAPPYYYYY SEMEN DAY!!!!!! Love you xoxox

Check out our Patreon at patreon.com/ToniandRyan, and make sure you join our Facebook Group

Find #ToniAndRyan on Instagram @tonilodge and @ryan.jon OR on TikTok @toniandryanpodcast


Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5ytYkag3JZJ3GP2uuFAEBe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + } + ], + "is_externally_hosted": false, + "language": "en", + "languages": ["en"], + "name": "Toni Delivers Semen", + "release_date": "2024-11-27", + "release_date_precision": "day", + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends. Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" + }, + "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", + "html_description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5OzkclFjD6iAjtAuo7aIYt", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Toni and Ryan", + "publisher": "Toni Lodge and Ryan Jon", + "total_episodes": 780, + "type": "show", + "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" + }, + "track": false, + "type": "episode", + "uri": "spotify:episode:5ytYkag3JZJ3GP2uuFAEBe" + }, + "video_thumbnail": { + "url": null + } + } + ], + "limit": 100, + "next": null, + "offset": 0, + "previous": null, + "total": 3 + }, + "type": "playlist", + "uri": "spotify:playlist:0pM0KTMXM7K5qr3sL2DPw1" } diff --git a/tests/fixtures/playlist_cover_image.json b/tests/fixtures/playlist_cover_image.json index bc631db..cce39cc 100644 --- a/tests/fixtures/playlist_cover_image.json +++ b/tests/fixtures/playlist_cover_image.json @@ -1,7 +1,7 @@ [ - { - "height": null, - "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba", - "width": null - } + { + "height": null, + "url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000bebb8d0ce13d55f634e290f744ba", + "width": null + } ] diff --git a/tests/fixtures/playlist_items.json b/tests/fixtures/playlist_items.json index 391b39f..5de1b9c 100644 --- a/tests/fixtures/playlist_items.json +++ b/tests/fixtures/playlist_items.json @@ -1,963 +1,963 @@ { - "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=48", - "items": [ - { - "added_at": "2025-07-29T21:11:55Z", - "added_by": { - "external_urls": { - "spotify": "https://open.spotify.com/user/1112264649" - }, - "href": "https://api.spotify.com/v1/users/1112264649", - "id": "1112264649", - "type": "user", - "uri": "spotify:user:1112264649" + "href": "https://api.spotify.com/v1/playlists/1Cp6VQCKf2VL4sP09jN9oX/items?offset=0&limit=48", + "items": [ + { + "added_at": "2025-07-29T21:11:55Z", + "added_by": { + "external_urls": { + "spotify": "https://open.spotify.com/user/1112264649" + }, + "href": "https://api.spotify.com/v1/users/1112264649", + "id": "1112264649", + "type": "user", + "uri": "spotify:user:1112264649" + }, + "is_local": false, + "primary_color": null, + "track": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640 }, - "is_local": false, - "primary_color": null, - "track": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300 }, - "item": { - "preview_url": null, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "explicit": false, - "type": "track", - "episode": false, - "track": true, - "album": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "type": "album", - "album_type": "single", - "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", - "id": "7cynQpUNbqg7ZqYQu11Yng", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", - "width": 64 - } - ], - "name": "All I Need", - "release_date": "2025-01-13", - "release_date_precision": "day", - "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" - }, - "total_tracks": 5 - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" - }, - "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", - "id": "7zrkALJ9ayRjzysp4QYoEg", - "name": "Maribou State", - "type": "artist", - "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" - }, - "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", - "id": "6SKEuFZYhaTytrhtJjgnO2", - "name": "Andreya Triana", - "type": "artist", - "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" - } - ], - "disc_number": 1, - "track_number": 1, - "duration_ms": 227934, - "external_ids": { "isrc": "GBCFB2300770" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" - }, - "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", - "id": "3ZL9gPzeCnKG9l5SB1SlcZ", - "name": "All I Need", - "popularity": 46, - "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", - "is_local": false + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" }, - "video_thumbnail": { "url": null } - } - ], - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 1 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "item": { + "preview_url": null, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "explicit": false, + "type": "track", + "episode": false, + "track": true, + "album": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "type": "album", + "album_type": "single", + "href": "https://api.spotify.com/v1/albums/7cynQpUNbqg7ZqYQu11Yng", + "id": "7cynQpUNbqg7ZqYQu11Yng", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732f41071676f4f50842581fb4", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022f41071676f4f50842581fb4", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512f41071676f4f50842581fb4", + "width": 64 + } + ], + "name": "All I Need", + "release_date": "2025-01-13", + "release_date_precision": "day", + "uri": "spotify:album:7cynQpUNbqg7ZqYQu11Yng", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7cynQpUNbqg7ZqYQu11Yng" + }, + "total_tracks": 5 + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zrkALJ9ayRjzysp4QYoEg" + }, + "href": "https://api.spotify.com/v1/artists/7zrkALJ9ayRjzysp4QYoEg", + "id": "7zrkALJ9ayRjzysp4QYoEg", + "name": "Maribou State", + "type": "artist", + "uri": "spotify:artist:7zrkALJ9ayRjzysp4QYoEg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6SKEuFZYhaTytrhtJjgnO2" + }, + "href": "https://api.spotify.com/v1/artists/6SKEuFZYhaTytrhtJjgnO2", + "id": "6SKEuFZYhaTytrhtJjgnO2", + "name": "Andreya Triana", + "type": "artist", + "uri": "spotify:artist:6SKEuFZYhaTytrhtJjgnO2" + } + ], + "disc_number": 1, + "track_number": 1, + "duration_ms": 227934, + "external_ids": { "isrc": "GBCFB2300770" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZL9gPzeCnKG9l5SB1SlcZ" + }, + "href": "https://api.spotify.com/v1/tracks/3ZL9gPzeCnKG9l5SB1SlcZ", + "id": "3ZL9gPzeCnKG9l5SB1SlcZ", + "name": "All I Need", + "popularity": 46, + "uri": "spotify:track:3ZL9gPzeCnKG9l5SB1SlcZ", + "is_local": false + }, + "video_thumbnail": { "url": null } + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 1 } diff --git a/tests/fixtures/playlist_not_found.json b/tests/fixtures/playlist_not_found.json index 94872d3..4c2d811 100644 --- a/tests/fixtures/playlist_not_found.json +++ b/tests/fixtures/playlist_not_found.json @@ -1,6 +1,6 @@ { - "error": { - "status": 404, - "message": "Resource not found" - } + "error": { + "status": 404, + "message": "Resource not found" + } } diff --git a/tests/fixtures/playlist_update_items.json b/tests/fixtures/playlist_update_items.json index 9619d95..e6d05d2 100644 --- a/tests/fixtures/playlist_update_items.json +++ b/tests/fixtures/playlist_update_items.json @@ -1,3 +1,3 @@ { - "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" + "snapshot_id": "AAAACG9jmE4O/USJ4XSA7mfhfXkaxawY" } diff --git a/tests/fixtures/rate_limit.json b/tests/fixtures/rate_limit.json index 1f0648d..9628925 100644 --- a/tests/fixtures/rate_limit.json +++ b/tests/fixtures/rate_limit.json @@ -1,6 +1,6 @@ { - "error": { - "status": 429, - "message": "API rate limit exceeded" - } + "error": { + "status": 429, + "message": "API rate limit exceeded" + } } diff --git a/tests/fixtures/recently_played_tracks.json b/tests/fixtures/recently_played_tracks.json index 088d15d..9fe5f96 100644 --- a/tests/fixtures/recently_played_tracks.json +++ b/tests/fixtures/recently_played_tracks.json @@ -1,21980 +1,21980 @@ { - "items": [ - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" - }, - "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", - "id": "5NzDpcAuGAxvsyqqaUEFw1", - "name": "Enchanted Steel", - "type": "artist", - "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4Jb37p32ZFIhRO3bKUnUZ9" - }, - "href": "https://api.spotify.com/v1/albums/4Jb37p32ZFIhRO3bKUnUZ9", - "id": "4Jb37p32ZFIhRO3bKUnUZ9", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e784490e65cc1f1465653e52", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e784490e65cc1f1465653e52", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e784490e65cc1f1465653e52", - "width": 64 - } - ], - "name": "Might and Magic", - "release_date": "2025-01-02", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:4Jb37p32ZFIhRO3bKUnUZ9" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" - }, - "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", - "id": "5NzDpcAuGAxvsyqqaUEFw1", - "name": "Enchanted Steel", - "type": "artist", - "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211333, - "explicit": false, - "external_ids": { "isrc": "GXF972482646" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3HRuSJ7VheXVBmjlAXaREd" - }, - "href": "https://api.spotify.com/v1/tracks/3HRuSJ7VheXVBmjlAXaREd", - "id": "3HRuSJ7VheXVBmjlAXaREd", - "is_local": false, - "name": "We'll Fight! - Re-recorded", - "popularity": 12, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:3HRuSJ7VheXVBmjlAXaREd" + "items": [ + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" + }, + "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", + "id": "5NzDpcAuGAxvsyqqaUEFw1", + "name": "Enchanted Steel", + "type": "artist", + "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Jb37p32ZFIhRO3bKUnUZ9" + }, + "href": "https://api.spotify.com/v1/albums/4Jb37p32ZFIhRO3bKUnUZ9", + "id": "4Jb37p32ZFIhRO3bKUnUZ9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e784490e65cc1f1465653e52", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e784490e65cc1f1465653e52", + "width": 300 }, - "played_at": "2026-02-25T20:15:20.497Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e784490e65cc1f1465653e52", + "width": 64 } + ], + "name": "Might and Magic", + "release_date": "2025-01-02", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:4Jb37p32ZFIhRO3bKUnUZ9" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5NzDpcAuGAxvsyqqaUEFw1" + }, + "href": "https://api.spotify.com/v1/artists/5NzDpcAuGAxvsyqqaUEFw1", + "id": "5NzDpcAuGAxvsyqqaUEFw1", + "name": "Enchanted Steel", + "type": "artist", + "uri": "spotify:artist:5NzDpcAuGAxvsyqqaUEFw1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211333, + "explicit": false, + "external_ids": { "isrc": "GXF972482646" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3HRuSJ7VheXVBmjlAXaREd" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" - }, - "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", - "id": "3yPZUsYXU6dW8IfsDfFxUc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", - "width": 64 - } - ], - "name": "Reborn To Light", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 273661, - "explicit": false, - "external_ids": { "isrc": "ITD292603081" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" - }, - "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", - "id": "0Py136Z4oe4FmUFru0115a", - "is_local": false, - "name": "The Sacred Union (Amduat), Pt.2", - "popularity": 18, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + "href": "https://api.spotify.com/v1/tracks/3HRuSJ7VheXVBmjlAXaREd", + "id": "3HRuSJ7VheXVBmjlAXaREd", + "is_local": false, + "name": "We'll Fight! - Re-recorded", + "popularity": 12, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3HRuSJ7VheXVBmjlAXaREd" + }, + "played_at": "2026-02-25T20:15:20.497Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 }, - "played_at": "2026-02-25T20:10:38.537Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + }, + "played_at": "2026-02-25T20:10:38.537Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", - "id": "31cUZAVZ1R6pwgpFXjZ3Vo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", - "width": 64 - } - ], - "name": "Power Train", - "release_date": "2025-02-07", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186000, - "explicit": false, - "external_ids": { "isrc": "DED832400442" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" - }, - "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", - "id": "3tfDO5eV8kZ4yAk9sUCffp", - "is_local": false, - "name": "Thunder Power", - "popularity": 37, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 }, - "played_at": "2026-02-25T20:06:04.321Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" - }, - "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", - "id": "5UPcpe5RMaDUcXjTvh5LEg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", - "width": 64 - } - ], - "name": "Break The Silence", - "release_date": "2026-01-09", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226164, - "explicit": false, - "external_ids": { "isrc": "DED832500195" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" - }, - "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", - "id": "4EL8MX1m73qecwy3ECBOSp", - "is_local": false, - "name": "Let There Be Rain", - "popularity": 48, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" }, - "played_at": "2026-02-25T20:02:58.094Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + }, + "played_at": "2026-02-25T20:06:04.321Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 + } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + }, + "played_at": "2026-02-25T20:02:58.094Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" - }, - "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", - "id": "42IHJll6dkoZg9lcat1Gb8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", - "width": 64 - } - ], - "name": "One", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268360, - "explicit": false, - "external_ids": { "isrc": "DE1KY2507223" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" - }, - "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", - "id": "4kr0TJoXUl2FHU8WSBcB8T", - "is_local": false, - "name": "One", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 }, - "played_at": "2026-02-25T19:59:11.278Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" }, - "played_at": "2026-02-25T19:54:42.223Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + }, + "played_at": "2026-02-25T19:59:11.278Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/41XrkRQLSBThNGddZTKxiN" - }, - "href": "https://api.spotify.com/v1/albums/41XrkRQLSBThNGddZTKxiN", - "id": "41XrkRQLSBThNGddZTKxiN", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273130fddfb4e4da4e5e83dd829", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02130fddfb4e4da4e5e83dd829", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851130fddfb4e4da4e5e83dd829", - "width": 64 - } - ], - "name": "Wake Up The Wicked (Deluxe Version)", - "release_date": "2024-07-26", - "release_date_precision": "day", - "total_tracks": 33, - "type": "album", - "uri": "spotify:album:41XrkRQLSBThNGddZTKxiN" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200931, - "explicit": false, - "external_ids": { "isrc": "ATN262417608" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7D2UpWgfgxzGNzmcIoWd9l" - }, - "href": "https://api.spotify.com/v1/tracks/7D2UpWgfgxzGNzmcIoWd9l", - "id": "7D2UpWgfgxzGNzmcIoWd9l", - "is_local": false, - "name": "Joan of Arc", - "popularity": 44, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:7D2UpWgfgxzGNzmcIoWd9l" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" }, - "played_at": "2026-02-25T17:53:53.471Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T19:54:42.223Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/41XrkRQLSBThNGddZTKxiN" + }, + "href": "https://api.spotify.com/v1/albums/41XrkRQLSBThNGddZTKxiN", + "id": "41XrkRQLSBThNGddZTKxiN", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273130fddfb4e4da4e5e83dd829", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02130fddfb4e4da4e5e83dd829", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851130fddfb4e4da4e5e83dd829", + "width": 64 + } + ], + "name": "Wake Up The Wicked (Deluxe Version)", + "release_date": "2024-07-26", + "release_date_precision": "day", + "total_tracks": 33, + "type": "album", + "uri": "spotify:album:41XrkRQLSBThNGddZTKxiN" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200931, + "explicit": false, + "external_ids": { "isrc": "ATN262417608" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7D2UpWgfgxzGNzmcIoWd9l" + }, + "href": "https://api.spotify.com/v1/tracks/7D2UpWgfgxzGNzmcIoWd9l", + "id": "7D2UpWgfgxzGNzmcIoWd9l", + "is_local": false, + "name": "Joan of Arc", + "popularity": 44, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7D2UpWgfgxzGNzmcIoWd9l" + }, + "played_at": "2026-02-25T17:53:53.471Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" - }, - "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", - "id": "6MfUFhthUp7MKoqNEfdwN5", - "name": "Krilloan", - "type": "artist", - "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7mOeU7C1am6Ww10bYuOxe7" - }, - "href": "https://api.spotify.com/v1/albums/7mOeU7C1am6Ww10bYuOxe7", - "id": "7mOeU7C1am6Ww10bYuOxe7", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735e06e09e22062957ae4d010f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025e06e09e22062957ae4d010f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515e06e09e22062957ae4d010f", - "width": 64 - } - ], - "name": "Return Of The Heralds", - "release_date": "2024-09-20", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:7mOeU7C1am6Ww10bYuOxe7" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" - }, - "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", - "id": "6MfUFhthUp7MKoqNEfdwN5", - "name": "Krilloan", - "type": "artist", - "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219666, - "explicit": false, - "external_ids": { "isrc": "ITD292402796" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/097iQWiJYG0DTSgslNuVGZ" - }, - "href": "https://api.spotify.com/v1/tracks/097iQWiJYG0DTSgslNuVGZ", - "id": "097iQWiJYG0DTSgslNuVGZ", - "is_local": false, - "name": "Atlantean Sword", - "popularity": 16, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:097iQWiJYG0DTSgslNuVGZ" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" + }, + "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", + "id": "6MfUFhthUp7MKoqNEfdwN5", + "name": "Krilloan", + "type": "artist", + "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7mOeU7C1am6Ww10bYuOxe7" + }, + "href": "https://api.spotify.com/v1/albums/7mOeU7C1am6Ww10bYuOxe7", + "id": "7mOeU7C1am6Ww10bYuOxe7", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735e06e09e22062957ae4d010f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025e06e09e22062957ae4d010f", + "width": 300 }, - "played_at": "2026-02-25T17:50:32.269Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515e06e09e22062957ae4d010f", + "width": 64 } + ], + "name": "Return Of The Heralds", + "release_date": "2024-09-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:7mOeU7C1am6Ww10bYuOxe7" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" - }, - "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", - "id": "6COmyouHXwCeIGS1IFd1PA", - "name": "Iron Savior", - "type": "artist", - "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2b5sxuklqsGdTBgFSidkVR" - }, - "href": "https://api.spotify.com/v1/albums/2b5sxuklqsGdTBgFSidkVR", - "id": "2b5sxuklqsGdTBgFSidkVR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273de10a7f0de53283089dd3021", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02de10a7f0de53283089dd3021", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851de10a7f0de53283089dd3021", - "width": 64 - } - ], - "name": "Take On Me", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:2b5sxuklqsGdTBgFSidkVR" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" - }, - "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", - "id": "6COmyouHXwCeIGS1IFd1PA", - "name": "Iron Savior", - "type": "artist", - "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 232493, - "explicit": false, - "external_ids": { "isrc": "DE1KY2506962" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4McyElZJ5DHu8VOMQ8psiR" - }, - "href": "https://api.spotify.com/v1/tracks/4McyElZJ5DHu8VOMQ8psiR", - "id": "4McyElZJ5DHu8VOMQ8psiR", - "is_local": false, - "name": "Take On Me", - "popularity": 34, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4McyElZJ5DHu8VOMQ8psiR" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6MfUFhthUp7MKoqNEfdwN5" }, - "played_at": "2026-02-25T17:47:15.919Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/6MfUFhthUp7MKoqNEfdwN5", + "id": "6MfUFhthUp7MKoqNEfdwN5", + "name": "Krilloan", + "type": "artist", + "uri": "spotify:artist:6MfUFhthUp7MKoqNEfdwN5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219666, + "explicit": false, + "external_ids": { "isrc": "ITD292402796" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/097iQWiJYG0DTSgslNuVGZ" + }, + "href": "https://api.spotify.com/v1/tracks/097iQWiJYG0DTSgslNuVGZ", + "id": "097iQWiJYG0DTSgslNuVGZ", + "is_local": false, + "name": "Atlantean Sword", + "popularity": 16, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:097iQWiJYG0DTSgslNuVGZ" + }, + "played_at": "2026-02-25T17:50:32.269Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" + }, + "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", + "id": "6COmyouHXwCeIGS1IFd1PA", + "name": "Iron Savior", + "type": "artist", + "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2b5sxuklqsGdTBgFSidkVR" + }, + "href": "https://api.spotify.com/v1/albums/2b5sxuklqsGdTBgFSidkVR", + "id": "2b5sxuklqsGdTBgFSidkVR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273de10a7f0de53283089dd3021", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02de10a7f0de53283089dd3021", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851de10a7f0de53283089dd3021", + "width": 64 + } + ], + "name": "Take On Me", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:2b5sxuklqsGdTBgFSidkVR" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" - }, - "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", - "id": "3yPZUsYXU6dW8IfsDfFxUc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", - "width": 64 - } - ], - "name": "Reborn To Light", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 273661, - "explicit": false, - "external_ids": { "isrc": "ITD292603081" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" - }, - "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", - "id": "0Py136Z4oe4FmUFru0115a", - "is_local": false, - "name": "The Sacred Union (Amduat), Pt.2", - "popularity": 18, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6COmyouHXwCeIGS1IFd1PA" + }, + "href": "https://api.spotify.com/v1/artists/6COmyouHXwCeIGS1IFd1PA", + "id": "6COmyouHXwCeIGS1IFd1PA", + "name": "Iron Savior", + "type": "artist", + "uri": "spotify:artist:6COmyouHXwCeIGS1IFd1PA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 232493, + "explicit": false, + "external_ids": { "isrc": "DE1KY2506962" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4McyElZJ5DHu8VOMQ8psiR" + }, + "href": "https://api.spotify.com/v1/tracks/4McyElZJ5DHu8VOMQ8psiR", + "id": "4McyElZJ5DHu8VOMQ8psiR", + "is_local": false, + "name": "Take On Me", + "popularity": 34, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4McyElZJ5DHu8VOMQ8psiR" + }, + "played_at": "2026-02-25T17:47:15.919Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 }, - "played_at": "2026-02-25T17:42:58.582Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + }, + "played_at": "2026-02-25T17:42:58.582Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", - "id": "31cUZAVZ1R6pwgpFXjZ3Vo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", - "width": 64 - } - ], - "name": "Power Train", - "release_date": "2025-02-07", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186000, - "explicit": false, - "external_ids": { "isrc": "DED832400442" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" - }, - "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", - "id": "3tfDO5eV8kZ4yAk9sUCffp", - "is_local": false, - "name": "Thunder Power", - "popularity": 37, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 }, - "played_at": "2026-02-25T17:38:25.792Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" - }, - "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", - "id": "5UPcpe5RMaDUcXjTvh5LEg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", - "width": 64 - } - ], - "name": "Break The Silence", - "release_date": "2026-01-09", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226164, - "explicit": false, - "external_ids": { "isrc": "DED832500195" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" - }, - "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", - "id": "4EL8MX1m73qecwy3ECBOSp", - "is_local": false, - "name": "Let There Be Rain", - "popularity": 48, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" }, - "played_at": "2026-02-25T17:35:18.461Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + }, + "played_at": "2026-02-25T17:38:25.792Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 + } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" - }, - "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", - "id": "42IHJll6dkoZg9lcat1Gb8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", - "width": 64 - } - ], - "name": "One", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268360, - "explicit": false, - "external_ids": { "isrc": "DE1KY2507223" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" - }, - "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", - "id": "4kr0TJoXUl2FHU8WSBcB8T", - "is_local": false, - "name": "One", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" }, - "played_at": "2026-02-25T17:31:31.660Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + }, + "played_at": "2026-02-25T17:35:18.461Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 + } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + }, + "played_at": "2026-02-25T17:31:31.660Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 }, - "played_at": "2026-02-25T17:27:04.528Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" - }, - "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", - "id": "3yPZUsYXU6dW8IfsDfFxUc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", - "width": 64 - } - ], - "name": "Reborn To Light", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 273661, - "explicit": false, - "external_ids": { "isrc": "ITD292603081" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" - }, - "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", - "id": "0Py136Z4oe4FmUFru0115a", - "is_local": false, - "name": "The Sacred Union (Amduat), Pt.2", - "popularity": 18, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" }, - "played_at": "2026-02-25T17:21:21.695Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T17:27:04.528Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", - "id": "31cUZAVZ1R6pwgpFXjZ3Vo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", - "width": 64 - } - ], - "name": "Power Train", - "release_date": "2025-02-07", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186000, - "explicit": false, - "external_ids": { "isrc": "DED832400442" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" - }, - "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", - "id": "3tfDO5eV8kZ4yAk9sUCffp", - "is_local": false, - "name": "Thunder Power", - "popularity": 37, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273661, + "explicit": false, + "external_ids": { "isrc": "ITD292603081" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Py136Z4oe4FmUFru0115a" + }, + "href": "https://api.spotify.com/v1/tracks/0Py136Z4oe4FmUFru0115a", + "id": "0Py136Z4oe4FmUFru0115a", + "is_local": false, + "name": "The Sacred Union (Amduat), Pt.2", + "popularity": 18, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0Py136Z4oe4FmUFru0115a" + }, + "played_at": "2026-02-25T17:21:21.695Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 }, - "played_at": "2026-02-25T17:17:03.863Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186000, + "explicit": false, + "external_ids": { "isrc": "DED832400442" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tfDO5eV8kZ4yAk9sUCffp" + }, + "href": "https://api.spotify.com/v1/tracks/3tfDO5eV8kZ4yAk9sUCffp", + "id": "3tfDO5eV8kZ4yAk9sUCffp", + "is_local": false, + "name": "Thunder Power", + "popularity": 37, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3tfDO5eV8kZ4yAk9sUCffp" + }, + "played_at": "2026-02-25T17:17:03.863Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" - }, - "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", - "id": "5UPcpe5RMaDUcXjTvh5LEg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", - "width": 64 - } - ], - "name": "Break The Silence", - "release_date": "2026-01-09", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" - }, - "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", - "id": "6swnqiL41Bd4gO2fnAXXrf", - "name": "Beyond The Black", - "type": "artist", - "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226164, - "explicit": false, - "external_ids": { "isrc": "DED832500195" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" - }, - "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", - "id": "4EL8MX1m73qecwy3ECBOSp", - "is_local": false, - "name": "Let There Be Rain", - "popularity": 48, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" + }, + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5UPcpe5RMaDUcXjTvh5LEg" + }, + "href": "https://api.spotify.com/v1/albums/5UPcpe5RMaDUcXjTvh5LEg", + "id": "5UPcpe5RMaDUcXjTvh5LEg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273299753eb636e37f2199af7e3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02299753eb636e37f2199af7e3", + "width": 300 }, - "played_at": "2026-02-25T17:13:47.215Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851299753eb636e37f2199af7e3", + "width": 64 } + ], + "name": "Break The Silence", + "release_date": "2026-01-09", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5UPcpe5RMaDUcXjTvh5LEg" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" - }, - "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", - "id": "42IHJll6dkoZg9lcat1Gb8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", - "width": 64 - } - ], - "name": "One", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" - }, - "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", - "id": "1yfiDL3YUEJlQCgb5Pun6g", - "name": "Primal Fear", - "type": "artist", - "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268360, - "explicit": false, - "external_ids": { "isrc": "DE1KY2507223" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" - }, - "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", - "id": "4kr0TJoXUl2FHU8WSBcB8T", - "is_local": false, - "name": "One", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6swnqiL41Bd4gO2fnAXXrf" }, - "played_at": "2026-02-25T17:09:55.804Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/6swnqiL41Bd4gO2fnAXXrf", + "id": "6swnqiL41Bd4gO2fnAXXrf", + "name": "Beyond The Black", + "type": "artist", + "uri": "spotify:artist:6swnqiL41Bd4gO2fnAXXrf" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226164, + "explicit": false, + "external_ids": { "isrc": "DED832500195" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EL8MX1m73qecwy3ECBOSp" + }, + "href": "https://api.spotify.com/v1/tracks/4EL8MX1m73qecwy3ECBOSp", + "id": "4EL8MX1m73qecwy3ECBOSp", + "is_local": false, + "name": "Let There Be Rain", + "popularity": 48, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4EL8MX1m73qecwy3ECBOSp" + }, + "played_at": "2026-02-25T17:13:47.215Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/42IHJll6dkoZg9lcat1Gb8" + }, + "href": "https://api.spotify.com/v1/albums/42IHJll6dkoZg9lcat1Gb8", + "id": "42IHJll6dkoZg9lcat1Gb8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734386ea824c923eeaa6d13fc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024386ea824c923eeaa6d13fc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514386ea824c923eeaa6d13fc1", + "width": 64 + } + ], + "name": "One", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:42IHJll6dkoZg9lcat1Gb8" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yfiDL3YUEJlQCgb5Pun6g" + }, + "href": "https://api.spotify.com/v1/artists/1yfiDL3YUEJlQCgb5Pun6g", + "id": "1yfiDL3YUEJlQCgb5Pun6g", + "name": "Primal Fear", + "type": "artist", + "uri": "spotify:artist:1yfiDL3YUEJlQCgb5Pun6g" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268360, + "explicit": false, + "external_ids": { "isrc": "DE1KY2507223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4kr0TJoXUl2FHU8WSBcB8T" + }, + "href": "https://api.spotify.com/v1/tracks/4kr0TJoXUl2FHU8WSBcB8T", + "id": "4kr0TJoXUl2FHU8WSBcB8T", + "is_local": false, + "name": "One", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4kr0TJoXUl2FHU8WSBcB8T" + }, + "played_at": "2026-02-25T17:09:55.804Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 }, - "played_at": "2026-02-25T17:05:25.871Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T17:05:25.871Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 }, - "played_at": "2026-02-25T17:02:06.802Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" }, - "played_at": "2026-02-25T16:58:45.239Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T17:02:06.802Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 + } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T16:58:45.239Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 }, - "played_at": "2026-02-25T16:52:08.748Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T16:52:08.748Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" - }, - "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", - "id": "5qsTZqfEj8tQ7IPAMw5z52", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", - "width": 64 - } - ], - "name": "Nvidia, Fuck Yeah!", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" - }, - "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", - "id": "2mKV7sPvlBvzyPLeZhzT6q", - "name": "Skyebrows", - "type": "artist", - "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191328, - "explicit": true, - "external_ids": { "isrc": "QZK6Q2692816" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" - }, - "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", - "id": "4lPgN2pFIg6J0jnVdoursc", - "is_local": false, - "name": "Nvidia, Fuck Yeah!", - "popularity": 30, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" + }, + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5qsTZqfEj8tQ7IPAMw5z52" + }, + "href": "https://api.spotify.com/v1/albums/5qsTZqfEj8tQ7IPAMw5z52", + "id": "5qsTZqfEj8tQ7IPAMw5z52", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ece955bc716f71029071d725", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ece955bc716f71029071d725", + "width": 300 }, - "played_at": "2026-02-25T16:46:27.097Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ece955bc716f71029071d725", + "width": 64 } + ], + "name": "Nvidia, Fuck Yeah!", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5qsTZqfEj8tQ7IPAMw5z52" }, - { - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" - }, - "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", - "id": "6rVZNRKhwhm7DYuJrMARb4", - "name": "Venus 5", - "type": "artist", - "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1LivdNtkmpzAK3BH4gMVd8" - }, - "href": "https://api.spotify.com/v1/albums/1LivdNtkmpzAK3BH4gMVd8", - "id": "1LivdNtkmpzAK3BH4gMVd8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273944e58629e9afa57f03375c0", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02944e58629e9afa57f03375c0", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851944e58629e9afa57f03375c0", - "width": 64 - } - ], - "name": "March Of The Venus 5", - "release_date": "2026-02-16", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:1LivdNtkmpzAK3BH4gMVd8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" - }, - "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", - "id": "6rVZNRKhwhm7DYuJrMARb4", - "name": "Venus 5", - "type": "artist", - "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 236363, - "explicit": false, - "external_ids": { "isrc": "ITG272600035" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0rcdT26GpaUiuvlubml3UC" - }, - "href": "https://api.spotify.com/v1/tracks/0rcdT26GpaUiuvlubml3UC", - "id": "0rcdT26GpaUiuvlubml3UC", - "is_local": false, - "name": "March Of The Venus 5", - "popularity": 25, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0rcdT26GpaUiuvlubml3UC" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2mKV7sPvlBvzyPLeZhzT6q" }, - "played_at": "2026-02-25T16:42:59.879Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/2mKV7sPvlBvzyPLeZhzT6q", + "id": "2mKV7sPvlBvzyPLeZhzT6q", + "name": "Skyebrows", + "type": "artist", + "uri": "spotify:artist:2mKV7sPvlBvzyPLeZhzT6q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191328, + "explicit": true, + "external_ids": { "isrc": "QZK6Q2692816" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lPgN2pFIg6J0jnVdoursc" + }, + "href": "https://api.spotify.com/v1/tracks/4lPgN2pFIg6J0jnVdoursc", + "id": "4lPgN2pFIg6J0jnVdoursc", + "is_local": false, + "name": "Nvidia, Fuck Yeah!", + "popularity": 30, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lPgN2pFIg6J0jnVdoursc" + }, + "played_at": "2026-02-25T16:46:27.097Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1LivdNtkmpzAK3BH4gMVd8" + }, + "href": "https://api.spotify.com/v1/albums/1LivdNtkmpzAK3BH4gMVd8", + "id": "1LivdNtkmpzAK3BH4gMVd8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273944e58629e9afa57f03375c0", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02944e58629e9afa57f03375c0", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851944e58629e9afa57f03375c0", + "width": 64 + } + ], + "name": "March Of The Venus 5", + "release_date": "2026-02-16", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1LivdNtkmpzAK3BH4gMVd8" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" - }, - "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", - "id": "3yPZUsYXU6dW8IfsDfFxUc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", - "width": 64 - } - ], - "name": "Reborn To Light", - "release_date": "2026-02-20", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" - }, - "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", - "id": "44UN8gFHRwBnPWYaxEsNRV", - "name": "AEON GODS", - "type": "artist", - "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 225164, - "explicit": false, - "external_ids": { "isrc": "ITD292603084" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4PiYMb2KSVj6l0aj2t3ldI" - }, - "href": "https://api.spotify.com/v1/tracks/4PiYMb2KSVj6l0aj2t3ldI", - "id": "4PiYMb2KSVj6l0aj2t3ldI", - "is_local": false, - "name": "Feather Or Heart", - "popularity": 18, - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4PiYMb2KSVj6l0aj2t3ldI" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" }, - "played_at": "2026-02-25T16:39:03.152Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236363, + "explicit": false, + "external_ids": { "isrc": "ITG272600035" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0rcdT26GpaUiuvlubml3UC" + }, + "href": "https://api.spotify.com/v1/tracks/0rcdT26GpaUiuvlubml3UC", + "id": "0rcdT26GpaUiuvlubml3UC", + "is_local": false, + "name": "March Of The Venus 5", + "popularity": 25, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0rcdT26GpaUiuvlubml3UC" + }, + "played_at": "2026-02-25T16:42:59.879Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3yPZUsYXU6dW8IfsDfFxUc" + }, + "href": "https://api.spotify.com/v1/albums/3yPZUsYXU6dW8IfsDfFxUc", + "id": "3yPZUsYXU6dW8IfsDfFxUc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f2f74e75931bb28802f4c220", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f2f74e75931bb28802f4c220", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f2f74e75931bb28802f4c220", + "width": 64 + } + ], + "name": "Reborn To Light", + "release_date": "2026-02-20", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3yPZUsYXU6dW8IfsDfFxUc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/44UN8gFHRwBnPWYaxEsNRV" + }, + "href": "https://api.spotify.com/v1/artists/44UN8gFHRwBnPWYaxEsNRV", + "id": "44UN8gFHRwBnPWYaxEsNRV", + "name": "AEON GODS", + "type": "artist", + "uri": "spotify:artist:44UN8gFHRwBnPWYaxEsNRV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225164, + "explicit": false, + "external_ids": { "isrc": "ITD292603084" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PiYMb2KSVj6l0aj2t3ldI" + }, + "href": "https://api.spotify.com/v1/tracks/4PiYMb2KSVj6l0aj2t3ldI", + "id": "4PiYMb2KSVj6l0aj2t3ldI", + "is_local": false, + "name": "Feather Or Heart", + "popularity": 18, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4PiYMb2KSVj6l0aj2t3ldI" + }, + "played_at": "2026-02-25T16:39:03.152Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", - "id": "31cUZAVZ1R6pwgpFXjZ3Vo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", - "width": 64 - } - ], - "name": "Power Train", - "release_date": "2025-02-07", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" - }, - "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", - "id": "52lkxAYfC9ypaPJ2EB22ki", - "name": "Majestica", - "type": "artist", - "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 247333, - "explicit": false, - "external_ids": { "isrc": "DED832400445" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/17P6zEF92HDfAjRa4MHJgT" - }, - "href": "https://api.spotify.com/v1/tracks/17P6zEF92HDfAjRa4MHJgT", - "id": "17P6zEF92HDfAjRa4MHJgT", - "is_local": false, - "name": "Victorious", - "popularity": 37, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:17P6zEF92HDfAjRa4MHJgT" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" + }, + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/31cUZAVZ1R6pwgpFXjZ3Vo" + }, + "href": "https://api.spotify.com/v1/albums/31cUZAVZ1R6pwgpFXjZ3Vo", + "id": "31cUZAVZ1R6pwgpFXjZ3Vo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27378753b4020220ed7fb389413", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0278753b4020220ed7fb389413", + "width": 300 }, - "played_at": "2026-02-25T16:35:17.225Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485178753b4020220ed7fb389413", + "width": 64 } + ], + "name": "Power Train", + "release_date": "2025-02-07", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:31cUZAVZ1R6pwgpFXjZ3Vo" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 341982, - "explicit": false, - "external_ids": { "isrc": "ATN262636539" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" - }, - "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", - "id": "5xrdC0inGkRHrNCBuqBshC", - "is_local": false, - "name": "Werewolves Of Armenia - Live in Oberhausen", - "popularity": 23, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/52lkxAYfC9ypaPJ2EB22ki" }, - "played_at": "2026-02-25T16:28:34.631Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/52lkxAYfC9ypaPJ2EB22ki", + "id": "52lkxAYfC9ypaPJ2EB22ki", + "name": "Majestica", + "type": "artist", + "uri": "spotify:artist:52lkxAYfC9ypaPJ2EB22ki" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 247333, + "explicit": false, + "external_ids": { "isrc": "DED832400445" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/17P6zEF92HDfAjRa4MHJgT" + }, + "href": "https://api.spotify.com/v1/tracks/17P6zEF92HDfAjRa4MHJgT", + "id": "17P6zEF92HDfAjRa4MHJgT", + "is_local": false, + "name": "Victorious", + "popularity": 37, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:17P6zEF92HDfAjRa4MHJgT" + }, + "played_at": "2026-02-25T16:35:17.225Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 254541, - "explicit": false, - "external_ids": { "isrc": "ATN262636538" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" - }, - "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", - "id": "05TkrrnzKlPYjNLDHXNDEa", - "is_local": false, - "name": "We Drink Your Blood - Live in Oberhausen", - "popularity": 23, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 341982, + "explicit": false, + "external_ids": { "isrc": "ATN262636539" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" + }, + "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", + "id": "5xrdC0inGkRHrNCBuqBshC", + "is_local": false, + "name": "Werewolves Of Armenia - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC" + }, + "played_at": "2026-02-25T16:28:34.631Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T16:23:10.705Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 254541, + "explicit": false, + "external_ids": { "isrc": "ATN262636538" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" + }, + "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", + "id": "05TkrrnzKlPYjNLDHXNDEa", + "is_local": false, + "name": "We Drink Your Blood - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa" + }, + "played_at": "2026-02-25T16:23:10.705Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 320861, - "explicit": false, - "external_ids": { "isrc": "ATN262636537" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" - }, - "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", - "id": "3LjlgiECjVO4nHr8PB4jcN", - "is_local": false, - "name": "Sanctified With Dynamite - Live in Oberhausen", - "popularity": 23, - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T16:18:38.297Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 321678, - "explicit": false, - "external_ids": { "isrc": "ATN262636536" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" - }, - "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", - "id": "3S4JWuySEykWr90GmYlJCm", - "is_local": false, - "name": "Let There Be Night - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T16:13:17.513Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 320861, + "explicit": false, + "external_ids": { "isrc": "ATN262636537" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" + }, + "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", + "id": "3LjlgiECjVO4nHr8PB4jcN", + "is_local": false, + "name": "Sanctified With Dynamite - Live in Oberhausen", + "popularity": 23, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN" + }, + "played_at": "2026-02-25T16:18:38.297Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 210306, - "explicit": false, - "external_ids": { "isrc": "ATN262636535" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" - }, - "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", - "id": "6CaQoHtJ8wEWakucGeXvPb", - "is_local": false, - "name": "Blood For Blood - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 321678, + "explicit": false, + "external_ids": { "isrc": "ATN262636536" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" + }, + "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", + "id": "3S4JWuySEykWr90GmYlJCm", + "is_local": false, + "name": "Let There Be Night - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm" + }, + "played_at": "2026-02-25T16:13:17.513Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T16:07:56.148Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 210306, + "explicit": false, + "external_ids": { "isrc": "ATN262636535" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" + }, + "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", + "id": "6CaQoHtJ8wEWakucGeXvPb", + "is_local": false, + "name": "Blood For Blood - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb" + }, + "played_at": "2026-02-25T16:07:56.148Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 207505, - "explicit": false, - "external_ids": { "isrc": "ATN262636534" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" - }, - "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", - "id": "5PbsjG7nIPqZyB5BXzAfp8", - "is_local": false, - "name": "Army Of The Night - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T16:04:25.328Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 225089, - "explicit": false, - "external_ids": { "isrc": "ATN262636533" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" - }, - "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", - "id": "2zEJBb3w3M9iwOUbZBnqi6", - "is_local": false, - "name": "Sainted By The Storm - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T16:00:57.660Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 207505, + "explicit": false, + "external_ids": { "isrc": "ATN262636534" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" + }, + "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", + "id": "5PbsjG7nIPqZyB5BXzAfp8", + "is_local": false, + "name": "Army Of The Night - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8" + }, + "played_at": "2026-02-25T16:04:25.328Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 262502, - "explicit": false, - "external_ids": { "isrc": "ATN262636532" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" - }, - "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", - "id": "680LAwbwucfKwdFD0ckH6Z", - "is_local": false, - "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 225089, + "explicit": false, + "external_ids": { "isrc": "ATN262636533" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" + }, + "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", + "id": "2zEJBb3w3M9iwOUbZBnqi6", + "is_local": false, + "name": "Sainted By The Storm - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6" + }, + "played_at": "2026-02-25T16:00:57.660Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T15:57:12.848Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 262502, + "explicit": false, + "external_ids": { "isrc": "ATN262636532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" + }, + "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", + "id": "680LAwbwucfKwdFD0ckH6Z", + "is_local": false, + "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z" + }, + "played_at": "2026-02-25T15:57:12.848Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 278426, - "explicit": false, - "external_ids": { "isrc": "ATN262636531" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" - }, - "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", - "id": "2fpG2Ljj8uOfUkWeMq6bCM", - "is_local": false, - "name": "Fire & Forgive - Live in Oberhausen", - "popularity": 24, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T15:01:41.061Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 238926, - "explicit": false, - "external_ids": { "isrc": "ATN262636530" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" - }, - "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", - "id": "6XIslQQvDKW05iHpvKNeN5", - "is_local": false, - "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", - "popularity": 25, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T14:57:04.121Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 278426, + "explicit": false, + "external_ids": { "isrc": "ATN262636531" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" + }, + "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", + "id": "2fpG2Ljj8uOfUkWeMq6bCM", + "is_local": false, + "name": "Fire & Forgive - Live in Oberhausen", + "popularity": 24, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM" + }, + "played_at": "2026-02-25T15:01:41.061Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 257618, - "explicit": false, - "external_ids": { "isrc": "ATN262636529" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" - }, - "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", - "id": "1T0Q02fjBgWF5unjyLdvCl", - "is_local": false, - "name": "Stossgebet - Live in Oberhausen", - "popularity": 25, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 238926, + "explicit": false, + "external_ids": { "isrc": "ATN262636530" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" + }, + "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", + "id": "6XIslQQvDKW05iHpvKNeN5", + "is_local": false, + "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", + "popularity": 25, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5" + }, + "played_at": "2026-02-25T14:57:04.121Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T14:53:04.085Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 257618, + "explicit": false, + "external_ids": { "isrc": "ATN262636529" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" + }, + "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", + "id": "1T0Q02fjBgWF5unjyLdvCl", + "is_local": false, + "name": "Stossgebet - Live in Oberhausen", + "popularity": 25, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl" + }, + "played_at": "2026-02-25T14:53:04.085Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 215831, - "explicit": false, - "external_ids": { "isrc": "ATN262636528" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" - }, - "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", - "id": "1UeAy4qXjU2F1Te3LLi093", - "is_local": false, - "name": "Beast Of Gevaudan - Live in Oberhausen", - "popularity": 27, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T14:48:45.497Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 341037, - "explicit": false, - "external_ids": { "isrc": "ATN262636527" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" - }, - "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", - "id": "4nXgDCakmY9iyrhc9HBSMk", - "is_local": false, - "name": "Armata Strigoi - Live in Oberhausen", - "popularity": 26, - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T14:45:10.692Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 215831, + "explicit": false, + "external_ids": { "isrc": "ATN262636528" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" + }, + "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", + "id": "1UeAy4qXjU2F1Te3LLi093", + "is_local": false, + "name": "Beast Of Gevaudan - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093" + }, + "played_at": "2026-02-25T14:48:45.497Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 258749, - "explicit": false, - "external_ids": { "isrc": "ATN262636526" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" - }, - "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", - "id": "4KoPXvj6k4AK4vXh5Q5g7v", - "is_local": false, - "name": "Dancing With The Dead - Live in Oberhausen", - "popularity": 26, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 341037, + "explicit": false, + "external_ids": { "isrc": "ATN262636527" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" + }, + "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", + "id": "4nXgDCakmY9iyrhc9HBSMk", + "is_local": false, + "name": "Armata Strigoi - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk" + }, + "played_at": "2026-02-25T14:45:10.692Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T14:39:28.572Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 258749, + "explicit": false, + "external_ids": { "isrc": "ATN262636526" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" + }, + "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", + "id": "4KoPXvj6k4AK4vXh5Q5g7v", + "is_local": false, + "name": "Dancing With The Dead - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v" + }, + "played_at": "2026-02-25T14:39:28.572Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 253902, - "explicit": false, - "external_ids": { "isrc": "ATN262636525" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" - }, - "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", - "id": "0ec5OZMe4ScfAD72s8mVM1", - "is_local": false, - "name": "Amen & Attack - Live in Oberhausen", - "popularity": 26, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T14:35:10.021Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 248570, - "explicit": false, - "external_ids": { "isrc": "ATN262636524" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" - }, - "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", - "id": "51Y1Kt48noq3XNkeI5dFxf", - "is_local": false, - "name": "Cardinal Sin - Live in Oberhausen", - "popularity": 27, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T14:30:55.846Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 253902, + "explicit": false, + "external_ids": { "isrc": "ATN262636525" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" + }, + "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", + "id": "0ec5OZMe4ScfAD72s8mVM1", + "is_local": false, + "name": "Amen & Attack - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1" + }, + "played_at": "2026-02-25T14:35:10.021Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 243397, - "explicit": false, - "external_ids": { "isrc": "ATN262636523" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" - }, - "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", - "id": "5psVbswivNzLwqGgUeWP4Q", - "is_local": false, - "name": "Incense & Iron - Live in Oberhausen", - "popularity": 27, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 248570, + "explicit": false, + "external_ids": { "isrc": "ATN262636524" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" + }, + "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", + "id": "51Y1Kt48noq3XNkeI5dFxf", + "is_local": false, + "name": "Cardinal Sin - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf" + }, + "played_at": "2026-02-25T14:30:55.846Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T14:26:47.473Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 243397, + "explicit": false, + "external_ids": { "isrc": "ATN262636523" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" + }, + "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", + "id": "5psVbswivNzLwqGgUeWP4Q", + "is_local": false, + "name": "Incense & Iron - Live in Oberhausen", + "popularity": 27, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q" + }, + "played_at": "2026-02-25T14:26:47.473Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 220808, - "explicit": false, - "external_ids": { "isrc": "ATN262636522" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" - }, - "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", - "id": "71AgXarsHEpHOARRho6A6N", - "is_local": false, - "name": "Faster Than the Flame - Live in Oberhausen", - "popularity": 28, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:71AgXarsHEpHOARRho6A6N" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T14:22:43.956Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 102166, - "explicit": false, - "external_ids": { "isrc": "ATN262636521" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" - }, - "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", - "id": "4L1GfsUwq1xswmKAEZgVLJ", - "is_local": false, - "name": "Intro - Monumental Mass Theme - Live in Oberhausen", - "popularity": 26, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T14:19:02.936Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 220808, + "explicit": false, + "external_ids": { "isrc": "ATN262636522" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" + }, + "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", + "id": "71AgXarsHEpHOARRho6A6N", + "is_local": false, + "name": "Faster Than the Flame - Live in Oberhausen", + "popularity": 28, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71AgXarsHEpHOARRho6A6N" + }, + "played_at": "2026-02-25T14:22:43.956Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 413253, - "explicit": false, - "external_ids": { "isrc": "ATN262636520" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" - }, - "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", - "id": "07tRsrNFa3LpSUVcHDTBmS", - "is_local": false, - "name": "Werewolves of Armenia - Live At Olympiahalle", - "popularity": 30, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 102166, + "explicit": false, + "external_ids": { "isrc": "ATN262636521" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" + }, + "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", + "id": "4L1GfsUwq1xswmKAEZgVLJ", + "is_local": false, + "name": "Intro - Monumental Mass Theme - Live in Oberhausen", + "popularity": 26, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ" + }, + "played_at": "2026-02-25T14:19:02.936Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 }, - "played_at": "2026-02-25T14:17:20.608Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 413253, + "explicit": false, + "external_ids": { "isrc": "ATN262636520" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" + }, + "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", + "id": "07tRsrNFa3LpSUVcHDTBmS", + "is_local": false, + "name": "Werewolves of Armenia - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS" + }, + "played_at": "2026-02-25T14:17:20.608Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 256980, - "explicit": false, - "external_ids": { "isrc": "ATN262636519" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" - }, - "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", - "id": "2x4iJOct9B6ylf6urCbgyx", - "is_local": false, - "name": "We Drink Your Blood - Live At Olympiahalle", - "popularity": 30, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx" + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 }, - "played_at": "2026-02-25T14:10:29.349Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" }, - { - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 39, - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 407493, - "explicit": false, - "external_ids": { "isrc": "ATN262636518" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" - }, - "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", - "id": "18ps73idU6ezwEzvAHNRea", - "is_local": false, - "name": "Sanctified With Dynamite - Live At Olympiahalle", - "popularity": 30, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:18ps73idU6ezwEzvAHNRea" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" }, - "played_at": "2026-02-25T14:06:10.058Z", - "context": { - "type": "album", - "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" - }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 256980, + "explicit": false, + "external_ids": { "isrc": "ATN262636519" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" + }, + "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", + "id": "2x4iJOct9B6ylf6urCbgyx", + "is_local": false, + "name": "We Drink Your Blood - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx" + }, + "played_at": "2026-02-25T14:10:29.349Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + }, + { + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" } - } - ], - "next": "https://api.spotify.com/v1/me/player/recently-played?before=1772028370058&limit=48", - "cursors": { "after": "1772050520497", "before": "1772028370058" }, - "limit": 48, - "href": "https://api.spotify.com/v1/me/player/recently-played?limit=48" + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 39, + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 407493, + "explicit": false, + "external_ids": { "isrc": "ATN262636518" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" + }, + "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", + "id": "18ps73idU6ezwEzvAHNRea", + "is_local": false, + "name": "Sanctified With Dynamite - Live At Olympiahalle", + "popularity": 30, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:18ps73idU6ezwEzvAHNRea" + }, + "played_at": "2026-02-25T14:06:10.058Z", + "context": { + "type": "album", + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm" + } + } + ], + "next": "https://api.spotify.com/v1/me/player/recently-played?before=1772028370058&limit=48", + "cursors": { "after": "1772050520497", "before": "1772028370058" }, + "limit": 48, + "href": "https://api.spotify.com/v1/me/player/recently-played?limit=48" } diff --git a/tests/fixtures/saved_albums.json b/tests/fixtures/saved_albums.json index 5ecff82..1b8ae8e 100644 --- a/tests/fixtures/saved_albums.json +++ b/tests/fixtures/saved_albums.json @@ -1,77237 +1,77237 @@ { - "href": "https://api.spotify.com/v1/me/albums?offset=0&limit=48", - "items": [ - { - "added_at": "2026-02-12T23:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 39, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/me/albums?offset=0&limit=48", + "items": [ + { + "added_at": "2026-02-12T23:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 39, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + }, + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", + "id": "0sYsti82VA37zLESxDYVsm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", + "height": 64, + "width": 64 + } + ], + "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", + "release_date": "2026-02-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0sYsti82VA37zLESxDYVsm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 39, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 83427, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3VzB3NVfTrFrXUvB2Gc4KO" + }, + "href": "https://api.spotify.com/v1/tracks/3VzB3NVfTrFrXUvB2Gc4KO", + "id": "3VzB3NVfTrFrXUvB2Gc4KO", + "name": "Intro - Monumental Mass Theme - Live At Olympiahalle", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3VzB3NVfTrFrXUvB2Gc4KO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208422, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2imCw1cnnx5SJhHnfxl0IR" + }, + "href": "https://api.spotify.com/v1/tracks/2imCw1cnnx5SJhHnfxl0IR", + "id": "2imCw1cnnx5SJhHnfxl0IR", + "name": "Bless\u00b4em With the Blade - Live At Olympiahalle", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2imCw1cnnx5SJhHnfxl0IR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 246097, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ybxvxOs3bc6w97Hb1su25" + }, + "href": "https://api.spotify.com/v1/tracks/2ybxvxOs3bc6w97Hb1su25", + "id": "2ybxvxOs3bc6w97Hb1su25", + "name": "Incense & Iron - Live At Olympiahalle", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2ybxvxOs3bc6w97Hb1su25", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219129, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5SUrST3ZvTiOqbqsmbLxWz" + }, + "href": "https://api.spotify.com/v1/tracks/5SUrST3ZvTiOqbqsmbLxWz", + "id": "5SUrST3ZvTiOqbqsmbLxWz", + "name": "Army of the Night - Live At Olympiahalle", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5SUrST3ZvTiOqbqsmbLxWz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200888, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6OFTaJVq3DwCOrbJ9vltPa" + }, + "href": "https://api.spotify.com/v1/tracks/6OFTaJVq3DwCOrbJ9vltPa", + "id": "6OFTaJVq3DwCOrbJ9vltPa", + "name": "Sinners of the Seven Seas - Live At Olympiahalle", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6OFTaJVq3DwCOrbJ9vltPa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250496, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1X2s7jaBKer3rh5skUDVqi" + }, + "href": "https://api.spotify.com/v1/tracks/1X2s7jaBKer3rh5skUDVqi", + "id": "1X2s7jaBKer3rh5skUDVqi", + "name": "Amen & Attack - Live At Olympiahalle", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1X2s7jaBKer3rh5skUDVqi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250959, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/211d8QaBJ3ptMIQ9NDjs43" + }, + "href": "https://api.spotify.com/v1/tracks/211d8QaBJ3ptMIQ9NDjs43", + "id": "211d8QaBJ3ptMIQ9NDjs43", + "name": "Dancing With the Dead - Live At Olympiahalle", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:211d8QaBJ3ptMIQ9NDjs43", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 395090, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6gW1rK5HmWtTf1wU3dqmAs" + }, + "href": "https://api.spotify.com/v1/tracks/6gW1rK5HmWtTf1wU3dqmAs", + "id": "6gW1rK5HmWtTf1wU3dqmAs", + "name": "Armata Strigoi - Live At Olympiahalle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6gW1rK5HmWtTf1wU3dqmAs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 386157, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2OdhUgpqkuj5vAo7gbs07r" + }, + "href": "https://api.spotify.com/v1/tracks/2OdhUgpqkuj5vAo7gbs07r", + "id": "2OdhUgpqkuj5vAo7gbs07r", + "name": "1589 - Live At Olympiahalle", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2OdhUgpqkuj5vAo7gbs07r", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 328431, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5RpfDfyTZK8qt3Z6nKw5Sn" + }, + "href": "https://api.spotify.com/v1/tracks/5RpfDfyTZK8qt3Z6nKw5Sn", + "id": "5RpfDfyTZK8qt3Z6nKw5Sn", + "name": "Demons Are A Girl's Best Friend - Live At Olympiahalle", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:5RpfDfyTZK8qt3Z6nKw5Sn", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 245176, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/06xAvw7RiY2QIMdha4MXZs" + }, + "href": "https://api.spotify.com/v1/tracks/06xAvw7RiY2QIMdha4MXZs", + "id": "06xAvw7RiY2QIMdha4MXZs", + "name": "Stossgebet - Live At Olympiahalle", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:06xAvw7RiY2QIMdha4MXZs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 320081, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/78684m1lvJmX0fGtKVBz5t" + }, + "href": "https://api.spotify.com/v1/tracks/78684m1lvJmX0fGtKVBz5t", + "id": "78684m1lvJmX0fGtKVBz5t", + "name": "Fire & Forgive - Live At Olympiahalle", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:78684m1lvJmX0fGtKVBz5t", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 202024, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jC6F9Q2cZptUxiw7OKqlU" + }, + "href": "https://api.spotify.com/v1/tracks/3jC6F9Q2cZptUxiw7OKqlU", + "id": "3jC6F9Q2cZptUxiw7OKqlU", + "name": "We Don't Wanna Be No Saints - Live At Olympiahalle", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3jC6F9Q2cZptUxiw7OKqlU", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 278407, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2CGBOwADdYdmrCf5RyMDm7" + }, + "href": "https://api.spotify.com/v1/tracks/2CGBOwADdYdmrCf5RyMDm7", + "id": "2CGBOwADdYdmrCf5RyMDm7", + "name": "Alive or Undead - Live At Olympiahalle", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2CGBOwADdYdmrCf5RyMDm7", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 217362, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/00iwTfqhPIwB1UD0BsYTTr" + }, + "href": "https://api.spotify.com/v1/tracks/00iwTfqhPIwB1UD0BsYTTr", + "id": "00iwTfqhPIwB1UD0BsYTTr", + "name": "Heretic Hunters - Live At Olympiahalle", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:00iwTfqhPIwB1UD0BsYTTr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 234453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uQDoCpxcQ2j8ZoQDfhySL" + }, + "href": "https://api.spotify.com/v1/tracks/7uQDoCpxcQ2j8ZoQDfhySL", + "id": "7uQDoCpxcQ2j8ZoQDfhySL", + "name": "Sainted by the Storm - Live At Olympiahalle", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7uQDoCpxcQ2j8ZoQDfhySL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 240948, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5tW5uVk6WrGkfbojR4CthL" + }, + "href": "https://api.spotify.com/v1/tracks/5tW5uVk6WrGkfbojR4CthL", + "id": "5tW5uVk6WrGkfbojR4CthL", + "name": "Blood for Blood (Faoladh) - Live At Olympiahalle", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5tW5uVk6WrGkfbojR4CthL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 407493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" + }, + "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", + "id": "18ps73idU6ezwEzvAHNRea", + "name": "Sanctified With Dynamite - Live At Olympiahalle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:18ps73idU6ezwEzvAHNRea", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 256980, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" + }, + "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", + "id": "2x4iJOct9B6ylf6urCbgyx", + "name": "We Drink Your Blood - Live At Olympiahalle", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 413253, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" + }, + "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", + "id": "07tRsrNFa3LpSUVcHDTBmS", + "name": "Werewolves of Armenia - Live At Olympiahalle", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 102166, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" + }, + "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", + "id": "4L1GfsUwq1xswmKAEZgVLJ", + "name": "Intro - Monumental Mass Theme - Live in Oberhausen", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 220808, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" + }, + "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", + "id": "71AgXarsHEpHOARRho6A6N", + "name": "Faster Than the Flame - Live in Oberhausen", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71AgXarsHEpHOARRho6A6N", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 243397, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" + }, + "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", + "id": "5psVbswivNzLwqGgUeWP4Q", + "name": "Incense & Iron - Live in Oberhausen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 248570, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" + }, + "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", + "id": "51Y1Kt48noq3XNkeI5dFxf", + "name": "Cardinal Sin - Live in Oberhausen", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 253902, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" + }, + "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", + "id": "0ec5OZMe4ScfAD72s8mVM1", + "name": "Amen & Attack - Live in Oberhausen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 258749, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" + }, + "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", + "id": "4KoPXvj6k4AK4vXh5Q5g7v", + "name": "Dancing With The Dead - Live in Oberhausen", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 341037, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" + }, + "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", + "id": "4nXgDCakmY9iyrhc9HBSMk", + "name": "Armata Strigoi - Live in Oberhausen", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 215831, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" + }, + "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", + "id": "1UeAy4qXjU2F1Te3LLi093", + "name": "Beast Of Gevaudan - Live in Oberhausen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 257618, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" + }, + "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", + "id": "1T0Q02fjBgWF5unjyLdvCl", + "name": "Stossgebet - Live in Oberhausen", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 3, + "duration_ms": 238926, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" + }, + "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", + "id": "6XIslQQvDKW05iHpvKNeN5", + "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 278426, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" + }, + "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", + "id": "2fpG2Ljj8uOfUkWeMq6bCM", + "name": "Fire & Forgive - Live in Oberhausen", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 262502, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" + }, + "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", + "id": "680LAwbwucfKwdFD0ckH6Z", + "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 225089, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" + }, + "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", + "id": "2zEJBb3w3M9iwOUbZBnqi6", + "name": "Sainted By The Storm - Live in Oberhausen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 207505, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" + }, + "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", + "id": "5PbsjG7nIPqZyB5BXzAfp8", + "name": "Army Of The Night - Live in Oberhausen", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 210306, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" + }, + "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", + "id": "6CaQoHtJ8wEWakucGeXvPb", + "name": "Blood For Blood - Live in Oberhausen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 321678, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" + }, + "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", + "id": "3S4JWuySEykWr90GmYlJCm", + "name": "Let There Be Night - Live in Oberhausen", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 320861, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" + }, + "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", + "id": "3LjlgiECjVO4nHr8PB4jcN", + "name": "Sanctified With Dynamite - Live in Oberhausen", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 254541, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" + }, + "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", + "id": "05TkrrnzKlPYjNLDHXNDEa", + "name": "We Drink Your Blood - Live in Oberhausen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "name": "Powerwolf", + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 4, + "duration_ms": 341982, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" + }, + "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", + "id": "5xrdC0inGkRHrNCBuqBshC", + "name": "Werewolves Of Armenia - Live in Oberhausen", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "(C) 2026 Napalm Records Handels GmbH", + "type": "C" + }, + { + "text": "(P) 2026 Napalm Records Handels GmbH", + "type": "P" + } + ], + "external_ids": { "upc": "810185197408" }, + "genres": [], + "label": "Napalm Records Handels GmbH", + "popularity": 44 + } + }, + { + "added_at": "2024-09-19T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + }, + "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", + "id": "57MSBg5pBQZH5bfLVDmeuP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27314b5583615b195556a3882ac", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0214b5583615b195556a3882ac", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485114b5583615b195556a3882ac", + "height": 64, + "width": 64 + } + ], + "name": "In Waves", + "release_date": "2024-09-20", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 135835, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p" + }, + "href": "https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p", + "id": "7uLBdV19ad7kAjU2oB1l6p", + "name": "Wanna", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7uLBdV19ad7kAjU2oB1l6p", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 240580, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC" + }, + "href": "https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC", + "id": "3pjX4hC8adabkXGu3X9GTC", + "name": "Treat Each Other Right", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3pjX4hC8adabkXGu3X9GTC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4KDu9uqzqseVCpQXMa8Pvm" + }, + "href": "https://api.spotify.com/v1/artists/4KDu9uqzqseVCpQXMa8Pvm", + "id": "4KDu9uqzqseVCpQXMa8Pvm", + "name": "Oliver Sim", + "type": "artist", + "uri": "spotify:artist:4KDu9uqzqseVCpQXMa8Pvm" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iOvXCl6edW5Um0fXEBRXy" + }, + "href": "https://api.spotify.com/v1/artists/3iOvXCl6edW5Um0fXEBRXy", + "id": "3iOvXCl6edW5Um0fXEBRXy", + "name": "The xx", + "type": "artist", + "uri": "spotify:artist:3iOvXCl6edW5Um0fXEBRXy" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208334, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD" + }, + "href": "https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD", + "id": "4gBniy3TwR9o2JDBx48TlD", + "name": "Waited All Night", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4gBniy3TwR9o2JDBx48TlD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0XfQBWgzisaS9ltDV9bXAS" + }, + "href": "https://api.spotify.com/v1/artists/0XfQBWgzisaS9ltDV9bXAS", + "id": "0XfQBWgzisaS9ltDV9bXAS", + "name": "Honey Dijon", + "type": "artist", + "uri": "spotify:artist:0XfQBWgzisaS9ltDV9bXAS" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222315, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz" + }, + "href": "https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz", + "id": "79gWc6dZ1dXH7rC67DTunz", + "name": "Baddy On The Floor", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:79gWc6dZ1dXH7rC67DTunz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fEfMW5bypHZ0A8eLnhwj5" + }, + "href": "https://api.spotify.com/v1/artists/0fEfMW5bypHZ0A8eLnhwj5", + "id": "0fEfMW5bypHZ0A8eLnhwj5", + "name": "Kelsey Lu", + "type": "artist", + "uri": "spotify:artist:0fEfMW5bypHZ0A8eLnhwj5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0FNfiTQCR5o3ounOlWzm1d" + }, + "href": "https://api.spotify.com/v1/artists/0FNfiTQCR5o3ounOlWzm1d", + "id": "0FNfiTQCR5o3ounOlWzm1d", + "name": "John Glacier", + "type": "artist", + "uri": "spotify:artist:0FNfiTQCR5o3ounOlWzm1d" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1R84VlXnFFULOsWWV8IrCQ" + }, + "href": "https://api.spotify.com/v1/artists/1R84VlXnFFULOsWWV8IrCQ", + "id": "1R84VlXnFFULOsWWV8IrCQ", + "name": "Panda Bear", + "type": "artist", + "uri": "spotify:artist:1R84VlXnFFULOsWWV8IrCQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212339, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2" + }, + "href": "https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2", + "id": "1gRMKwvMvp6LcQVMpMXQg2", + "name": "Dafodil", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1gRMKwvMvp6LcQVMpMXQg2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205638, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto" + }, + "href": "https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto", + "id": "27D9YN3uHPD3PTXvzNtbto", + "name": "Still Summer", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:27D9YN3uHPD3PTXvzNtbto", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UE7nl9mha6s8z0wFQFIZ2" + }, + "href": "https://api.spotify.com/v1/artists/6UE7nl9mha6s8z0wFQFIZ2", + "id": "6UE7nl9mha6s8z0wFQFIZ2", + "name": "Robyn", + "type": "artist", + "uri": "spotify:artist:6UE7nl9mha6s8z0wFQFIZ2" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202648, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ" + }, + "href": "https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ", + "id": "0pMj03SiaZ9bkFlXQWNhtZ", + "name": "Life", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0pMj03SiaZ9bkFlXQWNhtZ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222365, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5" + }, + "href": "https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5", + "id": "7gb0pekqHQYTGo6NWLBvT5", + "name": "The Feeling I Get From You", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7gb0pekqHQYTGo6NWLBvT5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 376918, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6" + }, + "href": "https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6", + "id": "6pOzbdJKEr4hvXkX7VkfY6", + "name": "Breather", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6pOzbdJKEr4hvXkX7VkfY6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" + }, + "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", + "id": "3C8RpaI3Go0yFF9whvKoED", + "name": "The Avalanches", + "type": "artist", + "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 254142, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu" + }, + "href": "https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu", + "id": "3cfgisz6DhZmooQk08P4Eu", + "name": "All You Children", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3cfgisz6DhZmooQk08P4Eu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 71680, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN" + }, + "href": "https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN", + "id": "1wpcJ6TCrKpH6KdBmrp9yN", + "name": "Every Single Weekend - Interlude", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1wpcJ6TCrKpH6KdBmrp9yN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "name": "Jamie xx", + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" + }, + "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", + "id": "2Q4FR4Ss0mh6EvbiQBHEOU", + "name": "Oona Doherty", + "type": "artist", + "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 337414, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" + }, + "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", + "id": "08Jhu8OZ6gCIGWQn6vP3uI", + "name": "Falling Together", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2024 Young", "type": "C" }, + { "text": "2024 Young", "type": "P" } + ], + "external_ids": { "upc": "889030035653" }, + "genres": [], + "label": "Young", + "popularity": 53 + } + }, + { + "added_at": "2025-10-16T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" + }, + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", + "id": "1jjx7U3tayhJTytJVBj0WY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", + "height": 64, + "width": 64 + } + ], + "name": "Legends", + "release_date": "2025-10-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 294000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0MxqiUhIbMwIEOYTgdNbxb" + }, + "href": "https://api.spotify.com/v1/tracks/0MxqiUhIbMwIEOYTgdNbxb", + "id": "0MxqiUhIbMwIEOYTgdNbxb", + "name": "Templars", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0MxqiUhIbMwIEOYTgdNbxb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 223000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/275EXSVi2oyj4S5SPMo9qx" + }, + "href": "https://api.spotify.com/v1/tracks/275EXSVi2oyj4S5SPMo9qx", + "id": "275EXSVi2oyj4S5SPMo9qx", + "name": "Hordes of Khan", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:275EXSVi2oyj4S5SPMo9qx", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 246000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/34EZIGTN4CqPd2CqAfEIzz" + }, + "href": "https://api.spotify.com/v1/tracks/34EZIGTN4CqPd2CqAfEIzz", + "id": "34EZIGTN4CqPd2CqAfEIzz", + "name": "A Tiger Among Dragons", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:34EZIGTN4CqPd2CqAfEIzz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6WyfybAgLz1EceoumvVSun" + }, + "href": "https://api.spotify.com/v1/tracks/6WyfybAgLz1EceoumvVSun", + "id": "6WyfybAgLz1EceoumvVSun", + "name": "Crossing the Rubicon", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6WyfybAgLz1EceoumvVSun", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255973, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" + }, + "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", + "id": "3CZDkpmq245kzvCe44P2hM", + "name": "I, Emperor", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1t1g8mx2GQLX2UUk5azWAu" + }, + "href": "https://api.spotify.com/v1/tracks/1t1g8mx2GQLX2UUk5azWAu", + "id": "1t1g8mx2GQLX2UUk5azWAu", + "name": "Maid of Steel", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1t1g8mx2GQLX2UUk5azWAu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 284413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/170Q9dEUIPy8imNb9p5DYu" + }, + "href": "https://api.spotify.com/v1/tracks/170Q9dEUIPy8imNb9p5DYu", + "id": "170Q9dEUIPy8imNb9p5DYu", + "name": "Impaler", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:170Q9dEUIPy8imNb9p5DYu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 252000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4upSkMUkdiXaSz3sQKy34W" + }, + "href": "https://api.spotify.com/v1/tracks/4upSkMUkdiXaSz3sQKy34W", + "id": "4upSkMUkdiXaSz3sQKy34W", + "name": "Lightning at the Gates", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4upSkMUkdiXaSz3sQKy34W", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 235000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2mz3lcK6rYGTlNUtkgZm4f" + }, + "href": "https://api.spotify.com/v1/tracks/2mz3lcK6rYGTlNUtkgZm4f", + "id": "2mz3lcK6rYGTlNUtkgZm4f", + "name": "The Duelist", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2mz3lcK6rYGTlNUtkgZm4f", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 339213, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2BCSABdmxlLx0hJwuvcRBj" + }, + "href": "https://api.spotify.com/v1/tracks/2BCSABdmxlLx0hJwuvcRBj", + "id": "2BCSABdmxlLx0hJwuvcRBj", + "name": "The Cycle of Songs", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2BCSABdmxlLx0hJwuvcRBj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7xrNu3NxSQ0zAnB8ZSqUgq" + }, + "href": "https://api.spotify.com/v1/tracks/7xrNu3NxSQ0zAnB8ZSqUgq", + "id": "7xrNu3NxSQ0zAnB8ZSqUgq", + "name": "Till Seger", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7xrNu3NxSQ0zAnB8ZSqUgq", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "2025 Sabaton, under exclusive license to Better Noise Music", + "type": "C" + }, + { + "text": "2025 Sabaton, under exclusive license to Better Noise Music", + "type": "P" + } + ], + "external_ids": { "upc": "846070098604" }, + "genres": [], + "label": "Better Noise Music", + "popularity": 62 + } + }, + { + "added_at": "2016-12-19T07:45:50Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6TaTItT907XHlVx7axCGeS" + }, + "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS", + "id": "6TaTItT907XHlVx7axCGeS", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c880c3fce14935c405c7503e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c880c3fce14935c405c7503e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c880c3fce14935c405c7503e", + "height": 64, + "width": 64 + } + ], + "name": "Into the Night World", + "release_date": "2016-12-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6TaTItT907XHlVx7axCGeS", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 226855, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" + }, + "href": "https://api.spotify.com/v1/tracks/6z0imbQJzYJyJFbvrHszJk", + "id": "6z0imbQJzYJyJFbvrHszJk", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" + }, + "href": "https://api.spotify.com/v1/tracks/3R18Ec39yVNJxD410sxlq3", + "id": "3R18Ec39yVNJxD410sxlq3", + "type": "track", + "uri": "spotify:track:3R18Ec39yVNJxD410sxlq3" + }, + "name": "My Dragons Will Decimate", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6z0imbQJzYJyJFbvrHszJk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 201248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" + }, + "href": "https://api.spotify.com/v1/tracks/3x1kSnCnLbF2fWZHsZivO5", + "id": "3x1kSnCnLbF2fWZHsZivO5", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" + }, + "href": "https://api.spotify.com/v1/tracks/2HlsjQRZmg8RLagqhWunnJ", + "id": "2HlsjQRZmg8RLagqhWunnJ", + "type": "track", + "uri": "spotify:track:2HlsjQRZmg8RLagqhWunnJ" + }, + "name": "Into the Night World", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3x1kSnCnLbF2fWZHsZivO5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 256806, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" + }, + "href": "https://api.spotify.com/v1/tracks/5GLkchRnw7kp0yqL7kTti2", + "id": "5GLkchRnw7kp0yqL7kTti2", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" + }, + "href": "https://api.spotify.com/v1/tracks/2ZIR7ECno9Cv3BQq7fk7D8", + "id": "2ZIR7ECno9Cv3BQq7fk7D8", + "type": "track", + "uri": "spotify:track:2ZIR7ECno9Cv3BQq7fk7D8" + }, + "name": "Twe27ySeven", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5GLkchRnw7kp0yqL7kTti2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 340771, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" + }, + "href": "https://api.spotify.com/v1/tracks/7LHDs3o9bHYjTJa7srPNUC", + "id": "7LHDs3o9bHYjTJa7srPNUC", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" + }, + "href": "https://api.spotify.com/v1/tracks/29fh1gXRvsGuwvsaIk8xRZ", + "id": "29fh1gXRvsGuwvsaIk8xRZ", + "type": "track", + "uri": "spotify:track:29fh1gXRvsGuwvsaIk8xRZ" + }, + "name": "Remember Me", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7LHDs3o9bHYjTJa7srPNUC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212191, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "href": "https://api.spotify.com/v1/tracks/7LTkzzkE3ddGgyOQI8ukkq", + "id": "7LTkzzkE3ddGgyOQI8ukkq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "href": "https://api.spotify.com/v1/tracks/4HwdUJ6EDyDK8Z0bj9bLfe", + "id": "4HwdUJ6EDyDK8Z0bj9bLfe", + "type": "track", + "uri": "spotify:track:4HwdUJ6EDyDK8Z0bj9bLfe" + }, + "name": "Space Boat", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7LTkzzkE3ddGgyOQI8ukkq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212892, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" + }, + "href": "https://api.spotify.com/v1/tracks/2ZTbF8kWYHilM7GnZ4sgKt", + "id": "2ZTbF8kWYHilM7GnZ4sgKt", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" + }, + "href": "https://api.spotify.com/v1/tracks/1daFtGcKhHSi9Utzl0qgtQ", + "id": "1daFtGcKhHSi9Utzl0qgtQ", + "type": "track", + "uri": "spotify:track:1daFtGcKhHSi9Utzl0qgtQ" + }, + "name": "Stars Had to Die so That You Could Live", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2ZTbF8kWYHilM7GnZ4sgKt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 290405, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" + }, + "href": "https://api.spotify.com/v1/tracks/33Ms7ZnkfyTXzP38gK9FO3", + "id": "33Ms7ZnkfyTXzP38gK9FO3", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" + }, + "href": "https://api.spotify.com/v1/tracks/2oi0tis1xxFafCkJoIEVoO", + "id": "2oi0tis1xxFafCkJoIEVoO", + "type": "track", + "uri": "spotify:track:2oi0tis1xxFafCkJoIEVoO" + }, + "name": "Beast Engine", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:33Ms7ZnkfyTXzP38gK9FO3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 206633, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" + }, + "href": "https://api.spotify.com/v1/tracks/7xmfFvYqN4QyoFmtLZN6Nc", + "id": "7xmfFvYqN4QyoFmtLZN6Nc", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" + }, + "href": "https://api.spotify.com/v1/tracks/1bTyfuHjsBfhMjqVfFcRE2", + "id": "1bTyfuHjsBfhMjqVfFcRE2", + "type": "track", + "uri": "spotify:track:1bTyfuHjsBfhMjqVfFcRE2" + }, + "name": "Dream Sequence", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7xmfFvYqN4QyoFmtLZN6Nc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 158200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" + }, + "href": "https://api.spotify.com/v1/tracks/1zlbUrfRzrdEt6eSO2DKug", + "id": "1zlbUrfRzrdEt6eSO2DKug", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" + }, + "href": "https://api.spotify.com/v1/tracks/2QfXd8NrGbO0XeFoqZEwHu", + "id": "2QfXd8NrGbO0XeFoqZEwHu", + "type": "track", + "uri": "spotify:track:2QfXd8NrGbO0XeFoqZEwHu" + }, + "name": "Sid Metal Legacy", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1zlbUrfRzrdEt6eSO2DKug", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288591, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" + }, + "href": "https://api.spotify.com/v1/tracks/1i8m8MJa894P53JRTlgtom", + "id": "1i8m8MJa894P53JRTlgtom", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" + }, + "href": "https://api.spotify.com/v1/tracks/2MDtkZJVRWiVXwK4t2ASyJ", + "id": "2MDtkZJVRWiVXwK4t2ASyJ", + "type": "track", + "uri": "spotify:track:2MDtkZJVRWiVXwK4t2ASyJ" + }, + "name": "The Last March of the Undead", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1i8m8MJa894P53JRTlgtom", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2016 Machinae Supremacy", "type": "C" }, + { "text": "2016 Machinae Supremacy", "type": "P" } + ], + "external_ids": { "upc": "3614972534646" }, + "genres": [], + "label": "Hubnester Records", + "popularity": 23 + } + }, + { + "added_at": "2025-12-11T23:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 34, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1Lhv9Fe2KRk0NW3I14HsVY" + }, + "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY", + "id": "1Lhv9Fe2KRk0NW3I14HsVY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e4808df0cc63188f7a1dc2d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e4808df0cc63188f7a1dc2d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e4808df0cc63188f7a1dc2d2", + "height": 64, + "width": 64 + } + ], + "name": "USB", + "release_date": "2025-12-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Lhv9Fe2KRk0NW3I14HsVY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 34, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7whpXJXNCFQ1iJeL4f3Fam" + }, + "href": "https://api.spotify.com/v1/artists/7whpXJXNCFQ1iJeL4f3Fam", + "id": "7whpXJXNCFQ1iJeL4f3Fam", + "name": "Wallfacer", + "type": "artist", + "uri": "spotify:artist:7whpXJXNCFQ1iJeL4f3Fam" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197999, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" + }, + "href": "https://api.spotify.com/v1/tracks/3rTF0gzMSYSmeRkSzTpO7B", + "id": "3rTF0gzMSYSmeRkSzTpO7B", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" + }, + "href": "https://api.spotify.com/v1/tracks/4CwyZAJWFBxV5E7YS9A8Es", + "id": "4CwyZAJWFBxV5E7YS9A8Es", + "type": "track", + "uri": "spotify:track:4CwyZAJWFBxV5E7YS9A8Es" + }, + "name": "I Luv U", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rTF0gzMSYSmeRkSzTpO7B", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5FxsPS1K61fHEVB3FNZw6Y" + }, + "href": "https://api.spotify.com/v1/artists/5FxsPS1K61fHEVB3FNZw6Y", + "id": "5FxsPS1K61fHEVB3FNZw6Y", + "name": "Blanco", + "type": "artist", + "uri": "spotify:artist:5FxsPS1K61fHEVB3FNZw6Y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 292071, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" + }, + "href": "https://api.spotify.com/v1/tracks/1jZ08JOmqiwOuZ1Hr54oQm", + "id": "1jZ08JOmqiwOuZ1Hr54oQm", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" + }, + "href": "https://api.spotify.com/v1/tracks/39sGDx9LdItlrMKBNl1JkL", + "id": "39sGDx9LdItlrMKBNl1JkL", + "type": "track", + "uri": "spotify:track:39sGDx9LdItlrMKBNl1JkL" + }, + "name": "solo", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1jZ08JOmqiwOuZ1Hr54oQm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" + }, + "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", + "id": "6veh5zbFpm31XsPdjBgPER", + "name": "BIA", + "type": "artist", + "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 232727, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" + }, + "href": "https://api.spotify.com/v1/tracks/0dxcj2yS97TlvnNvEHL8cl", + "id": "0dxcj2yS97TlvnNvEHL8cl", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" + }, + "href": "https://api.spotify.com/v1/tracks/6CI1NtFfoijWJZBkVoUrwN", + "id": "6CI1NtFfoijWJZBkVoUrwN", + "type": "track", + "uri": "spotify:track:6CI1NtFfoijWJZBkVoUrwN" + }, + "name": "ICEY..", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0dxcj2yS97TlvnNvEHL8cl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" + }, + "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", + "id": "6veh5zbFpm31XsPdjBgPER", + "name": "BIA", + "type": "artist", + "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 171764, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" + }, + "href": "https://api.spotify.com/v1/tracks/7wfz2GOmuDxKztNfTfXQvu", + "id": "7wfz2GOmuDxKztNfTfXQvu", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" + }, + "href": "https://api.spotify.com/v1/tracks/0aXembK4QS3tJl5qv5sIrA", + "id": "0aXembK4QS3tJl5qv5sIrA", + "type": "track", + "uri": "spotify:track:0aXembK4QS3tJl5qv5sIrA" + }, + "name": "..FEISTY", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7wfz2GOmuDxKztNfTfXQvu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" + }, + "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", + "id": "1GuqTQbuixFHD6eBkFwVcb", + "name": "Sammy Virji", + "type": "artist", + "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QjsZEGqDMbzKvCdfFN5nz" + }, + "href": "https://api.spotify.com/v1/artists/6QjsZEGqDMbzKvCdfFN5nz", + "id": "6QjsZEGqDMbzKvCdfFN5nz", + "name": "Winny", + "type": "artist", + "uri": "spotify:artist:6QjsZEGqDMbzKvCdfFN5nz" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 264666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" + }, + "href": "https://api.spotify.com/v1/tracks/3Kr8iTBk81R5Y2p0tzHzp9", + "id": "3Kr8iTBk81R5Y2p0tzHzp9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" + }, + "href": "https://api.spotify.com/v1/tracks/1UO1PYJ5sltAPNroys7ArW", + "id": "1UO1PYJ5sltAPNroys7ArW", + "type": "track", + "uri": "spotify:track:1UO1PYJ5sltAPNroys7ArW" + }, + "name": "Winny", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3Kr8iTBk81R5Y2p0tzHzp9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6I8TDGeUmmLom8auKPzMdX" + }, + "href": "https://api.spotify.com/v1/artists/6I8TDGeUmmLom8auKPzMdX", + "id": "6I8TDGeUmmLom8auKPzMdX", + "name": "CA7RIEL & Paco Amoroso", + "type": "artist", + "uri": "spotify:artist:6I8TDGeUmmLom8auKPzMdX" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 226222, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" + }, + "href": "https://api.spotify.com/v1/tracks/08BPZBE9E82KpRBBsYFfTQ", + "id": "08BPZBE9E82KpRBBsYFfTQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" + }, + "href": "https://api.spotify.com/v1/tracks/2IwMlR0X3LlF8P4yRdDdiL", + "id": "2IwMlR0X3LlF8P4yRdDdiL", + "type": "track", + "uri": "spotify:track:2IwMlR0X3LlF8P4yRdDdiL" + }, + "name": "Beto\u2019s Horns - fred remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:08BPZBE9E82KpRBBsYFfTQ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" + }, + "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", + "id": "1GuqTQbuixFHD6eBkFwVcb", + "name": "Sammy Virji", + "type": "artist", + "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0kJOr4qkmePXKFVm9OBK0X" + }, + "href": "https://api.spotify.com/v1/artists/0kJOr4qkmePXKFVm9OBK0X", + "id": "0kJOr4qkmePXKFVm9OBK0X", + "name": "Reggie", + "type": "artist", + "uri": "spotify:artist:0kJOr4qkmePXKFVm9OBK0X" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 193846, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" + }, + "href": "https://api.spotify.com/v1/tracks/2lBhjQtKFfpCtTyln9RX3M", + "id": "2lBhjQtKFfpCtTyln9RX3M", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" + }, + "href": "https://api.spotify.com/v1/tracks/26vIeRYFA2Nh56W4jfkjp5", + "id": "26vIeRYFA2Nh56W4jfkjp5", + "type": "track", + "uri": "spotify:track:26vIeRYFA2Nh56W4jfkjp5" + }, + "name": "Talk of the Town", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2lBhjQtKFfpCtTyln9RX3M", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" + }, + "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", + "id": "3an9rnsXKPCAMlZgH4A0n4", + "name": "KETTAMA", + "type": "artist", + "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" + }, + "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", + "id": "5fEdUhbIAf9JlPhlc3swPx", + "name": "Shady Nasty", + "type": "artist", + "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286285, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" + }, + "href": "https://api.spotify.com/v1/tracks/3CdOgv5Bz3kSGb79jHahkJ", + "id": "3CdOgv5Bz3kSGb79jHahkJ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" + }, + "href": "https://api.spotify.com/v1/tracks/2EAPTWaNB2cu4brp2ImU0Y", + "id": "2EAPTWaNB2cu4brp2ImU0Y", + "type": "track", + "uri": "spotify:track:2EAPTWaNB2cu4brp2ImU0Y" + }, + "name": "HARDSTYLE 2", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3CdOgv5Bz3kSGb79jHahkJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2AR42Ur9PcchQDtEdwkv4L" + }, + "href": "https://api.spotify.com/v1/artists/2AR42Ur9PcchQDtEdwkv4L", + "id": "2AR42Ur9PcchQDtEdwkv4L", + "name": "Floating Points", + "type": "artist", + "uri": "spotify:artist:2AR42Ur9PcchQDtEdwkv4L" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 451666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" + }, + "href": "https://api.spotify.com/v1/tracks/1RM4ibzYZYXzCGonhMh5Gc", + "id": "1RM4ibzYZYXzCGonhMh5Gc", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" + }, + "href": "https://api.spotify.com/v1/tracks/5GV52Kgz64yWqm8keYq1E0", + "id": "5GV52Kgz64yWqm8keYq1E0", + "type": "track", + "uri": "spotify:track:5GV52Kgz64yWqm8keYq1E0" + }, + "name": "Ambery", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1RM4ibzYZYXzCGonhMh5Gc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4aEnNH9PuU1HF3TsZTru54" + }, + "href": "https://api.spotify.com/v1/artists/4aEnNH9PuU1HF3TsZTru54", + "id": "4aEnNH9PuU1HF3TsZTru54", + "name": "Caribou", + "type": "artist", + "uri": "spotify:artist:4aEnNH9PuU1HF3TsZTru54" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3uxTvUjeRTQDfrB59A1zWb" + }, + "href": "https://api.spotify.com/v1/artists/3uxTvUjeRTQDfrB59A1zWb", + "id": "3uxTvUjeRTQDfrB59A1zWb", + "name": "Menor Teteu", + "type": "artist", + "uri": "spotify:artist:3uxTvUjeRTQDfrB59A1zWb" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 257435, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" + }, + "href": "https://api.spotify.com/v1/tracks/3CiUl8blqDsFhWxHLsgiJ0", + "id": "3CiUl8blqDsFhWxHLsgiJ0", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" + }, + "href": "https://api.spotify.com/v1/tracks/62wnlWjbSeOsP9EI2rFpf9", + "id": "62wnlWjbSeOsP9EI2rFpf9", + "type": "track", + "uri": "spotify:track:62wnlWjbSeOsP9EI2rFpf9" + }, + "name": "Facilita", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3CiUl8blqDsFhWxHLsgiJ0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" + }, + "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", + "id": "5mnxMXIM6BNhVVTXnBatKa", + "name": "Skin On Skin", + "type": "artist", + "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 341250, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" + }, + "href": "https://api.spotify.com/v1/tracks/4zGwSKGXnfpBNHkavKnyIf", + "id": "4zGwSKGXnfpBNHkavKnyIf", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" + }, + "href": "https://api.spotify.com/v1/tracks/08panpchw721lgwPyM7V2k", + "id": "08panpchw721lgwPyM7V2k", + "type": "track", + "uri": "spotify:track:08panpchw721lgwPyM7V2k" + }, + "name": "the floor - fred remix", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:4zGwSKGXnfpBNHkavKnyIf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7aA592KWirLsnfb5ulGWvU" + }, + "href": "https://api.spotify.com/v1/artists/7aA592KWirLsnfb5ulGWvU", + "id": "7aA592KWirLsnfb5ulGWvU", + "name": "Danny Brown", + "type": "artist", + "uri": "spotify:artist:7aA592KWirLsnfb5ulGWvU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1UJfZU4rQx3bJ3tGypRuAT" + }, + "href": "https://api.spotify.com/v1/artists/1UJfZU4rQx3bJ3tGypRuAT", + "id": "1UJfZU4rQx3bJ3tGypRuAT", + "name": "PARISI", + "type": "artist", + "uri": "spotify:artist:1UJfZU4rQx3bJ3tGypRuAT" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6yJ6QQ3Y5l0s0tn7b0arrO" + }, + "href": "https://api.spotify.com/v1/artists/6yJ6QQ3Y5l0s0tn7b0arrO", + "id": "6yJ6QQ3Y5l0s0tn7b0arrO", + "name": "JPEGMAFIA", + "type": "artist", + "uri": "spotify:artist:6yJ6QQ3Y5l0s0tn7b0arrO" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 206197, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" + }, + "href": "https://api.spotify.com/v1/tracks/2mU0xUC1kamLn20YPKuH3S", + "id": "2mU0xUC1kamLn20YPKuH3S", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" + }, + "href": "https://api.spotify.com/v1/tracks/6T0rO9e3bHTPzvAPqmFspP", + "id": "6T0rO9e3bHTPzvAPqmFspP", + "type": "track", + "uri": "spotify:track:6T0rO9e3bHTPzvAPqmFspP" + }, + "name": "OK OK", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:2mU0xUC1kamLn20YPKuH3S", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" + }, + "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", + "id": "3NqV2DJoAWsjl787bWaHW7", + "name": "Amyl and The Sniffers", + "type": "artist", + "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" + }, + "href": "https://api.spotify.com/v1/tracks/47ESN2iezMvHBKmecjgG11", + "id": "47ESN2iezMvHBKmecjgG11", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" + }, + "href": "https://api.spotify.com/v1/tracks/2yGG7DTvI6mvDLnmUc7J0E", + "id": "2yGG7DTvI6mvDLnmUc7J0E", + "type": "track", + "uri": "spotify:track:2yGG7DTvI6mvDLnmUc7J0E" + }, + "name": "you're a star", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:47ESN2iezMvHBKmecjgG11", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 225897, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" + }, + "href": "https://api.spotify.com/v1/tracks/78igz8PCqqNYLVyhhSh0z5", + "id": "78igz8PCqqNYLVyhhSh0z5", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" + }, + "href": "https://api.spotify.com/v1/tracks/0sIXcKicNfPHDVhmD9riGJ", + "id": "0sIXcKicNfPHDVhmD9riGJ", + "type": "track", + "uri": "spotify:track:0sIXcKicNfPHDVhmD9riGJ" + }, + "name": "Last 1s Left", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:78igz8PCqqNYLVyhhSh0z5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 187411, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" + }, + "href": "https://api.spotify.com/v1/tracks/3JTzfCw32PeAQLjtadHvtM", + "id": "3JTzfCw32PeAQLjtadHvtM", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" + }, + "href": "https://api.spotify.com/v1/tracks/3BQ6oNyOFO4EZyvtx0Ao15", + "id": "3BQ6oNyOFO4EZyvtx0Ao15", + "type": "track", + "uri": "spotify:track:3BQ6oNyOFO4EZyvtx0Ao15" + }, + "name": "Back 2 Back", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:3JTzfCw32PeAQLjtadHvtM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 165857, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" + }, + "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", + "id": "1lbNgoJ5iMrMluCyhI4OQP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" + }, + "href": "https://api.spotify.com/v1/tracks/6GHlbRqY19d9rh8PEh7FzI", + "id": "6GHlbRqY19d9rh8PEh7FzI", + "type": "track", + "uri": "spotify:track:6GHlbRqY19d9rh8PEh7FzI" + }, + "name": "Victory Lap", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" + }, + "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", + "id": "0aIpJqqTLf683ojWREc5lg", + "name": "Joy Orbison", + "type": "artist", + "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" + }, + "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", + "id": "699OTQXzgjhIYAHMy9RyPD", + "name": "Playboi Carti", + "type": "artist", + "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246909, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" + }, + "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", + "id": "7qpZh0yIXeZzXZk3mE6Fj9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" + }, + "href": "https://api.spotify.com/v1/tracks/3ZsfRm1gpZqnd8AoV7wgYt", + "id": "3ZsfRm1gpZqnd8AoV7wgYt", + "type": "track", + "uri": "spotify:track:3ZsfRm1gpZqnd8AoV7wgYt" + }, + "name": "flex fm (freddit)", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" + }, + "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", + "id": "4VsVLz3Uw6d0fdM6gFtLfo", + "name": "MESSIE", + "type": "artist", + "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219310, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" + }, + "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", + "id": "73s1r3Jfn8pqXJv9ahKfNV", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0sYsti82VA37zLESxDYVsm" + "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" + }, + "href": "https://api.spotify.com/v1/tracks/1ypO22GPllRtSpqOEWbpVV", + "id": "1ypO22GPllRtSpqOEWbpVV", + "type": "track", + "uri": "spotify:track:1ypO22GPllRtSpqOEWbpVV" + }, + "name": "places to be - MESSIE remix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" + }, + "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", + "id": "1fDV6gCETmlkCUugBxq59g", + "name": "Duoteque", + "type": "artist", + "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" + }, + "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", + "id": "2efrqekWSHlvhATD50AG3m", + "name": "Orion Sun", + "type": "artist", + "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 327508, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" + }, + "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", + "id": "2la8LWSxedRoulmz0UHE7o", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" + }, + "href": "https://api.spotify.com/v1/tracks/4hPdnrevUw5PUKMElR09tU", + "id": "4hPdnrevUw5PUKMElR09tU", + "type": "track", + "uri": "spotify:track:4hPdnrevUw5PUKMElR09tU" + }, + "name": "ItsNotREEAALLLLLLLL", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" + }, + "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", + "id": "5zatdvej2AxogC5pbu2msR", + "name": "BERWYN", + "type": "artist", + "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 123607, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" + }, + "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", + "id": "59DFl0vh8FoBmmD43ruznv", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" + }, + "href": "https://api.spotify.com/v1/tracks/3XRhENEXtBIklV861z3ypc", + "id": "3XRhENEXtBIklV861z3ypc", + "type": "track", + "uri": "spotify:track:3XRhENEXtBIklV861z3ypc" + }, + "name": "BerwynGesaffNeighbours", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" + }, + "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", + "id": "01PnN11ovfen6xUOHfNpn3", + "name": "Overmono", + "type": "artist", + "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" + }, + "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", + "id": "2iUMh8RrpUiakMnneanOPj", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" + }, + "href": "https://api.spotify.com/v1/tracks/210lphIRrJCKXgFLxHwGN8", + "id": "210lphIRrJCKXgFLxHwGN8", + "type": "track", + "uri": "spotify:track:210lphIRrJCKXgFLxHwGN8" + }, + "name": "stayinit", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222784, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" + }, + "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", + "id": "2tSP95IyUkPv5Wj83xWh1c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" + }, + "href": "https://api.spotify.com/v1/tracks/6IOTukhTcumU9dtAk1OLLF", + "id": "6IOTukhTcumU9dtAk1OLLF", + "type": "track", + "uri": "spotify:track:6IOTukhTcumU9dtAk1OLLF" + }, + "name": "leavemealone", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319963, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" + }, + "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", + "id": "6EpIDF3GW1dRBujSp4bJxI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" + }, + "href": "https://api.spotify.com/v1/tracks/7ChXvbTy4bFou6VTn0XZKa", + "id": "7ChXvbTy4bFou6VTn0XZKa", + "type": "track", + "uri": "spotify:track:7ChXvbTy4bFou6VTn0XZKa" + }, + "name": "Baby again..", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" + }, + "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", + "id": "07CimrZi5vs9iEao47TNQ4", + "name": "Flowdan", + "type": "artist", + "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 146571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" + }, + "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", + "id": "74fmYjFwt9CqEFAh8ybeBD", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" + }, + "href": "https://api.spotify.com/v1/tracks/0ps1Oq8m38kcAJzd2xOSfO", + "id": "0ps1Oq8m38kcAJzd2xOSfO", + "type": "track", + "uri": "spotify:track:0ps1Oq8m38kcAJzd2xOSfO" + }, + "name": "Rumble", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" + }, + "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", + "id": "1h6Cn3P4NGzXbaXidqURXs", + "name": "Swedish House Mafia", + "type": "artist", + "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" + }, + "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", + "id": "2E6peXBRbjUmGkkR3dUNGe", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" + }, + "href": "https://api.spotify.com/v1/tracks/5V3lOpkER4fddNbVojzdvP", + "id": "5V3lOpkER4fddNbVojzdvP", + "type": "track", + "uri": "spotify:track:5V3lOpkER4fddNbVojzdvP" + }, + "name": "Turn On The Lights again.. (feat. Future)", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 198805, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" + }, + "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", + "id": "3BKkroNdTKfNijLG9oHW7c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" + }, + "href": "https://api.spotify.com/v1/tracks/5dSrUdJ8kivDMePdVQRswg", + "id": "5dSrUdJ8kivDMePdVQRswg", + "type": "track", + "uri": "spotify:track:5dSrUdJ8kivDMePdVQRswg" + }, + "name": "Jungle", + "preview_url": null, + "track_number": 26, + "type": "track", + "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" + }, + "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", + "id": "5RMLpCv3ic2KtGnqJ7eMG4", + "name": "I. JORDAN", + "type": "artist", + "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 385074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" + }, + "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", + "id": "7c0DlxLjlEEK2VKQJIIU1Z", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" + }, + "href": "https://api.spotify.com/v1/tracks/5GokhlwBZGPiPbabpMdj1j", + "id": "5GokhlwBZGPiPbabpMdj1j", + "type": "track", + "uri": "spotify:track:5GokhlwBZGPiPbabpMdj1j" + }, + "name": "Admit It (u dont want 2)", + "preview_url": null, + "track_number": 27, + "type": "track", + "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" + }, + "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", + "id": "1RlBD9ays0WfNHSVzxHiKX", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" + }, + "href": "https://api.spotify.com/v1/tracks/7s8B76ppLplVwdmf7fjfzM", + "id": "7s8B76ppLplVwdmf7fjfzM", + "type": "track", + "uri": "spotify:track:7s8B76ppLplVwdmf7fjfzM" + }, + "name": "Lights Out", + "preview_url": null, + "track_number": 28, + "type": "track", + "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" }, - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm", - "id": "0sYsti82VA37zLESxDYVsm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732444553f20aada2cf7206d77", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022444553f20aada2cf7206d77", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512444553f20aada2cf7206d77", - "height": 64, - "width": 64 - } - ], - "name": "Wildlive (Live at Olympiahalle) [Deluxe Version]", - "release_date": "2026-02-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0sYsti82VA37zLESxDYVsm", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0sYsti82VA37zLESxDYVsm/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 39, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 83427, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3VzB3NVfTrFrXUvB2Gc4KO" - }, - "href": "https://api.spotify.com/v1/tracks/3VzB3NVfTrFrXUvB2Gc4KO", - "id": "3VzB3NVfTrFrXUvB2Gc4KO", - "name": "Intro - Monumental Mass Theme - Live At Olympiahalle", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3VzB3NVfTrFrXUvB2Gc4KO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208422, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2imCw1cnnx5SJhHnfxl0IR" - }, - "href": "https://api.spotify.com/v1/tracks/2imCw1cnnx5SJhHnfxl0IR", - "id": "2imCw1cnnx5SJhHnfxl0IR", - "name": "Bless\u00b4em With the Blade - Live At Olympiahalle", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:2imCw1cnnx5SJhHnfxl0IR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 246097, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ybxvxOs3bc6w97Hb1su25" - }, - "href": "https://api.spotify.com/v1/tracks/2ybxvxOs3bc6w97Hb1su25", - "id": "2ybxvxOs3bc6w97Hb1su25", - "name": "Incense & Iron - Live At Olympiahalle", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2ybxvxOs3bc6w97Hb1su25", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219129, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5SUrST3ZvTiOqbqsmbLxWz" - }, - "href": "https://api.spotify.com/v1/tracks/5SUrST3ZvTiOqbqsmbLxWz", - "id": "5SUrST3ZvTiOqbqsmbLxWz", - "name": "Army of the Night - Live At Olympiahalle", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5SUrST3ZvTiOqbqsmbLxWz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200888, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6OFTaJVq3DwCOrbJ9vltPa" - }, - "href": "https://api.spotify.com/v1/tracks/6OFTaJVq3DwCOrbJ9vltPa", - "id": "6OFTaJVq3DwCOrbJ9vltPa", - "name": "Sinners of the Seven Seas - Live At Olympiahalle", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6OFTaJVq3DwCOrbJ9vltPa", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 250496, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1X2s7jaBKer3rh5skUDVqi" - }, - "href": "https://api.spotify.com/v1/tracks/1X2s7jaBKer3rh5skUDVqi", - "id": "1X2s7jaBKer3rh5skUDVqi", - "name": "Amen & Attack - Live At Olympiahalle", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:1X2s7jaBKer3rh5skUDVqi", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 250959, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/211d8QaBJ3ptMIQ9NDjs43" - }, - "href": "https://api.spotify.com/v1/tracks/211d8QaBJ3ptMIQ9NDjs43", - "id": "211d8QaBJ3ptMIQ9NDjs43", - "name": "Dancing With the Dead - Live At Olympiahalle", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:211d8QaBJ3ptMIQ9NDjs43", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 395090, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6gW1rK5HmWtTf1wU3dqmAs" - }, - "href": "https://api.spotify.com/v1/tracks/6gW1rK5HmWtTf1wU3dqmAs", - "id": "6gW1rK5HmWtTf1wU3dqmAs", - "name": "Armata Strigoi - Live At Olympiahalle", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:6gW1rK5HmWtTf1wU3dqmAs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 386157, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2OdhUgpqkuj5vAo7gbs07r" - }, - "href": "https://api.spotify.com/v1/tracks/2OdhUgpqkuj5vAo7gbs07r", - "id": "2OdhUgpqkuj5vAo7gbs07r", - "name": "1589 - Live At Olympiahalle", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2OdhUgpqkuj5vAo7gbs07r", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 328431, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5RpfDfyTZK8qt3Z6nKw5Sn" - }, - "href": "https://api.spotify.com/v1/tracks/5RpfDfyTZK8qt3Z6nKw5Sn", - "id": "5RpfDfyTZK8qt3Z6nKw5Sn", - "name": "Demons Are A Girl's Best Friend - Live At Olympiahalle", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:5RpfDfyTZK8qt3Z6nKw5Sn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 245176, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/06xAvw7RiY2QIMdha4MXZs" - }, - "href": "https://api.spotify.com/v1/tracks/06xAvw7RiY2QIMdha4MXZs", - "id": "06xAvw7RiY2QIMdha4MXZs", - "name": "Stossgebet - Live At Olympiahalle", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:06xAvw7RiY2QIMdha4MXZs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 320081, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/78684m1lvJmX0fGtKVBz5t" - }, - "href": "https://api.spotify.com/v1/tracks/78684m1lvJmX0fGtKVBz5t", - "id": "78684m1lvJmX0fGtKVBz5t", - "name": "Fire & Forgive - Live At Olympiahalle", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:78684m1lvJmX0fGtKVBz5t", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 202024, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3jC6F9Q2cZptUxiw7OKqlU" - }, - "href": "https://api.spotify.com/v1/tracks/3jC6F9Q2cZptUxiw7OKqlU", - "id": "3jC6F9Q2cZptUxiw7OKqlU", - "name": "We Don't Wanna Be No Saints - Live At Olympiahalle", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:3jC6F9Q2cZptUxiw7OKqlU", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 278407, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2CGBOwADdYdmrCf5RyMDm7" - }, - "href": "https://api.spotify.com/v1/tracks/2CGBOwADdYdmrCf5RyMDm7", - "id": "2CGBOwADdYdmrCf5RyMDm7", - "name": "Alive or Undead - Live At Olympiahalle", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2CGBOwADdYdmrCf5RyMDm7", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 217362, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/00iwTfqhPIwB1UD0BsYTTr" - }, - "href": "https://api.spotify.com/v1/tracks/00iwTfqhPIwB1UD0BsYTTr", - "id": "00iwTfqhPIwB1UD0BsYTTr", - "name": "Heretic Hunters - Live At Olympiahalle", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:00iwTfqhPIwB1UD0BsYTTr", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 234453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7uQDoCpxcQ2j8ZoQDfhySL" - }, - "href": "https://api.spotify.com/v1/tracks/7uQDoCpxcQ2j8ZoQDfhySL", - "id": "7uQDoCpxcQ2j8ZoQDfhySL", - "name": "Sainted by the Storm - Live At Olympiahalle", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:7uQDoCpxcQ2j8ZoQDfhySL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 240948, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5tW5uVk6WrGkfbojR4CthL" - }, - "href": "https://api.spotify.com/v1/tracks/5tW5uVk6WrGkfbojR4CthL", - "id": "5tW5uVk6WrGkfbojR4CthL", - "name": "Blood for Blood (Faoladh) - Live At Olympiahalle", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:5tW5uVk6WrGkfbojR4CthL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 407493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/18ps73idU6ezwEzvAHNRea" - }, - "href": "https://api.spotify.com/v1/tracks/18ps73idU6ezwEzvAHNRea", - "id": "18ps73idU6ezwEzvAHNRea", - "name": "Sanctified With Dynamite - Live At Olympiahalle", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:18ps73idU6ezwEzvAHNRea", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 256980, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2x4iJOct9B6ylf6urCbgyx" - }, - "href": "https://api.spotify.com/v1/tracks/2x4iJOct9B6ylf6urCbgyx", - "id": "2x4iJOct9B6ylf6urCbgyx", - "name": "We Drink Your Blood - Live At Olympiahalle", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2x4iJOct9B6ylf6urCbgyx", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 413253, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/07tRsrNFa3LpSUVcHDTBmS" - }, - "href": "https://api.spotify.com/v1/tracks/07tRsrNFa3LpSUVcHDTBmS", - "id": "07tRsrNFa3LpSUVcHDTBmS", - "name": "Werewolves of Armenia - Live At Olympiahalle", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:07tRsrNFa3LpSUVcHDTBmS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 102166, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4L1GfsUwq1xswmKAEZgVLJ" - }, - "href": "https://api.spotify.com/v1/tracks/4L1GfsUwq1xswmKAEZgVLJ", - "id": "4L1GfsUwq1xswmKAEZgVLJ", - "name": "Intro - Monumental Mass Theme - Live in Oberhausen", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4L1GfsUwq1xswmKAEZgVLJ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 220808, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/71AgXarsHEpHOARRho6A6N" - }, - "href": "https://api.spotify.com/v1/tracks/71AgXarsHEpHOARRho6A6N", - "id": "71AgXarsHEpHOARRho6A6N", - "name": "Faster Than the Flame - Live in Oberhausen", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:71AgXarsHEpHOARRho6A6N", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 243397, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5psVbswivNzLwqGgUeWP4Q" - }, - "href": "https://api.spotify.com/v1/tracks/5psVbswivNzLwqGgUeWP4Q", - "id": "5psVbswivNzLwqGgUeWP4Q", - "name": "Incense & Iron - Live in Oberhausen", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5psVbswivNzLwqGgUeWP4Q", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 248570, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/51Y1Kt48noq3XNkeI5dFxf" - }, - "href": "https://api.spotify.com/v1/tracks/51Y1Kt48noq3XNkeI5dFxf", - "id": "51Y1Kt48noq3XNkeI5dFxf", - "name": "Cardinal Sin - Live in Oberhausen", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:51Y1Kt48noq3XNkeI5dFxf", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 253902, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0ec5OZMe4ScfAD72s8mVM1" - }, - "href": "https://api.spotify.com/v1/tracks/0ec5OZMe4ScfAD72s8mVM1", - "id": "0ec5OZMe4ScfAD72s8mVM1", - "name": "Amen & Attack - Live in Oberhausen", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:0ec5OZMe4ScfAD72s8mVM1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 258749, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4KoPXvj6k4AK4vXh5Q5g7v" - }, - "href": "https://api.spotify.com/v1/tracks/4KoPXvj6k4AK4vXh5Q5g7v", - "id": "4KoPXvj6k4AK4vXh5Q5g7v", - "name": "Dancing With The Dead - Live in Oberhausen", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:4KoPXvj6k4AK4vXh5Q5g7v", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 341037, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4nXgDCakmY9iyrhc9HBSMk" - }, - "href": "https://api.spotify.com/v1/tracks/4nXgDCakmY9iyrhc9HBSMk", - "id": "4nXgDCakmY9iyrhc9HBSMk", - "name": "Armata Strigoi - Live in Oberhausen", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4nXgDCakmY9iyrhc9HBSMk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 215831, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1UeAy4qXjU2F1Te3LLi093" - }, - "href": "https://api.spotify.com/v1/tracks/1UeAy4qXjU2F1Te3LLi093", - "id": "1UeAy4qXjU2F1Te3LLi093", - "name": "Beast Of Gevaudan - Live in Oberhausen", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:1UeAy4qXjU2F1Te3LLi093", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 257618, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1T0Q02fjBgWF5unjyLdvCl" - }, - "href": "https://api.spotify.com/v1/tracks/1T0Q02fjBgWF5unjyLdvCl", - "id": "1T0Q02fjBgWF5unjyLdvCl", - "name": "Stossgebet - Live in Oberhausen", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1T0Q02fjBgWF5unjyLdvCl", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 3, - "duration_ms": 238926, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6XIslQQvDKW05iHpvKNeN5" - }, - "href": "https://api.spotify.com/v1/tracks/6XIslQQvDKW05iHpvKNeN5", - "id": "6XIslQQvDKW05iHpvKNeN5", - "name": "Demons Are A Girl's Best Friend - Live in Oberhausen", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:6XIslQQvDKW05iHpvKNeN5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 278426, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2fpG2Ljj8uOfUkWeMq6bCM" - }, - "href": "https://api.spotify.com/v1/tracks/2fpG2Ljj8uOfUkWeMq6bCM", - "id": "2fpG2Ljj8uOfUkWeMq6bCM", - "name": "Fire & Forgive - Live in Oberhausen", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2fpG2Ljj8uOfUkWeMq6bCM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 262502, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/680LAwbwucfKwdFD0ckH6Z" - }, - "href": "https://api.spotify.com/v1/tracks/680LAwbwucfKwdFD0ckH6Z", - "id": "680LAwbwucfKwdFD0ckH6Z", - "name": "Where The Wild Wolves Have Gone - Live in Oberhausen", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:680LAwbwucfKwdFD0ckH6Z", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 225089, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2zEJBb3w3M9iwOUbZBnqi6" - }, - "href": "https://api.spotify.com/v1/tracks/2zEJBb3w3M9iwOUbZBnqi6", - "id": "2zEJBb3w3M9iwOUbZBnqi6", - "name": "Sainted By The Storm - Live in Oberhausen", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2zEJBb3w3M9iwOUbZBnqi6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 207505, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5PbsjG7nIPqZyB5BXzAfp8" - }, - "href": "https://api.spotify.com/v1/tracks/5PbsjG7nIPqZyB5BXzAfp8", - "id": "5PbsjG7nIPqZyB5BXzAfp8", - "name": "Army Of The Night - Live in Oberhausen", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5PbsjG7nIPqZyB5BXzAfp8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 210306, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6CaQoHtJ8wEWakucGeXvPb" - }, - "href": "https://api.spotify.com/v1/tracks/6CaQoHtJ8wEWakucGeXvPb", - "id": "6CaQoHtJ8wEWakucGeXvPb", - "name": "Blood For Blood - Live in Oberhausen", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6CaQoHtJ8wEWakucGeXvPb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 321678, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3S4JWuySEykWr90GmYlJCm" - }, - "href": "https://api.spotify.com/v1/tracks/3S4JWuySEykWr90GmYlJCm", - "id": "3S4JWuySEykWr90GmYlJCm", - "name": "Let There Be Night - Live in Oberhausen", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3S4JWuySEykWr90GmYlJCm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 320861, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3LjlgiECjVO4nHr8PB4jcN" - }, - "href": "https://api.spotify.com/v1/tracks/3LjlgiECjVO4nHr8PB4jcN", - "id": "3LjlgiECjVO4nHr8PB4jcN", - "name": "Sanctified With Dynamite - Live in Oberhausen", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:3LjlgiECjVO4nHr8PB4jcN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 254541, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/05TkrrnzKlPYjNLDHXNDEa" - }, - "href": "https://api.spotify.com/v1/tracks/05TkrrnzKlPYjNLDHXNDEa", - "id": "05TkrrnzKlPYjNLDHXNDEa", - "name": "We Drink Your Blood - Live in Oberhausen", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:05TkrrnzKlPYjNLDHXNDEa", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "name": "Powerwolf", - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 4, - "duration_ms": 341982, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5xrdC0inGkRHrNCBuqBshC" - }, - "href": "https://api.spotify.com/v1/tracks/5xrdC0inGkRHrNCBuqBshC", - "id": "5xrdC0inGkRHrNCBuqBshC", - "name": "Werewolves Of Armenia - Live in Oberhausen", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:5xrdC0inGkRHrNCBuqBshC", - "is_local": false - } - ] + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" + }, + "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", + "id": "46MWeeHNVMYRIIofQBEX98", + "name": "BEAM", + "type": "artist", + "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" + }, + "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", + "id": "5mnxMXIM6BNhVVTXnBatKa", + "name": "Skin On Skin", + "type": "artist", + "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 234428, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" + }, + "href": "https://api.spotify.com/v1/tracks/3tqiBJfctALrFQbv1wltlr", + "id": "3tqiBJfctALrFQbv1wltlr", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" + }, + "href": "https://api.spotify.com/v1/tracks/5BFAhacuNNcMz27eWyRloV", + "id": "5BFAhacuNNcMz27eWyRloV", + "type": "track", + "uri": "spotify:track:5BFAhacuNNcMz27eWyRloV" + }, + "name": "the floor - skin on skin remix", + "preview_url": null, + "track_number": 29, + "type": "track", + "uri": "spotify:track:3tqiBJfctALrFQbv1wltlr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" + }, + "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", + "id": "6fxyWrfmjcbj5d12gXeiNV", + "name": "Denzel Curry", + "type": "artist", + "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" + }, + "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", + "id": "4nVa6XlBFlIkF6msW57PHp", + "name": "Hanumankind", + "type": "artist", + "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" + }, + "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", + "id": "3BAgmPNIK5IJl7zMK1wvMA", + "name": "That Mexican OT", + "type": "artist", + "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" + }, + "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", + "id": "6bwkMlweHsBCpI2a0C5nnN", + "name": "D Double E", + "type": "artist", + "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" + }, + "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", + "id": "7xqIp1044Z2vd9v9ZphjLa", + "name": "LYNY", + "type": "artist", + "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 344571, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" + }, + "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", + "id": "3bsAYGy83D6sl1a5otGuUg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" + }, + "href": "https://api.spotify.com/v1/tracks/28dXOti2Sy7YQJP4af9wM3", + "id": "28dXOti2Sy7YQJP4af9wM3", + "type": "track", + "uri": "spotify:track:28dXOti2Sy7YQJP4af9wM3" + }, + "name": "Victory Lap Five", + "preview_url": null, + "track_number": 30, + "type": "track", + "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" + }, + "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", + "id": "6b0TSaLAeLXilOPoId8udE", + "name": "CLIPZ", + "type": "artist", + "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 184827, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" + }, + "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", + "id": "4n4VUdx6tr7MylOySvDhPK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" + }, + "href": "https://api.spotify.com/v1/tracks/4iAtPgGTSl9FXE0f0s2R8z", + "id": "4iAtPgGTSl9FXE0f0s2R8z", + "type": "track", + "uri": "spotify:track:4iAtPgGTSl9FXE0f0s2R8z" + }, + "name": "places to be - CLIPZ remix", + "preview_url": null, + "track_number": 31, + "type": "track", + "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" + }, + "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", + "id": "7BMR0fwtEvzGtK4rNGdoiQ", + "name": "Nia Archives", + "type": "artist", + "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179441, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", + "id": "5u84pGbxFomiV66Uk2kOQK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "href": "https://api.spotify.com/v1/tracks/5X9Kv1YXQwO1fzdm1GjJWZ", + "id": "5X9Kv1YXQwO1fzdm1GjJWZ", + "type": "track", + "uri": "spotify:track:5X9Kv1YXQwO1fzdm1GjJWZ" + }, + "name": "leavemealone - Nia Archives Remix", + "preview_url": null, + "track_number": 32, + "type": "track", + "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" + }, + "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", + "id": "2OaHYHb2XcFPvqL3VsyPzU", + "name": "Rico Nasty", + "type": "artist", + "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 213133, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" + }, + "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", + "id": "3ycgBFWvzxjLtY2YJuQMms", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" + }, + "href": "https://api.spotify.com/v1/tracks/4aw8UIUfhgmnOu7adMwmVx", + "id": "4aw8UIUfhgmnOu7adMwmVx", + "type": "track", + "uri": "spotify:track:4aw8UIUfhgmnOu7adMwmVx" + }, + "name": "Jungle - Rico Nasty Remix", + "preview_url": null, + "track_number": 33, + "type": "track", + "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 375087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" + }, + "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", + "id": "5HZJuJphtUWc6wuTHt50oQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" + }, + "href": "https://api.spotify.com/v1/tracks/0Pzoc1rIyirjuim3Z7wnbz", + "id": "0Pzoc1rIyirjuim3Z7wnbz", + "type": "track", + "uri": "spotify:track:0Pzoc1rIyirjuim3Z7wnbz" + }, + "name": "Lights Out (feat. Fred again..) - HAAi Remix", + "preview_url": null, + "track_number": 34, + "type": "track", + "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "An Atlantic Records UK, \u00a9 2025 Warner Music UK Limited", + "type": "C" + }, + { + "text": "An Atlantic Records UK release \u2117 2025 Fred Gibson under exclusive licence to Warner Music UK Limited, with the exception of tracks 14 & 15 \u2117 2025 Epic Records, a division of Sony Music Entertainment UK Ltd under exclusive licence from Big Smoke Ltd/ Fred Gibson /Warner Music UK Limited. Tracks 16 & 18-34 \u2117 2024 Warner Music UK Limited. Track 17 \u2117 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2025 Warner Music UK Limited", + "type": "P" + } + ], + "external_ids": { "upc": "5026854314600" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 67 + } + }, + { + "added_at": "2025-10-23T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" + }, + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "height": 64, + "width": 64 + } + ], + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171991, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rgZPrOQn2E3sw90NgI6f6" + }, + "href": "https://api.spotify.com/v1/tracks/3rgZPrOQn2E3sw90NgI6f6", + "id": "3rgZPrOQn2E3sw90NgI6f6", + "name": "I'll Always Be Your Girl", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rgZPrOQn2E3sw90NgI6f6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186435, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2VEIppsUhk7inhi5TB4J0C" + }, + "href": "https://api.spotify.com/v1/tracks/2VEIppsUhk7inhi5TB4J0C", + "id": "2VEIppsUhk7inhi5TB4J0C", + "name": "Jellyfish", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2VEIppsUhk7inhi5TB4J0C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173251, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" + }, + "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", + "id": "4qM72D1GHUQRXwnmLZUcMH", + "name": "Do It Again", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 158680, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2KCEJHfKLqZ90YL4EmE0cM" + }, + "href": "https://api.spotify.com/v1/tracks/2KCEJHfKLqZ90YL4EmE0cM", + "id": "2KCEJHfKLqZ90YL4EmE0cM", + "name": "Kiss The Sky", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2KCEJHfKLqZ90YL4EmE0cM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172889, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" + }, + "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", + "id": "67WAthizRvsLDjgzIZs27h", + "name": "Two Years", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:67WAthizRvsLDjgzIZs27h", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164303, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/72eTbGnzmu9e5FsjSoy57j" + }, + "href": "https://api.spotify.com/v1/tracks/72eTbGnzmu9e5FsjSoy57j", + "id": "72eTbGnzmu9e5FsjSoy57j", + "name": "Hush Baby, Hurry Slowly", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:72eTbGnzmu9e5FsjSoy57j", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198756, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uAkVdp16PTpzx2HFfz96O" + }, + "href": "https://api.spotify.com/v1/tracks/7uAkVdp16PTpzx2HFfz96O", + "id": "7uAkVdp16PTpzx2HFfz96O", + "name": "Fort Knox", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:7uAkVdp16PTpzx2HFfz96O", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161636, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Qb0Oghb0nwsZ7rHV4yi2T" + }, + "href": "https://api.spotify.com/v1/tracks/4Qb0Oghb0nwsZ7rHV4yi2T", + "id": "4Qb0Oghb0nwsZ7rHV4yi2T", + "name": "There\u2019s Always More That I Could Say", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4Qb0Oghb0nwsZ7rHV4yi2T", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261219, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4MvmZRkUIDZMrn6T9ECiFu" + }, + "href": "https://api.spotify.com/v1/tracks/4MvmZRkUIDZMrn6T9ECiFu", + "id": "4MvmZRkUIDZMrn6T9ECiFu", + "name": "Have You Heard This Song Before", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:4MvmZRkUIDZMrn6T9ECiFu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212352, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4EdCYJlPARFqoQDBYPFY9A" + }, + "href": "https://api.spotify.com/v1/tracks/4EdCYJlPARFqoQDBYPFY9A", + "id": "4EdCYJlPARFqoQDBYPFY9A", + "name": "Eternal Sunshine", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4EdCYJlPARFqoQDBYPFY9A", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2025 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2025 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602478149894" }, + "genres": [], + "label": "EMI", + "popularity": 44 + } + }, + { + "added_at": "2025-10-09T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37qGqumC22Ibkey11xnvHC" + }, + "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC", + "id": "37qGqumC22Ibkey11xnvHC", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731ab02b6570ef64749f4557a4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021ab02b6570ef64749f4557a4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511ab02b6570ef64749f4557a4", + "height": 64, + "width": 64 + } + ], + "name": "Under The Covers, Vol. IV", + "release_date": "2025-10-10", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:37qGqumC22Ibkey11xnvHC", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215775, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1yKw8iYZgzg15nAbrZORyF" + }, + "href": "https://api.spotify.com/v1/tracks/1yKw8iYZgzg15nAbrZORyF", + "id": "1yKw8iYZgzg15nAbrZORyF", + "name": "The Power of Love", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1yKw8iYZgzg15nAbrZORyF", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226383, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rRo6VIxlhm1ZJaMBfyeTl" + }, + "href": "https://api.spotify.com/v1/tracks/3rRo6VIxlhm1ZJaMBfyeTl", + "id": "3rRo6VIxlhm1ZJaMBfyeTl", + "name": "Just What I Needed", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3rRo6VIxlhm1ZJaMBfyeTl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 289288, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6s1mVSOmPlv3qUOktjshpP" + }, + "href": "https://api.spotify.com/v1/tracks/6s1mVSOmPlv3qUOktjshpP", + "id": "6s1mVSOmPlv3qUOktjshpP", + "name": "Rosanna", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6s1mVSOmPlv3qUOktjshpP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 273046, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/336Z6KZ0kXYaNBX0mJoHzy" + }, + "href": "https://api.spotify.com/v1/tracks/336Z6KZ0kXYaNBX0mJoHzy", + "id": "336Z6KZ0kXYaNBX0mJoHzy", + "name": "Don't You (Forget About Me)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:336Z6KZ0kXYaNBX0mJoHzy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226283, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2HjeZ9kKEBN1BOjeAsIrNr" + }, + "href": "https://api.spotify.com/v1/tracks/2HjeZ9kKEBN1BOjeAsIrNr", + "id": "2HjeZ9kKEBN1BOjeAsIrNr", + "name": "Walk the Dinosaur", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:2HjeZ9kKEBN1BOjeAsIrNr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217035, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5wwV3PvcLQO0XSBRlrjKrq" + }, + "href": "https://api.spotify.com/v1/tracks/5wwV3PvcLQO0XSBRlrjKrq", + "id": "5wwV3PvcLQO0XSBRlrjKrq", + "name": "Alone", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5wwV3PvcLQO0XSBRlrjKrq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2YwHAy6qJ9ziRQJA6WaZhy" + }, + "href": "https://api.spotify.com/v1/tracks/2YwHAy6qJ9ziRQJA6WaZhy", + "id": "2YwHAy6qJ9ziRQJA6WaZhy", + "name": "What a Fool Believes", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2YwHAy6qJ9ziRQJA6WaZhy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201082, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7qGkyuUNwlxVhczm70tRpG" + }, + "href": "https://api.spotify.com/v1/tracks/7qGkyuUNwlxVhczm70tRpG", + "id": "7qGkyuUNwlxVhczm70tRpG", + "name": "Invisible Touch", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7qGkyuUNwlxVhczm70tRpG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 278562, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nvpIkMrowN0GyW1RT9wkY" + }, + "href": "https://api.spotify.com/v1/tracks/6nvpIkMrowN0GyW1RT9wkY", + "id": "6nvpIkMrowN0GyW1RT9wkY", + "name": "Can't Fight This Feeling", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6nvpIkMrowN0GyW1RT9wkY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 252937, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3fqnfaOvNzKEO2dHlI7REr" + }, + "href": "https://api.spotify.com/v1/tracks/3fqnfaOvNzKEO2dHlI7REr", + "id": "3fqnfaOvNzKEO2dHlI7REr", + "name": "Life's What You Make It", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:3fqnfaOvNzKEO2dHlI7REr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201071, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0P8ZlN0PNMmpoi76mkDYqG" + }, + "href": "https://api.spotify.com/v1/tracks/0P8ZlN0PNMmpoi76mkDYqG", + "id": "0P8ZlN0PNMmpoi76mkDYqG", + "name": "SOS", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0P8ZlN0PNMmpoi76mkDYqG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 286545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6e8wyDGesxbluq8lYLtM5C" + }, + "href": "https://api.spotify.com/v1/tracks/6e8wyDGesxbluq8lYLtM5C", + "id": "6e8wyDGesxbluq8lYLtM5C", + "name": "Hey Jude", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6e8wyDGesxbluq8lYLtM5C", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2025 Ninja Sex Party", "type": "C" }, + { "text": "2025 Ninja Sex Party", "type": "P" } + ], + "external_ids": { "upc": "8721253454441" }, + "genres": [], + "label": "Ninja Sex Party", + "popularity": 38 + } + }, + { + "added_at": "2025-09-11T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1rSbjr5U9J9rQ9sE7RxHFl" + }, + "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl", + "id": "1rSbjr5U9J9rQ9sE7RxHFl", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d076abbd008ad3c6d65112eb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d076abbd008ad3c6d65112eb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d076abbd008ad3c6d65112eb", + "height": 64, + "width": 64 + } + ], + "name": "LOVED", + "release_date": "2025-09-12", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1rSbjr5U9J9rQ9sE7RxHFl", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245904, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7cSLD89y304ZvX4mVhYVfw" + }, + "href": "https://api.spotify.com/v1/tracks/7cSLD89y304ZvX4mVhYVfw", + "id": "7cSLD89y304ZvX4mVhYVfw", + "name": "Tobeloved", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7cSLD89y304ZvX4mVhYVfw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 241608, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6cjALjYTubXSbLRXrnCNgY" + }, + "href": "https://api.spotify.com/v1/tracks/6cjALjYTubXSbLRXrnCNgY", + "id": "6cjALjYTubXSbLRXrnCNgY", + "name": "Ifyoucall", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6cjALjYTubXSbLRXrnCNgY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 276347, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0k6WMNaYENiEhseD7MAi4N" + }, + "href": "https://api.spotify.com/v1/tracks/0k6WMNaYENiEhseD7MAi4N", + "id": "0k6WMNaYENiEhseD7MAi4N", + "name": "Safeandsound", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0k6WMNaYENiEhseD7MAi4N", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197703, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/02KWhwsDjIX8ZXgBgK9kOP" + }, + "href": "https://api.spotify.com/v1/tracks/02KWhwsDjIX8ZXgBgK9kOP", + "id": "02KWhwsDjIX8ZXgBgK9kOP", + "name": "Sorry", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:02KWhwsDjIX8ZXgBgK9kOP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183462, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1eGYO1RzVRdphhWT86DSr9" + }, + "href": "https://api.spotify.com/v1/tracks/1eGYO1RzVRdphhWT86DSr9", + "id": "1eGYO1RzVRdphhWT86DSr9", + "name": "Yougotmefeeling", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1eGYO1RzVRdphhWT86DSr9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221343, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/07HZTpShoHhClfwKDEsvN5" + }, + "href": "https://api.spotify.com/v1/tracks/07HZTpShoHhClfwKDEsvN5", + "id": "07HZTpShoHhClfwKDEsvN5", + "name": "Leaves", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:07HZTpShoHhClfwKDEsvN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 218683, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0B36Bnz5XYl4plV4MpXSAg" + }, + "href": "https://api.spotify.com/v1/tracks/0B36Bnz5XYl4plV4MpXSAg", + "id": "0B36Bnz5XYl4plV4MpXSAg", + "name": "Everybodyelse", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0B36Bnz5XYl4plV4MpXSAg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 271047, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7r4NrHM4w6tJystfMbse4C" + }, + "href": "https://api.spotify.com/v1/tracks/7r4NrHM4w6tJystfMbse4C", + "id": "7r4NrHM4w6tJystfMbse4C", + "name": "Summerinlove", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:7r4NrHM4w6tJystfMbse4C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231490, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0NeYhtI2vLqaIpvYRQ7E5Y" + }, + "href": "https://api.spotify.com/v1/tracks/0NeYhtI2vLqaIpvYRQ7E5Y", + "id": "0NeYhtI2vLqaIpvYRQ7E5Y", + "name": "Leaveyourlove", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0NeYhtI2vLqaIpvYRQ7E5Y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171575, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7hiuxAwDEBlEil538YGffi" + }, + "href": "https://api.spotify.com/v1/tracks/7hiuxAwDEBlEil538YGffi", + "id": "7hiuxAwDEBlEil538YGffi", + "name": "Thinkaboutit", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7hiuxAwDEBlEil538YGffi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1Ded9EOaAthYQVOs9MwtCp" + }, + "href": "https://api.spotify.com/v1/tracks/1Ded9EOaAthYQVOs9MwtCp", + "id": "1Ded9EOaAthYQVOs9MwtCp", + "name": "Finallyover", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1Ded9EOaAthYQVOs9MwtCp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "name": "Parcels", + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 302895, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4LpNkTXEHMktM6cj6DV12i" + }, + "href": "https://api.spotify.com/v1/tracks/4LpNkTXEHMktM6cj6DV12i", + "id": "4LpNkTXEHMktM6cj6DV12i", + "name": "Iwanttobeyourlightagain", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:4LpNkTXEHMktM6cj6DV12i", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", + "type": "C" + }, + { + "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", + "type": "P" + } + ], + "external_ids": { "upc": "5056556160120" }, + "genres": [], + "label": "PARCELS MUSIC", + "popularity": 66 + } + }, + { + "added_at": "2025-06-05T11:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 9, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3My0taql4cY6yHpY1bZILJ" + }, + "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ", + "id": "3My0taql4cY6yHpY1bZILJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273c4d3f5ed3a7a2f3e8854e76c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02c4d3f5ed3a7a2f3e8854e76c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851c4d3f5ed3a7a2f3e8854e76c", + "height": 64, + "width": 64 + } + ], + "name": "Revelation", + "release_date": "2025-06-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3My0taql4cY6yHpY1bZILJ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 9, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 253862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6TCOOuqsger70LEZUXGrFG" + }, + "href": "https://api.spotify.com/v1/tracks/6TCOOuqsger70LEZUXGrFG", + "id": "6TCOOuqsger70LEZUXGrFG", + "name": "Revelation", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6TCOOuqsger70LEZUXGrFG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 205611, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Upay8wgPd30hQPjeWXHOC" + }, + "href": "https://api.spotify.com/v1/tracks/0Upay8wgPd30hQPjeWXHOC", + "id": "0Upay8wgPd30hQPjeWXHOC", + "name": "Love Me Alive", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0Upay8wgPd30hQPjeWXHOC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5eX3Laj9b0V3HjkEBwrXmq" + }, + "href": "https://api.spotify.com/v1/tracks/5eX3Laj9b0V3HjkEBwrXmq", + "id": "5eX3Laj9b0V3HjkEBwrXmq", + "name": "Foolish Pleasure", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5eX3Laj9b0V3HjkEBwrXmq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6yE7Ch3CLPFvMl9m9ZqAYK" + }, + "href": "https://api.spotify.com/v1/tracks/6yE7Ch3CLPFvMl9m9ZqAYK", + "id": "6yE7Ch3CLPFvMl9m9ZqAYK", + "name": "The Hero", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6yE7Ch3CLPFvMl9m9ZqAYK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 85001, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1OZ2Fh8I2xKWgQgk9DNi6L" + }, + "href": "https://api.spotify.com/v1/tracks/1OZ2Fh8I2xKWgQgk9DNi6L", + "id": "1OZ2Fh8I2xKWgQgk9DNi6L", + "name": "Keynote", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1OZ2Fh8I2xKWgQgk9DNi6L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198496, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/12txrzwhdCu0DhlEMrKBxw" + }, + "href": "https://api.spotify.com/v1/tracks/12txrzwhdCu0DhlEMrKBxw", + "id": "12txrzwhdCu0DhlEMrKBxw", + "name": "Friday Night", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:12txrzwhdCu0DhlEMrKBxw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189347, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wjxlsdGrze9UxCWngBfHS" + }, + "href": "https://api.spotify.com/v1/tracks/4wjxlsdGrze9UxCWngBfHS", + "id": "4wjxlsdGrze9UxCWngBfHS", + "name": "Dreams", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4wjxlsdGrze9UxCWngBfHS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/60wP1IkIYps6MS3tS6Usl3" + }, + "href": "https://api.spotify.com/v1/tracks/60wP1IkIYps6MS3tS6Usl3", + "id": "60wP1IkIYps6MS3tS6Usl3", + "name": "Thorn", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:60wP1IkIYps6MS3tS6Usl3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" + }, + "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", + "id": "4GLJPBj5Cdr9AgLKvLWM4n", + "name": "Dragonette", + "type": "artist", + "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181645, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/63GJGxmjnfkBkdqgbH7gE2" + }, + "href": "https://api.spotify.com/v1/tracks/63GJGxmjnfkBkdqgbH7gE2", + "id": "63GJGxmjnfkBkdqgbH7gE2", + "name": "Let My Love Open The Door", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:63GJGxmjnfkBkdqgbH7gE2", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "\u00a9 2025 Neon Gold Records", "type": "C" }, + { "text": "\u2117 2025 Neon Gold Records", "type": "P" } + ], + "external_ids": { "upc": "198704340437" }, + "genres": [], + "label": "Neon Gold", + "popularity": 42 + } + }, + { + "added_at": "2025-06-02T10:11:04Z", + "album": { + "album_type": "album", + "total_tracks": 25, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/78Wcqh7ygPyANYSd8kn5PG" + }, + "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG", + "id": "78Wcqh7ygPyANYSd8kn5PG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273a2e2bfe27469ef8067aa4560", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02a2e2bfe27469ef8067aa4560", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851a2e2bfe27469ef8067aa4560", + "height": 64, + "width": 64 + } + ], + "name": "Bitters\u00fc\u00df (Baller Deluxe)", + "release_date": "2025-05-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:78Wcqh7ygPyANYSd8kn5PG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 25, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4yDBSqz5fHkR1uZBEdMu4C" + }, + "href": "https://api.spotify.com/v1/tracks/4yDBSqz5fHkR1uZBEdMu4C", + "id": "4yDBSqz5fHkR1uZBEdMu4C", + "name": "Parallele Linien", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4yDBSqz5fHkR1uZBEdMu4C", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 150521, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3P4p3ihEEV63gnXh1QYbHu" + }, + "href": "https://api.spotify.com/v1/tracks/3P4p3ihEEV63gnXh1QYbHu", + "id": "3P4p3ihEEV63gnXh1QYbHu", + "name": "Psst", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3P4p3ihEEV63gnXh1QYbHu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 174933, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7Dck7yNBesHT3bINWqGuJj" + }, + "href": "https://api.spotify.com/v1/tracks/7Dck7yNBesHT3bINWqGuJj", + "id": "7Dck7yNBesHT3bINWqGuJj", + "name": "Engel in Jeans", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7Dck7yNBesHT3bINWqGuJj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 140526, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wGXOlPZRHL2BxOwHCggFz" + }, + "href": "https://api.spotify.com/v1/tracks/1wGXOlPZRHL2BxOwHCggFz", + "id": "1wGXOlPZRHL2BxOwHCggFz", + "name": "Coco Taxi", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:1wGXOlPZRHL2BxOwHCggFz", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 149011, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7cRv3ualjFncyPnjM5hzXw" + }, + "href": "https://api.spotify.com/v1/tracks/7cRv3ualjFncyPnjM5hzXw", + "id": "7cRv3ualjFncyPnjM5hzXw", + "name": "Seifenblasen", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7cRv3ualjFncyPnjM5hzXw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141078, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1QhASlLdyCTimVl2b0jQZ1" + }, + "href": "https://api.spotify.com/v1/tracks/1QhASlLdyCTimVl2b0jQZ1", + "id": "1QhASlLdyCTimVl2b0jQZ1", + "name": "Mama", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1QhASlLdyCTimVl2b0jQZ1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 182200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5QSHWxxZRZFTUgwjMl3enO" + }, + "href": "https://api.spotify.com/v1/tracks/5QSHWxxZRZFTUgwjMl3enO", + "id": "5QSHWxxZRZFTUgwjMl3enO", + "name": "Babylon", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5QSHWxxZRZFTUgwjMl3enO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 155876, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/36wvHXuSxjcFFrUYQ7p651" + }, + "href": "https://api.spotify.com/v1/tracks/36wvHXuSxjcFFrUYQ7p651", + "id": "36wvHXuSxjcFFrUYQ7p651", + "name": "Guess What I Like", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:36wvHXuSxjcFFrUYQ7p651", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 151893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7uX5nGsuQtviIx5bbGK2c2" + }, + "href": "https://api.spotify.com/v1/tracks/7uX5nGsuQtviIx5bbGK2c2", + "id": "7uX5nGsuQtviIx5bbGK2c2", + "name": "Katana", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7uX5nGsuQtviIx5bbGK2c2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 139800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/265NTGkEQbGThMjjcvhwfS" + }, + "href": "https://api.spotify.com/v1/tracks/265NTGkEQbGThMjjcvhwfS", + "id": "265NTGkEQbGThMjjcvhwfS", + "name": "Mona Lisa", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:265NTGkEQbGThMjjcvhwfS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7a4s38cE2CYh6qAtWWiMcs" + }, + "href": "https://api.spotify.com/v1/tracks/7a4s38cE2CYh6qAtWWiMcs", + "id": "7a4s38cE2CYh6qAtWWiMcs", + "name": "Winnetou", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7a4s38cE2CYh6qAtWWiMcs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 159493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08HAsedFOMxs7NETNXPZ3K" + }, + "href": "https://api.spotify.com/v1/tracks/08HAsedFOMxs7NETNXPZ3K", + "id": "08HAsedFOMxs7NETNXPZ3K", + "name": "Baller", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:08HAsedFOMxs7NETNXPZ3K", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152560, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1xGvgqekFRzNkgAtKsHXu8" + }, + "href": "https://api.spotify.com/v1/tracks/1xGvgqekFRzNkgAtKsHXu8", + "id": "1xGvgqekFRzNkgAtKsHXu8", + "name": "Tan Lines", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:1xGvgqekFRzNkgAtKsHXu8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 136557, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0VYrYHPDPVv0fjdojYEMAc" + }, + "href": "https://api.spotify.com/v1/tracks/0VYrYHPDPVv0fjdojYEMAc", + "id": "0VYrYHPDPVv0fjdojYEMAc", + "name": "K\u00fcsschen", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0VYrYHPDPVv0fjdojYEMAc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 171346, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5vn3t4X7Q8rCAa5Lfd07XW" + }, + "href": "https://api.spotify.com/v1/tracks/5vn3t4X7Q8rCAa5Lfd07XW", + "id": "5vn3t4X7Q8rCAa5Lfd07XW", + "name": "Karussell", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:5vn3t4X7Q8rCAa5Lfd07XW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202224, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KyZHk9EM6CXGrKeI26ihf" + }, + "href": "https://api.spotify.com/v1/tracks/4KyZHk9EM6CXGrKeI26ihf", + "id": "4KyZHk9EM6CXGrKeI26ihf", + "name": "Songs gehasst", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:4KyZHk9EM6CXGrKeI26ihf", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 175986, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3DTGOe9oWi4NwNNF8jeQt0" + }, + "href": "https://api.spotify.com/v1/tracks/3DTGOe9oWi4NwNNF8jeQt0", + "id": "3DTGOe9oWi4NwNNF8jeQt0", + "name": "Rotk\u00e4ppchen", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3DTGOe9oWi4NwNNF8jeQt0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 144880, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2yhWwMSeUzFJiQcca4mdbh" + }, + "href": "https://api.spotify.com/v1/tracks/2yhWwMSeUzFJiQcca4mdbh", + "id": "2yhWwMSeUzFJiQcca4mdbh", + "name": "Winnetou - Acoustic Version", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:2yhWwMSeUzFJiQcca4mdbh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4IitBXra1xiNAFqYU1YFp8" + }, + "href": "https://api.spotify.com/v1/tracks/4IitBXra1xiNAFqYU1YFp8", + "id": "4IitBXra1xiNAFqYU1YFp8", + "name": "Parallele Linien - Acoustic Version", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:4IitBXra1xiNAFqYU1YFp8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221586, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1slJAXwnqcsjbf3dvSK3ZI" + }, + "href": "https://api.spotify.com/v1/tracks/1slJAXwnqcsjbf3dvSK3ZI", + "id": "1slJAXwnqcsjbf3dvSK3ZI", + "name": "Baller - Acoustic Version", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:1slJAXwnqcsjbf3dvSK3ZI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219560, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5OEn3AZguWzPiz7PaxgfJI" + }, + "href": "https://api.spotify.com/v1/tracks/5OEn3AZguWzPiz7PaxgfJI", + "id": "5OEn3AZguWzPiz7PaxgfJI", + "name": "Baller - Acoustic Hungarian Version", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:5OEn3AZguWzPiz7PaxgfJI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7eXtpvQa9PEF7d2I3PnECW" + }, + "href": "https://api.spotify.com/v1/tracks/7eXtpvQa9PEF7d2I3PnECW", + "id": "7eXtpvQa9PEF7d2I3PnECW", + "name": "Baller - Eurovision Mix", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:7eXtpvQa9PEF7d2I3PnECW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 158933, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Cyi6njkifIohvyFNKZivX" + }, + "href": "https://api.spotify.com/v1/tracks/6Cyi6njkifIohvyFNKZivX", + "id": "6Cyi6njkifIohvyFNKZivX", + "name": "Baller - Karaoke Version", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:6Cyi6njkifIohvyFNKZivX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 175626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Dv67yeONf1kE0qHQim1bR" + }, + "href": "https://api.spotify.com/v1/tracks/0Dv67yeONf1kE0qHQim1bR", + "id": "0Dv67yeONf1kE0qHQim1bR", + "name": "Baller - Abor Remix", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:0Dv67yeONf1kE0qHQim1bR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wxw2CQKTIOSkPFJbTYVzl" + }, + "href": "https://api.spotify.com/v1/artists/5wxw2CQKTIOSkPFJbTYVzl", + "id": "5wxw2CQKTIOSkPFJbTYVzl", + "name": "nowifi", + "type": "artist", + "uri": "spotify:artist:5wxw2CQKTIOSkPFJbTYVzl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 167183, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1v7J9ZAxKqbuLpvMciORtw" + }, + "href": "https://api.spotify.com/v1/tracks/1v7J9ZAxKqbuLpvMciORtw", + "id": "1v7J9ZAxKqbuLpvMciORtw", + "name": "Baller - nowifi Remix", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:1v7J9ZAxKqbuLpvMciORtw", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "(P) 2025 Jive Germany a division of Sony Music Entertainment Germany GmbH", + "type": "P" + } + ], + "external_ids": { "upc": "196872930788" }, + "genres": [], + "label": "Jive", + "popularity": 43 + } + }, + { + "added_at": "2025-04-24T11:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4zWfJm5YZnk7ML3mRRi0Xo" + }, + "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo", + "id": "4zWfJm5YZnk7ML3mRRi0Xo", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273818831d1d40b4b5a53a70714", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02818831d1d40b4b5a53a70714", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851818831d1d40b4b5a53a70714", + "height": 64, + "width": 64 + } + ], + "name": "Sadgirl", + "release_date": "2025-04-25", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4zWfJm5YZnk7ML3mRRi0Xo", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173197, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3jowQzeDQU4dIAKQg7ahXh" + }, + "href": "https://api.spotify.com/v1/tracks/3jowQzeDQU4dIAKQg7ahXh", + "id": "3jowQzeDQU4dIAKQg7ahXh", + "name": "Vertigo", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3jowQzeDQU4dIAKQg7ahXh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 168837, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5f2nYBpaCRJ7rFUplXbn3g" + }, + "href": "https://api.spotify.com/v1/tracks/5f2nYBpaCRJ7rFUplXbn3g", + "id": "5f2nYBpaCRJ7rFUplXbn3g", + "name": "Sadgirl", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5f2nYBpaCRJ7rFUplXbn3g", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 169015, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7CCwnjE3M1Xe9Jo95my7nh" + }, + "href": "https://api.spotify.com/v1/tracks/7CCwnjE3M1Xe9Jo95my7nh", + "id": "7CCwnjE3M1Xe9Jo95my7nh", + "name": "Jelly Tot", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7CCwnjE3M1Xe9Jo95my7nh", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 185240, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3BpnmRfLj1jmc3yGl2VnsU" + }, + "href": "https://api.spotify.com/v1/tracks/3BpnmRfLj1jmc3yGl2VnsU", + "id": "3BpnmRfLj1jmc3yGl2VnsU", + "name": "Hello, Anxiety", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3BpnmRfLj1jmc3yGl2VnsU", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 131641, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5hCKmWQaypyWXpUrkN1V43" + }, + "href": "https://api.spotify.com/v1/tracks/5hCKmWQaypyWXpUrkN1V43", + "id": "5hCKmWQaypyWXpUrkN1V43", + "name": "I Need a Man", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:5hCKmWQaypyWXpUrkN1V43", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 195192, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7aDc1BsrCR6qArZ5opHGSB" + }, + "href": "https://api.spotify.com/v1/tracks/7aDc1BsrCR6qArZ5opHGSB", + "id": "7aDc1BsrCR6qArZ5opHGSB", + "name": "Liar Liar", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7aDc1BsrCR6qArZ5opHGSB", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220948, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1GtFbMSPJV0cr7P7T51tou" + }, + "href": "https://api.spotify.com/v1/tracks/1GtFbMSPJV0cr7P7T51tou", + "id": "1GtFbMSPJV0cr7P7T51tou", + "name": "Kingpin", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1GtFbMSPJV0cr7P7T51tou", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189183, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1YI5taPXjg9yX8DdjTcNxT" + }, + "href": "https://api.spotify.com/v1/tracks/1YI5taPXjg9yX8DdjTcNxT", + "id": "1YI5taPXjg9yX8DdjTcNxT", + "name": "Future Us", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:1YI5taPXjg9yX8DdjTcNxT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7gdDCxXKSLh1hFI95rQtfs" + }, + "href": "https://api.spotify.com/v1/tracks/7gdDCxXKSLh1hFI95rQtfs", + "id": "7gdDCxXKSLh1hFI95rQtfs", + "name": "American Dream", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7gdDCxXKSLh1hFI95rQtfs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190568, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6GqOX1HgsKNF3tNa7mO1Sa" + }, + "href": "https://api.spotify.com/v1/tracks/6GqOX1HgsKNF3tNa7mO1Sa", + "id": "6GqOX1HgsKNF3tNa7mO1Sa", + "name": "Jean (Two Ships)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6GqOX1HgsKNF3tNa7mO1Sa", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" + }, + "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", + "id": "2z6JjrrJKNLilqlx8mlxcc", + "name": "Litany", + "type": "artist", + "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197739, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/38TssrSNLgbJXidJ07VtFl" + }, + "href": "https://api.spotify.com/v1/tracks/38TssrSNLgbJXidJ07VtFl", + "id": "38TssrSNLgbJXidJ07VtFl", + "name": "Alright", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:38TssrSNLgbJXidJ07VtFl", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", + "type": "C" + }, + { + "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", + "type": "P" + } + ], + "external_ids": { "upc": "067003168052" }, + "genres": [], + "label": "Nettwerk Music Group", + "popularity": 24 + } + }, + { + "added_at": "2024-10-17T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6mEZu9pcOyIcUSmWTofkaj" + }, + "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj", + "id": "6mEZu9pcOyIcUSmWTofkaj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273eb7e716f9775588178a8abe5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02eb7e716f9775588178a8abe5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851eb7e716f9775588178a8abe5", + "height": 64, + "width": 64 + } + ], + "name": "3AM (LA LA LA)", + "release_date": "2024-10-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6mEZu9pcOyIcUSmWTofkaj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215221, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1qVq8dBvDdpz6WhZcaGxy5" + }, + "href": "https://api.spotify.com/v1/tracks/1qVq8dBvDdpz6WhZcaGxy5", + "id": "1qVq8dBvDdpz6WhZcaGxy5", + "name": "WHO KNOWS WHAT YOU\u2019LL FIND?", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1qVq8dBvDdpz6WhZcaGxy5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 155343, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4LJOC3L3wmOqX7jxC7DNTb" + }, + "href": "https://api.spotify.com/v1/tracks/4LJOC3L3wmOqX7jxC7DNTb", + "id": "4LJOC3L3wmOqX7jxC7DNTb", + "name": "I CAN\u2019T LOSE YOU", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:4LJOC3L3wmOqX7jxC7DNTb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 224833, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0dIwVz7r4zpaZ3Yw2nU5We" + }, + "href": "https://api.spotify.com/v1/tracks/0dIwVz7r4zpaZ3Yw2nU5We", + "id": "0dIwVz7r4zpaZ3Yw2nU5We", + "name": "CONTROL", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0dIwVz7r4zpaZ3Yw2nU5We", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 195929, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6ZmKtSbuCPrRWhrMltR3Pc" + }, + "href": "https://api.spotify.com/v1/tracks/6ZmKtSbuCPrRWhrMltR3Pc", + "id": "6ZmKtSbuCPrRWhrMltR3Pc", + "name": "SO WHAT", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6ZmKtSbuCPrRWhrMltR3Pc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 213794, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1s4f5ImHiBmm9OzgGRSLw3" + }, + "href": "https://api.spotify.com/v1/tracks/1s4f5ImHiBmm9OzgGRSLw3", + "id": "1s4f5ImHiBmm9OzgGRSLw3", + "name": "BREAKBEAT", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1s4f5ImHiBmm9OzgGRSLw3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 379101, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/07Znaf6hyuAoxiqPXYC58L" + }, + "href": "https://api.spotify.com/v1/tracks/07Znaf6hyuAoxiqPXYC58L", + "id": "07Znaf6hyuAoxiqPXYC58L", + "name": "SICKO", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:07Znaf6hyuAoxiqPXYC58L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0iUw5KL7NRlfKK3tZJNK9b" + }, + "href": "https://api.spotify.com/v1/artists/0iUw5KL7NRlfKK3tZJNK9b", + "id": "0iUw5KL7NRlfKK3tZJNK9b", + "name": "Sweetie Irie", + "type": "artist", + "uri": "spotify:artist:0iUw5KL7NRlfKK3tZJNK9b" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 251537, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3PISUiCZILLzJJSp3c3GhE" + }, + "href": "https://api.spotify.com/v1/tracks/3PISUiCZILLzJJSp3c3GhE", + "id": "3PISUiCZILLzJJSp3c3GhE", + "name": "REAL MOVE TOUCH", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3PISUiCZILLzJJSp3c3GhE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 245358, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4qXd31Nk2ifvRNuC1cUwtd" + }, + "href": "https://api.spotify.com/v1/tracks/4qXd31Nk2ifvRNuC1cUwtd", + "id": "4qXd31Nk2ifvRNuC1cUwtd", + "name": "FAR OUT", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4qXd31Nk2ifvRNuC1cUwtd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207619, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3nXYo1X0TzTSOOhumtp1r4" + }, + "href": "https://api.spotify.com/v1/tracks/3nXYo1X0TzTSOOhumtp1r4", + "id": "3nXYo1X0TzTSOOhumtp1r4", + "name": "JANET", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3nXYo1X0TzTSOOhumtp1r4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173731, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4RLg7ZKJU51uhPPxWqS0XT" + }, + "href": "https://api.spotify.com/v1/tracks/4RLg7ZKJU51uhPPxWqS0XT", + "id": "4RLg7ZKJU51uhPPxWqS0XT", + "name": "SO TRU", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4RLg7ZKJU51uhPPxWqS0XT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 274176, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Ghkq3LC0vhyBxaHQgZi7a" + }, + "href": "https://api.spotify.com/v1/tracks/6Ghkq3LC0vhyBxaHQgZi7a", + "id": "6Ghkq3LC0vhyBxaHQgZi7a", + "name": "WRONG IDEA", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:6Ghkq3LC0vhyBxaHQgZi7a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 320432, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0VFQUkXL2wtfAh0W4jSJGM" + }, + "href": "https://api.spotify.com/v1/tracks/0VFQUkXL2wtfAh0W4jSJGM", + "id": "0VFQUkXL2wtfAh0W4jSJGM", + "name": "3AM (LA LA LA)", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:0VFQUkXL2wtfAh0W4jSJGM", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602465788211" }, + "genres": [], + "label": "Polydor Records", + "popularity": 40 + } + }, + null, + { + "added_at": "2024-09-05T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 20, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3DQueEd1Ft9PHWgovDzPKh" + }, + "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh", + "id": "3DQueEd1Ft9PHWgovDzPKh", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2739574df129a4a2f4fa4990286", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e029574df129a4a2f4fa4990286", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048519574df129a4a2f4fa4990286", + "height": 64, + "width": 64 + } + ], + "name": "ten days", + "release_date": "2024-09-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3DQueEd1Ft9PHWgovDzPKh", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 20, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 30857, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc" + }, + "href": "https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc", + "id": "00nDbqJkHBGUFdim9M0xGc", + "name": ".one", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:00nDbqJkHBGUFdim9M0xGc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6l7R1jntPahGxwJt7Tky8h" + }, + "href": "https://api.spotify.com/v1/artists/6l7R1jntPahGxwJt7Tky8h", + "id": "6l7R1jntPahGxwJt7Tky8h", + "name": "Obongjayar", + "type": "artist", + "uri": "spotify:artist:6l7R1jntPahGxwJt7Tky8h" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220653, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi" + }, + "href": "https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi", + "id": "1rf4SX7dduNbrNnOmupLzi", + "name": "adore u", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1rf4SX7dduNbrNnOmupLzi", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 10670, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH" + }, + "href": "https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH", + "id": "0lt9clHEwYyheuC9rik9UH", + "name": ".two", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0lt9clHEwYyheuC9rik9UH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6Ja6zFB5d7XRihhfMo6KzY" + }, + "href": "https://api.spotify.com/v1/artists/6Ja6zFB5d7XRihhfMo6KzY", + "id": "6Ja6zFB5d7XRihhfMo6KzY", + "name": "Jozzy", + "type": "artist", + "uri": "spotify:artist:6Ja6zFB5d7XRihhfMo6KzY" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i" + }, + "href": "https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i", + "id": "6twB0uYXJYW9t5GHfYaQ3i", + "name": "ten", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6twB0uYXJYW9t5GHfYaQ3i", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15034, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW" + }, + "href": "https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW", + "id": "6G7TRmzTt9tnrM0QqSVpJW", + "name": ".three", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6G7TRmzTt9tnrM0QqSVpJW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2WoVwexZuODvclzULjPQtm" + }, + "href": "https://api.spotify.com/v1/artists/2WoVwexZuODvclzULjPQtm", + "id": "2WoVwexZuODvclzULjPQtm", + "name": "Sampha", + "type": "artist", + "uri": "spotify:artist:2WoVwexZuODvclzULjPQtm" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214469, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X" + }, + "href": "https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X", + "id": "4IHblO52meh2jwqES1BA7X", + "name": "fear less", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4IHblO52meh2jwqES1BA7X", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 9856, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq" + }, + "href": "https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq", + "id": "1wU9pfdw6ht8HKfxz6wMNq", + "name": ".four", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1wU9pfdw6ht8HKfxz6wMNq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PLsMEk2DCRVlVL2a9aZAv" + }, + "href": "https://api.spotify.com/v1/artists/4PLsMEk2DCRVlVL2a9aZAv", + "id": "4PLsMEk2DCRVlVL2a9aZAv", + "name": "SOAK", + "type": "artist", + "uri": "spotify:artist:4PLsMEk2DCRVlVL2a9aZAv" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 260997, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a" + }, + "href": "https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a", + "id": "2D9a9CXeo3HFtVeaNlzp4a", + "name": "just stand there", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2D9a9CXeo3HFtVeaNlzp4a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15254, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM" + }, + "href": "https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM", + "id": "3vTHKAYJy0hY1OkVv1qLNM", + "name": ".five", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3vTHKAYJy0hY1OkVv1qLNM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226677, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6" + }, + "href": "https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6", + "id": "1qfJ6OvxrspQTmcvdIEoX6", + "name": "places to be", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1qfJ6OvxrspQTmcvdIEoX6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 28836, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG" + }, + "href": "https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG", + "id": "13H2XgH3k8SEptaoD5qeLG", + "name": ".six", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:13H2XgH3k8SEptaoD5qeLG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/59MDSNIYoOY0WRYuodzJPD" + }, + "href": "https://api.spotify.com/v1/artists/59MDSNIYoOY0WRYuodzJPD", + "id": "59MDSNIYoOY0WRYuodzJPD", + "name": "Duskus", + "type": "artist", + "uri": "spotify:artist:59MDSNIYoOY0WRYuodzJPD" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" + }, + "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", + "id": "3pK4EcflBpG1Kpmjk5LK2R", + "name": "Joy Anonymous", + "type": "artist", + "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 453068, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc" + }, + "href": "https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc", + "id": "3i9QKRl5Ql3pgUfNdYBVTc", + "name": "glow", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3i9QKRl5Ql3pgUfNdYBVTc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 31749, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW" + }, + "href": "https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW", + "id": "2OLH9ukOFDVBMuVUuy2sFW", + "name": ".seven", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:2OLH9ukOFDVBMuVUuy2sFW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220656, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW" + }, + "href": "https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW", + "id": "3DzWFxyzsAVblVNndiU9CW", + "name": "i saw you", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3DzWFxyzsAVblVNndiU9CW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 15037, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA" + }, + "href": "https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA", + "id": "1aTcAf7K1ym8lBcuu8nmJA", + "name": ".eight", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:1aTcAf7K1ym8lBcuu8nmJA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5s6TJEuHTr9GR894wc6VfP" + }, + "href": "https://api.spotify.com/v1/artists/5s6TJEuHTr9GR894wc6VfP", + "id": "5s6TJEuHTr9GR894wc6VfP", + "name": "Emmylou Harris", + "type": "artist", + "uri": "spotify:artist:5s6TJEuHTr9GR894wc6VfP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200737, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X" + }, + "href": "https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X", + "id": "4S05mkyTtAiWy5l4umch0X", + "name": "where will i be", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:4S05mkyTtAiWy5l4umch0X", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 19060, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN" + }, + "href": "https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN", + "id": "5aNwAqN5Gk5oZIwW5KfhXN", + "name": ".nine", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:5aNwAqN5Gk5oZIwW5KfhXN", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" + }, + "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", + "id": "3pK4EcflBpG1Kpmjk5LK2R", + "name": "Joy Anonymous", + "type": "artist", + "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 344068, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv" + }, + "href": "https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv", + "id": "4A8tKYA7gwZzQ4jVwIv1sv", + "name": "peace u need", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:4A8tKYA7gwZzQ4jVwIv1sv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 29540, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor" + }, + "href": "https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor", + "id": "2feEZkLf7dZUueeVBNsdor", + "name": ".ten", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2feEZkLf7dZUueeVBNsdor", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3IunaFjvNKj98JW89JYv9u" + }, + "href": "https://api.spotify.com/v1/artists/3IunaFjvNKj98JW89JYv9u", + "id": "3IunaFjvNKj98JW89JYv9u", + "name": "The Japanese House", + "type": "artist", + "uri": "spotify:artist:3IunaFjvNKj98JW89JYv9u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6M98IZJK2tx6x2YVyHua9K" + }, + "href": "https://api.spotify.com/v1/artists/6M98IZJK2tx6x2YVyHua9K", + "id": "6M98IZJK2tx6x2YVyHua9K", + "name": "Scott Hardkiss", + "type": "artist", + "uri": "spotify:artist:6M98IZJK2tx6x2YVyHua9K" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 314007, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO" + }, + "href": "https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO", + "id": "61pyjiweMDS1h930OgS0XO", + "name": "backseat", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:61pyjiweMDS1h930OgS0XO", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u00a9 2024 Fred Gibson", + "type": "C" + }, + { + "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u2117 2024 Fred Gibson", + "type": "P" + } + ], + "external_ids": { "upc": "5021732457110" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 65 + } + }, + { + "added_at": "2024-08-15T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/27ynHS80OjICdw3qLNMgQP" + }, + "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP", + "id": "27ynHS80OjICdw3qLNMgQP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f6e25db6bc1a1f9e5fb3accd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f6e25db6bc1a1f9e5fb3accd", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f6e25db6bc1a1f9e5fb3accd", + "height": 64, + "width": 64 + } + ], + "name": "Paradise State of Mind", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:27ynHS80OjICdw3qLNMgQP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189099, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL" + }, + "href": "https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL", + "id": "6qtGeawfnmQMUWyQ95LdIL", + "name": "See You In The Afterlife", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6qtGeawfnmQMUWyQ95LdIL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 259252, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ" + }, + "href": "https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ", + "id": "6r9GzPEdq4bGp507oxt2iZ", + "name": "Lost In Space", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6r9GzPEdq4bGp507oxt2iZ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 153005, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm" + }, + "href": "https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm", + "id": "0CUojUDoPZvjKqPPLHaOTm", + "name": "Take Me Back", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0CUojUDoPZvjKqPPLHaOTm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 274446, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj" + }, + "href": "https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj", + "id": "090Vhdep7tK2kXLy2M1vLj", + "name": "Let Go", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:090Vhdep7tK2kXLy2M1vLj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219300, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ" + }, + "href": "https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ", + "id": "6QHE0tQs8NFE3DGDldP1DJ", + "name": "Feed Me", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6QHE0tQs8NFE3DGDldP1DJ", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 288544, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n" + }, + "href": "https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n", + "id": "2cIP5wh1Ala2rWVwTOgg4n", + "name": "Paradise State Of Mind", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2cIP5wh1Ala2rWVwTOgg4n", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 328024, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP" + }, + "href": "https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP", + "id": "5gygubFSFXfLDhoMnpAhzP", + "name": "Glitchzig", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5gygubFSFXfLDhoMnpAhzP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 253257, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd" + }, + "href": "https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd", + "id": "08vuNWfV1WOndL3yMetfXd", + "name": "The Holy Shangri-La", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:08vuNWfV1WOndL3yMetfXd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183139, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK" + }, + "href": "https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK", + "id": "0wyQNzcMUYFec1B19hu6pK", + "name": "Sometimes I Wanna Be Bad", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0wyQNzcMUYFec1B19hu6pK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 204111, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS" + }, + "href": "https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS", + "id": "1G2bNCn8x1WrbeIBBvfQZS", + "name": "Chasing Low Vibrations", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:1G2bNCn8x1WrbeIBBvfQZS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" + }, + "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", + "id": "7gP3bB2nilZXLfPHJhMdvc", + "name": "Foster The People", + "type": "artist", + "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 264919, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b" + }, + "href": "https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b", + "id": "60BqMpaQjhET1YZhou4t2b", + "name": "A Diamond To Be Born", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:60BqMpaQjhET1YZhou4t2b", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2024 Atlantic Recording Corporation", + "type": "C" + }, + { + "text": "\u2117 2024 Atlantic Recording Corporation", + "type": "P" + } + ], + "external_ids": { "upc": "075679645760" }, + "genres": [], + "label": "Atlantic Records", + "popularity": 46 + } + }, + { + "added_at": "2024-08-15T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 9, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/33tDS6r9DQBx9LaYUY7wh1" + }, + "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1", + "id": "33tDS6r9DQBx9LaYUY7wh1", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27314f8dd0b16b636ea4bfa119e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0214f8dd0b16b636ea4bfa119e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485114f8dd0b16b636ea4bfa119e", + "height": 64, + "width": 64 + } + ], + "name": "Melodramatic", + "release_date": "2024-08-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:33tDS6r9DQBx9LaYUY7wh1", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 9, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 233505, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq" + }, + "href": "https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq", + "id": "0w13ZqgFrKq7BYgsc2EKvq", + "name": "The Phoenix", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0w13ZqgFrKq7BYgsc2EKvq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190296, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85" + }, + "href": "https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85", + "id": "71u2sgaT6I05JY2n6aom85", + "name": "Baby Don't Give Up!", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:71u2sgaT6I05JY2n6aom85", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 157712, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim" + }, + "href": "https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim", + "id": "3QuBIm40rJbw5asM9tGjim", + "name": "As Soon As I Discover", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3QuBIm40rJbw5asM9tGjim", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191740, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv" + }, + "href": "https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv", + "id": "1AieqRevDfu4uQlhTIWJbv", + "name": "My Little One", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:1AieqRevDfu4uQlhTIWJbv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 218015, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO" + }, + "href": "https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO", + "id": "3MTbJM0UmqrgSr9thX1JwO", + "name": "Love Away", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3MTbJM0UmqrgSr9thX1JwO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203419, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4" + }, + "href": "https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4", + "id": "5B5l5KuDqLT73R3lgDI7H4", + "name": "Alone In The Darkness", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5B5l5KuDqLT73R3lgDI7H4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180967, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y" + }, + "href": "https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y", + "id": "4tkOZG1F6og5NZW1uD3z7Y", + "name": "My Way", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4tkOZG1F6og5NZW1uD3z7Y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178997, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s" + }, + "href": "https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s", + "id": "0CtfbRy4cB2FOEsP5WIZ2s", + "name": "I Promise Myself", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:0CtfbRy4cB2FOEsP5WIZ2s", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" + }, + "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", + "id": "68NOjWuVYBRXzYwhel3jAl", + "name": "SIAMES", + "type": "artist", + "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201119, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg" + }, + "href": "https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg", + "id": "3FZwYiZufmIgKyfqgMnpPg", + "name": "Post Tour Depression", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:3FZwYiZufmIgKyfqgMnpPg", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "(C) 2024 @ SIAMES Records", "type": "C" }, + { "text": "(P) 2024 @ SIAMES Records", "type": "P" } + ], + "external_ids": { "upc": "198588562345" }, + "genres": [], + "label": "SIAM\u00c9S", + "popularity": 37 + } + }, + { + "added_at": "2024-07-12T11:46:14Z", + "album": { + "album_type": "album", + "total_tracks": 17, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0m14dyyJemQy44KVhsKnaj" + }, + "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj", + "id": "0m14dyyJemQy44KVhsKnaj", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032", + "height": 64, + "width": 64 + } + ], + "name": "PMO: An Atriarchy Experience", + "release_date": "2024-07-11", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0m14dyyJemQy44KVhsKnaj", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 17, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" + }, + "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", + "id": "7xplDB5Ftf0oECpcFlKE99", + "name": "Owen CMYK", + "type": "artist", + "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 50572, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG" + }, + "href": "https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG", + "id": "2QVz5Ndv0faqrTNyMbK6HG", + "name": "Sea Shanty", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2QVz5Ndv0faqrTNyMbK6HG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0GONM3s2unLmwUiqNneycA" + }, + "href": "https://api.spotify.com/v1/artists/0GONM3s2unLmwUiqNneycA", + "id": "0GONM3s2unLmwUiqNneycA", + "name": "M17", + "type": "artist", + "uri": "spotify:artist:0GONM3s2unLmwUiqNneycA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" + }, + "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", + "id": "3iRbwOUFx2CWZ4BRQcnP2I", + "name": "Beautiful Panda", + "type": "artist", + "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" + }, + "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", + "id": "6HiHuFsJrutJGZT2GAwG4L", + "name": "itsAZ", + "type": "artist", + "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164383, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA" + }, + "href": "https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA", + "id": "3yoGnoFkQLZa1rPbhycLgA", + "name": "Castle in the Sky", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3yoGnoFkQLZa1rPbhycLgA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 115000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV" + }, + "href": "https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV", + "id": "11CVrcm1dz0jKNHvFlbkOV", + "name": "Boomer Wonderland", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:11CVrcm1dz0jKNHvFlbkOV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" + }, + "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", + "id": "2RaLCgWRwHSBJySoMVZi1U", + "name": "JPecs", + "type": "artist", + "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" + }, + "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", + "id": "49X16juWaNmVsSkftsPI9u", + "name": "javid74", + "type": "artist", + "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 114622, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS" + }, + "href": "https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS", + "id": "6nYAajfD6iXhHLTjXFV3NS", + "name": "3rd Place", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6nYAajfD6iXhHLTjXFV3NS", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6CPBjEKtaoONitOOYJEPu9" + }, + "href": "https://api.spotify.com/v1/artists/6CPBjEKtaoONitOOYJEPu9", + "id": "6CPBjEKtaoONitOOYJEPu9", + "name": "the_bardificer", + "type": "artist", + "uri": "spotify:artist:6CPBjEKtaoONitOOYJEPu9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1dxMexw9HIXRJX53LQZUOz" + }, + "href": "https://api.spotify.com/v1/artists/1dxMexw9HIXRJX53LQZUOz", + "id": "1dxMexw9HIXRJX53LQZUOz", + "name": "Ash Artz", + "type": "artist", + "uri": "spotify:artist:1dxMexw9HIXRJX53LQZUOz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/64zUEoPQHdOq7bYmLwZRSi" + }, + "href": "https://api.spotify.com/v1/artists/64zUEoPQHdOq7bYmLwZRSi", + "id": "64zUEoPQHdOq7bYmLwZRSi", + "name": "Luna", + "type": "artist", + "uri": "spotify:artist:64zUEoPQHdOq7bYmLwZRSi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" + }, + "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", + "id": "4PJ8Omgo9ObI7mb9COCfm8", + "name": "Hatmiss", + "type": "artist", + "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 234500, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV" + }, + "href": "https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV", + "id": "5ZnK0HCoBv6fgdc2PMeAsV", + "name": "No Time Left To Lose", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:5ZnK0HCoBv6fgdc2PMeAsV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" + }, + "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", + "id": "3iRbwOUFx2CWZ4BRQcnP2I", + "name": "Beautiful Panda", + "type": "artist", + "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" + }, + "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", + "id": "4PJ8Omgo9ObI7mb9COCfm8", + "name": "Hatmiss", + "type": "artist", + "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 36750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9" + }, + "href": "https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9", + "id": "2hyVHjnnm3KUO2a2Qg1eM9", + "name": "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2hyVHjnnm3KUO2a2Qg1eM9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" + }, + "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", + "id": "51Jlz1EF1XPFtEYuk642cM", + "name": "gRRiever", + "type": "artist", + "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" + }, + "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", + "id": "2STTnw4FJjSXRH6bItWl0F", + "name": "StoneEars", + "type": "artist", + "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 170854, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9" + }, + "href": "https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9", + "id": "593aq2LX6veq1Ft0kHvrS9", + "name": "God Gamer", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:593aq2LX6veq1Ft0kHvrS9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RmWDtsKktRw2v9FP1SFni" + }, + "href": "https://api.spotify.com/v1/artists/6RmWDtsKktRw2v9FP1SFni", + "id": "6RmWDtsKktRw2v9FP1SFni", + "name": "yubyub", + "type": "artist", + "uri": "spotify:artist:6RmWDtsKktRw2v9FP1SFni" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/190GSW42zDnQc16U5XgULT" + }, + "href": "https://api.spotify.com/v1/artists/190GSW42zDnQc16U5XgULT", + "id": "190GSW42zDnQc16U5XgULT", + "name": "Jo the Forggie", + "type": "artist", + "uri": "spotify:artist:190GSW42zDnQc16U5XgULT" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1uLBqEv467ZgclJBIdWlCc" + }, + "href": "https://api.spotify.com/v1/artists/1uLBqEv467ZgclJBIdWlCc", + "id": "1uLBqEv467ZgclJBIdWlCc", + "name": "fluentsynth", + "type": "artist", + "uri": "spotify:artist:1uLBqEv467ZgclJBIdWlCc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 80000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5" + }, + "href": "https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5", + "id": "5WWShf7Lo5EBnIBGdbmKN5", + "name": "Purple Streamer Battle", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5WWShf7Lo5EBnIBGdbmKN5", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2roVEpafIk02cSCDrbhHAe" + }, + "href": "https://api.spotify.com/v1/artists/2roVEpafIk02cSCDrbhHAe", + "id": "2roVEpafIk02cSCDrbhHAe", + "name": "RhysO", + "type": "artist", + "uri": "spotify:artist:2roVEpafIk02cSCDrbhHAe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 99158, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR" + }, + "href": "https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR", + "id": "09WyoZ2RaNeAEcfZHtsXPR", + "name": "Lost at Sea", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:09WyoZ2RaNeAEcfZHtsXPR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" + }, + "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", + "id": "79Mo8yyzVDo0uyeAKimv7W", + "name": "RDCwest", + "type": "artist", + "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 83750, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs" + }, + "href": "https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs", + "id": "4cWh7YO5U0JBCcAU9JUhSs", + "name": "364 Interlude", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4cWh7YO5U0JBCcAU9JUhSs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" + }, + "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", + "id": "78F4dqW3GJqRzy3EDzHfba", + "name": "Alphons", + "type": "artist", + "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2qV9yNZiOt6UlbIYJgM7k2" + }, + "href": "https://api.spotify.com/v1/artists/2qV9yNZiOt6UlbIYJgM7k2", + "id": "2qV9yNZiOt6UlbIYJgM7k2", + "name": "MyDog", + "type": "artist", + "uri": "spotify:artist:2qV9yNZiOt6UlbIYJgM7k2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" + }, + "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", + "id": "2jTOWoCU8yUCNkHN1hzSNm", + "name": "badger", + "type": "artist", + "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141500, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg" + }, + "href": "https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg", + "id": "5Hypfslm17ws3wZhJCpMYg", + "name": "MyDog Has Depression", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:5Hypfslm17ws3wZhJCpMYg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3SCpPBu1VKguPSQRuVYrcA" + }, + "href": "https://api.spotify.com/v1/artists/3SCpPBu1VKguPSQRuVYrcA", + "id": "3SCpPBu1VKguPSQRuVYrcA", + "name": "17artisan", + "type": "artist", + "uri": "spotify:artist:3SCpPBu1VKguPSQRuVYrcA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4yuadBe0F2IQMiuUsxywXw" + }, + "href": "https://api.spotify.com/v1/artists/4yuadBe0F2IQMiuUsxywXw", + "id": "4yuadBe0F2IQMiuUsxywXw", + "name": "REESE", + "type": "artist", + "uri": "spotify:artist:4yuadBe0F2IQMiuUsxywXw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 152000, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y" + }, + "href": "https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y", + "id": "5xG9nNCZ3Wc2I8dpmrha8y", + "name": "All I Want is Paper Mario", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:5xG9nNCZ3Wc2I8dpmrha8y", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" + }, + "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", + "id": "2STTnw4FJjSXRH6bItWl0F", + "name": "StoneEars", + "type": "artist", + "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" + }, + "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", + "id": "51Jlz1EF1XPFtEYuk642cM", + "name": "gRRiever", + "type": "artist", + "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QqFHkMOC59TL7W5hfOsiU" + }, + "href": "https://api.spotify.com/v1/artists/6QqFHkMOC59TL7W5hfOsiU", + "id": "6QqFHkMOC59TL7W5hfOsiU", + "name": "SofiUH", + "type": "artist", + "uri": "spotify:artist:6QqFHkMOC59TL7W5hfOsiU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 146000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv" + }, + "href": "https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv", + "id": "16VDwDiT4YNIVSyJ7RMXsv", + "name": "Confetti Line", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:16VDwDiT4YNIVSyJ7RMXsv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6qLmutNfMLFolEujWZGO6p" + }, + "href": "https://api.spotify.com/v1/artists/6qLmutNfMLFolEujWZGO6p", + "id": "6qLmutNfMLFolEujWZGO6p", + "name": "UneasyFlame", + "type": "artist", + "uri": "spotify:artist:6qLmutNfMLFolEujWZGO6p" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 141000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v" + }, + "href": "https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v", + "id": "6RG0t1o3B6nuzc5GegyY2v", + "name": "The Wedding Invite", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:6RG0t1o3B6nuzc5GegyY2v", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" + }, + "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", + "id": "78F4dqW3GJqRzy3EDzHfba", + "name": "Alphons", + "type": "artist", + "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178285, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6" + }, + "href": "https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6", + "id": "15g1itLc4kYRXjHMY8aao6", + "name": "Only a Legend", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:15g1itLc4kYRXjHMY8aao6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" + }, + "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", + "id": "7xplDB5Ftf0oECpcFlKE99", + "name": "Owen CMYK", + "type": "artist", + "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" + }, + "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", + "id": "2jTOWoCU8yUCNkHN1hzSNm", + "name": "badger", + "type": "artist", + "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60Y38Hh6PlzEjjpJno5P6p" + }, + "href": "https://api.spotify.com/v1/artists/60Y38Hh6PlzEjjpJno5P6p", + "id": "60Y38Hh6PlzEjjpJno5P6p", + "name": "dropspindle", + "type": "artist", + "uri": "spotify:artist:60Y38Hh6PlzEjjpJno5P6p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6TgYktqPP6KLGoU6KxYq0s" + }, + "href": "https://api.spotify.com/v1/artists/6TgYktqPP6KLGoU6KxYq0s", + "id": "6TgYktqPP6KLGoU6KxYq0s", + "name": "FiN", + "type": "artist", + "uri": "spotify:artist:6TgYktqPP6KLGoU6KxYq0s" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 93666, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe" + }, + "href": "https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe", + "id": "080DOCEfEIqct0qvHwKZRe", + "name": "Paradise Found", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:080DOCEfEIqct0qvHwKZRe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" + }, + "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", + "id": "5B7d27dL276bbzzQ360IYN", + "name": "the atriarchy", + "type": "artist", + "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0g4gQ5TcCB3HJH6ktWjKYC" + }, + "href": "https://api.spotify.com/v1/artists/0g4gQ5TcCB3HJH6ktWjKYC", + "id": "0g4gQ5TcCB3HJH6ktWjKYC", + "name": "ask the storyteller", + "type": "artist", + "uri": "spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" + }, + "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", + "id": "2RaLCgWRwHSBJySoMVZi1U", + "name": "JPecs", + "type": "artist", + "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" + }, + "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", + "id": "79Mo8yyzVDo0uyeAKimv7W", + "name": "RDCwest", + "type": "artist", + "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" + }, + "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", + "id": "49X16juWaNmVsSkftsPI9u", + "name": "javid74", + "type": "artist", + "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3ehLuD3NDXoO0lmL8cZxSw" + }, + "href": "https://api.spotify.com/v1/artists/3ehLuD3NDXoO0lmL8cZxSw", + "id": "3ehLuD3NDXoO0lmL8cZxSw", + "name": "MikesHardest", + "type": "artist", + "uri": "spotify:artist:3ehLuD3NDXoO0lmL8cZxSw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4QsvqI4nb9TpdwqOrbZcHQ" + }, + "href": "https://api.spotify.com/v1/artists/4QsvqI4nb9TpdwqOrbZcHQ", + "id": "4QsvqI4nb9TpdwqOrbZcHQ", + "name": "Sio", + "type": "artist", + "uri": "spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" + }, + "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", + "id": "26z8iLfADGuSugsu63BW2s", + "name": "Confuzzled", + "type": "artist", + "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" + }, + "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", + "id": "3lrmsbi43nA5svDePADyHl", + "name": "froggman", + "type": "artist", + "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" + }, + "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", + "id": "6HiHuFsJrutJGZT2GAwG4L", + "name": "itsAZ", + "type": "artist", + "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" + }, + "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", + "id": "4qsHDbno8XG3abDsyq8ztN", + "name": "mango", + "type": "artist", + "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 703910, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55" + }, + "href": "https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55", + "id": "3gTWK8IiRrXjbPGgz6KD55", + "name": "Revelations 5:22", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3gTWK8IiRrXjbPGgz6KD55", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2024 Atriarchy LLC", "type": "C" }, + { "text": "2024 Atriarchy LLC", "type": "P" } + ], + "external_ids": { "upc": "198669450738" }, + "genres": [], + "label": "Atriarchy LLC", + "popularity": 20 + } + }, + { + "added_at": "2024-06-06T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0GpklLqjWNrhropGa4XRRD" + }, + "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD", + "id": "0GpklLqjWNrhropGa4XRRD", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce", + "height": 64, + "width": 64 + } + ], + "name": "Radiosoul", + "release_date": "2024-06-07", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0GpklLqjWNrhropGa4XRRD", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 315327, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5YualyOibWHyram0jfyBsV" + }, + "href": "https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV", + "id": "5YualyOibWHyram0jfyBsV", + "name": "Radiosoul", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5YualyOibWHyram0jfyBsV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202033, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm" + }, + "href": "https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm", + "id": "1eVzbEkjDGzxqeFNNNrgBm", + "name": "Eyes Wide Shut", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1eVzbEkjDGzxqeFNNNrgBm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206484, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO" + }, + "href": "https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO", + "id": "6Ttp9JrzcpNYG0upW6NKRO", + "name": "This Is Just The Beginning", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6Ttp9JrzcpNYG0upW6NKRO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212302, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL" + }, + "href": "https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL", + "id": "2M7SyIuOuPozGJY1c6xDXL", + "name": "Vultures", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2M7SyIuOuPozGJY1c6xDXL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186991, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA" + }, + "href": "https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA", + "id": "6n1VD2aPzgGbZWMvRdgSPA", + "name": "Drag", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6n1VD2aPzgGbZWMvRdgSPA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L" + }, + "href": "https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L", + "id": "0eFTxYwpRTxyefxYlBJq6L", + "name": "Hello Lonely", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0eFTxYwpRTxyefxYlBJq6L", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" }, - "copyrights": [ - { - "text": "(C) 2026 Napalm Records Handels GmbH", - "type": "C" - }, - { - "text": "(P) 2026 Napalm Records Handels GmbH", - "type": "P" - } - ], - "external_ids": { "upc": "810185197408" }, - "genres": [], - "label": "Napalm Records Handels GmbH", - "popularity": 44 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3yDIp0kaq9EFKe07X1X2rz" + }, + "href": "https://api.spotify.com/v1/artists/3yDIp0kaq9EFKe07X1X2rz", + "id": "3yDIp0kaq9EFKe07X1X2rz", + "name": "Nile Rodgers", + "type": "artist", + "uri": "spotify:artist:3yDIp0kaq9EFKe07X1X2rz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 160932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT" + }, + "href": "https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT", + "id": "5I0qy4t38jwAPKsHS2WPnT", + "name": "Just A Dance", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:5I0qy4t38jwAPKsHS2WPnT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 204074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S" + }, + "href": "https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S", + "id": "6zJPeOzroQHmIAbhQETa3S", + "name": "Submarine", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6zJPeOzroQHmIAbhQETa3S", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207430, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX" + }, + "href": "https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX", + "id": "19ZhBuPyYTzNChzoQslVTX", + "name": "Beckham", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:19ZhBuPyYTzNChzoQslVTX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 157458, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u" + }, + "href": "https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u", + "id": "4wTOzQ92UzEBli1ubpcw3u", + "name": "Switch", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4wTOzQ92UzEBli1ubpcw3u", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "name": "Alfie Templeman", + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 263354, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t" + }, + "href": "https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t", + "id": "22sc5jdkR8FTgbGWTdOy7t", + "name": "Run To Tomorrow", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:22sc5jdkR8FTgbGWTdOy7t", + "is_local": false } + ] }, - { - "added_at": "2024-09-19T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/57MSBg5pBQZH5bfLVDmeuP" + "copyrights": [ + { + "text": "(C) 2024 Chess Club Records under exclusive license to AWAL Recordings", + "type": "C" + }, + { + "text": "(P) 2024 Chess Club Records under exclusive license to AWAL Recordings", + "type": "P" + } + ], + "external_ids": { "upc": "198391074080" }, + "genres": [], + "label": "Chess Club Records", + "popularity": 30 + } + }, + { + "added_at": "2024-05-30T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 27, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1Sr34Sc0yqB4SlxanOrit0" + }, + "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0", + "id": "1Sr34Sc0yqB4SlxanOrit0", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3", + "height": 64, + "width": 64 + } + ], + "name": "The Last Goodbye Tour Live", + "release_date": "2024-05-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1Sr34Sc0yqB4SlxanOrit0", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 27, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 186400, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2" + }, + "href": "https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2", + "id": "24ainScgxd2UDayPsLzzm2", + "name": "This Version of You (Live)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:24ainScgxd2UDayPsLzzm2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189985, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym" + }, + "href": "https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym", + "id": "4gKFQ6sGKfZr44NXw6wjym", + "name": "Behind the Sun (Live)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:4gKFQ6sGKfZr44NXw6wjym", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201954, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt" + }, + "href": "https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt", + "id": "2W0IElS3uccgQUXKAwVyAt", + "name": "All We Need (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2W0IElS3uccgQUXKAwVyAt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA" + }, + "href": "https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA", + "id": "4JK3JhyIl1icooy0uq37DA", + "name": "Love Letter (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4JK3JhyIl1icooy0uq37DA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176459, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK" + }, + "href": "https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK", + "id": "1ZVmGzftncwotIcJzkiTQK", + "name": "Say My Name x Late Night (Live)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1ZVmGzftncwotIcJzkiTQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 151384, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs" + }, + "href": "https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs", + "id": "2mOOT12V4TMB9O6p75Hehs", + "name": "In the Rain (Live)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2mOOT12V4TMB9O6p75Hehs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4iVhFmG8YCCEHANGeUUS9q" + }, + "href": "https://api.spotify.com/v1/artists/4iVhFmG8YCCEHANGeUUS9q", + "id": "4iVhFmG8YCCEHANGeUUS9q", + "name": "Pretty Lights", + "type": "artist", + "uri": "spotify:artist:4iVhFmG8YCCEHANGeUUS9q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 96053, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv" + }, + "href": "https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv", + "id": "3mqmlOkyeU3hP1rERf6tjv", + "name": "One Day They'll Know (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:3mqmlOkyeU3hP1rERf6tjv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6BkSTbIWZrLZZK0sa2GehR" + }, + "href": "https://api.spotify.com/v1/artists/6BkSTbIWZrLZZK0sa2GehR", + "id": "6BkSTbIWZrLZZK0sa2GehR", + "name": "Charlie Houston", + "type": "artist", + "uri": "spotify:artist:6BkSTbIWZrLZZK0sa2GehR" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261978, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo" + }, + "href": "https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo", + "id": "2A0cPJCmtGITjsKAIhzEfo", + "name": "Wide Awake (Live)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2A0cPJCmtGITjsKAIhzEfo", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214092, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX" + }, + "href": "https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX", + "id": "1a73OJypd6sgDkAwA75NDX", + "name": "Bloom (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1a73OJypd6sgDkAwA75NDX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 268167, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL" + }, + "href": "https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL", + "id": "4tL49ueZxBPJD5Z9pmNCAL", + "name": "Equal x Boy (Live)", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4tL49ueZxBPJD5Z9pmNCAL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 116759, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW" + }, + "href": "https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW", + "id": "1ZJiqlxrcILMONjWo9wwaW", + "name": "All My Life (Live)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1ZJiqlxrcILMONjWo9wwaW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NP4jJcW3R6qO6rbtnH0wn" + }, + "href": "https://api.spotify.com/v1/artists/3NP4jJcW3R6qO6rbtnH0wn", + "id": "3NP4jJcW3R6qO6rbtnH0wn", + "name": "MARO", + "type": "artist", + "uri": "spotify:artist:3NP4jJcW3R6qO6rbtnH0wn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161641, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE" + }, + "href": "https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE", + "id": "59aWxauGOAbQycO8GNK7LE", + "name": "Better Now (Live)", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:59aWxauGOAbQycO8GNK7LE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4qOzMSukiZoiSjPQw8Zs7s" + }, + "href": "https://api.spotify.com/v1/artists/4qOzMSukiZoiSjPQw8Zs7s", + "id": "4qOzMSukiZoiSjPQw8Zs7s", + "name": "Mansionair", + "type": "artist", + "uri": "spotify:artist:4qOzMSukiZoiSjPQw8Zs7s" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181843, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6" + }, + "href": "https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6", + "id": "7q7B0VRgFKegcxO2Edzbi6", + "name": "Line Of Sight (Live)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:7q7B0VRgFKegcxO2Edzbi6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b5YOgXIliAozdo49vUCJQ" + }, + "href": "https://api.spotify.com/v1/artists/6b5YOgXIliAozdo49vUCJQ", + "id": "6b5YOgXIliAozdo49vUCJQ", + "name": "Izzy Bizu", + "type": "artist", + "uri": "spotify:artist:6b5YOgXIliAozdo49vUCJQ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 243413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV" + }, + "href": "https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV", + "id": "0PD6WTOfk9kBi6THqAaBKV", + "name": "Forgive Me (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0PD6WTOfk9kBi6THqAaBKV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 105046, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an" + }, + "href": "https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an", + "id": "5r06HL1g9lqxc5CAxBK7an", + "name": "La Ciudad (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:5r06HL1g9lqxc5CAxBK7an", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" }, - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP", - "id": "57MSBg5pBQZH5bfLVDmeuP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27314b5583615b195556a3882ac", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0214b5583615b195556a3882ac", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485114b5583615b195556a3882ac", - "height": 64, - "width": 64 - } - ], - "name": "In Waves", - "release_date": "2024-09-20", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:57MSBg5pBQZH5bfLVDmeuP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/57MSBg5pBQZH5bfLVDmeuP/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 135835, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7uLBdV19ad7kAjU2oB1l6p" - }, - "href": "https://api.spotify.com/v1/tracks/7uLBdV19ad7kAjU2oB1l6p", - "id": "7uLBdV19ad7kAjU2oB1l6p", - "name": "Wanna", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7uLBdV19ad7kAjU2oB1l6p", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 240580, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3pjX4hC8adabkXGu3X9GTC" - }, - "href": "https://api.spotify.com/v1/tracks/3pjX4hC8adabkXGu3X9GTC", - "id": "3pjX4hC8adabkXGu3X9GTC", - "name": "Treat Each Other Right", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3pjX4hC8adabkXGu3X9GTC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4KDu9uqzqseVCpQXMa8Pvm" - }, - "href": "https://api.spotify.com/v1/artists/4KDu9uqzqseVCpQXMa8Pvm", - "id": "4KDu9uqzqseVCpQXMa8Pvm", - "name": "Oliver Sim", - "type": "artist", - "uri": "spotify:artist:4KDu9uqzqseVCpQXMa8Pvm" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iOvXCl6edW5Um0fXEBRXy" - }, - "href": "https://api.spotify.com/v1/artists/3iOvXCl6edW5Um0fXEBRXy", - "id": "3iOvXCl6edW5Um0fXEBRXy", - "name": "The xx", - "type": "artist", - "uri": "spotify:artist:3iOvXCl6edW5Um0fXEBRXy" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208334, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gBniy3TwR9o2JDBx48TlD" - }, - "href": "https://api.spotify.com/v1/tracks/4gBniy3TwR9o2JDBx48TlD", - "id": "4gBniy3TwR9o2JDBx48TlD", - "name": "Waited All Night", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4gBniy3TwR9o2JDBx48TlD", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0XfQBWgzisaS9ltDV9bXAS" - }, - "href": "https://api.spotify.com/v1/artists/0XfQBWgzisaS9ltDV9bXAS", - "id": "0XfQBWgzisaS9ltDV9bXAS", - "name": "Honey Dijon", - "type": "artist", - "uri": "spotify:artist:0XfQBWgzisaS9ltDV9bXAS" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222315, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/79gWc6dZ1dXH7rC67DTunz" - }, - "href": "https://api.spotify.com/v1/tracks/79gWc6dZ1dXH7rC67DTunz", - "id": "79gWc6dZ1dXH7rC67DTunz", - "name": "Baddy On The Floor", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:79gWc6dZ1dXH7rC67DTunz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fEfMW5bypHZ0A8eLnhwj5" - }, - "href": "https://api.spotify.com/v1/artists/0fEfMW5bypHZ0A8eLnhwj5", - "id": "0fEfMW5bypHZ0A8eLnhwj5", - "name": "Kelsey Lu", - "type": "artist", - "uri": "spotify:artist:0fEfMW5bypHZ0A8eLnhwj5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0FNfiTQCR5o3ounOlWzm1d" - }, - "href": "https://api.spotify.com/v1/artists/0FNfiTQCR5o3ounOlWzm1d", - "id": "0FNfiTQCR5o3ounOlWzm1d", - "name": "John Glacier", - "type": "artist", - "uri": "spotify:artist:0FNfiTQCR5o3ounOlWzm1d" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1R84VlXnFFULOsWWV8IrCQ" - }, - "href": "https://api.spotify.com/v1/artists/1R84VlXnFFULOsWWV8IrCQ", - "id": "1R84VlXnFFULOsWWV8IrCQ", - "name": "Panda Bear", - "type": "artist", - "uri": "spotify:artist:1R84VlXnFFULOsWWV8IrCQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212339, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1gRMKwvMvp6LcQVMpMXQg2" - }, - "href": "https://api.spotify.com/v1/tracks/1gRMKwvMvp6LcQVMpMXQg2", - "id": "1gRMKwvMvp6LcQVMpMXQg2", - "name": "Dafodil", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1gRMKwvMvp6LcQVMpMXQg2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205638, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/27D9YN3uHPD3PTXvzNtbto" - }, - "href": "https://api.spotify.com/v1/tracks/27D9YN3uHPD3PTXvzNtbto", - "id": "27D9YN3uHPD3PTXvzNtbto", - "name": "Still Summer", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:27D9YN3uHPD3PTXvzNtbto", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UE7nl9mha6s8z0wFQFIZ2" - }, - "href": "https://api.spotify.com/v1/artists/6UE7nl9mha6s8z0wFQFIZ2", - "id": "6UE7nl9mha6s8z0wFQFIZ2", - "name": "Robyn", - "type": "artist", - "uri": "spotify:artist:6UE7nl9mha6s8z0wFQFIZ2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202648, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0pMj03SiaZ9bkFlXQWNhtZ" - }, - "href": "https://api.spotify.com/v1/tracks/0pMj03SiaZ9bkFlXQWNhtZ", - "id": "0pMj03SiaZ9bkFlXQWNhtZ", - "name": "Life", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:0pMj03SiaZ9bkFlXQWNhtZ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222365, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7gb0pekqHQYTGo6NWLBvT5" - }, - "href": "https://api.spotify.com/v1/tracks/7gb0pekqHQYTGo6NWLBvT5", - "id": "7gb0pekqHQYTGo6NWLBvT5", - "name": "The Feeling I Get From You", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:7gb0pekqHQYTGo6NWLBvT5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 376918, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6pOzbdJKEr4hvXkX7VkfY6" - }, - "href": "https://api.spotify.com/v1/tracks/6pOzbdJKEr4hvXkX7VkfY6", - "id": "6pOzbdJKEr4hvXkX7VkfY6", - "name": "Breather", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:6pOzbdJKEr4hvXkX7VkfY6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED" - }, - "href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED", - "id": "3C8RpaI3Go0yFF9whvKoED", - "name": "The Avalanches", - "type": "artist", - "uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 254142, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3cfgisz6DhZmooQk08P4Eu" - }, - "href": "https://api.spotify.com/v1/tracks/3cfgisz6DhZmooQk08P4Eu", - "id": "3cfgisz6DhZmooQk08P4Eu", - "name": "All You Children", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:3cfgisz6DhZmooQk08P4Eu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 71680, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wpcJ6TCrKpH6KdBmrp9yN" - }, - "href": "https://api.spotify.com/v1/tracks/1wpcJ6TCrKpH6KdBmrp9yN", - "id": "1wpcJ6TCrKpH6KdBmrp9yN", - "name": "Every Single Weekend - Interlude", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:1wpcJ6TCrKpH6KdBmrp9yN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "name": "Jamie xx", - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2Q4FR4Ss0mh6EvbiQBHEOU" - }, - "href": "https://api.spotify.com/v1/artists/2Q4FR4Ss0mh6EvbiQBHEOU", - "id": "2Q4FR4Ss0mh6EvbiQBHEOU", - "name": "Oona Doherty", - "type": "artist", - "uri": "spotify:artist:2Q4FR4Ss0mh6EvbiQBHEOU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 337414, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/08Jhu8OZ6gCIGWQn6vP3uI" - }, - "href": "https://api.spotify.com/v1/tracks/08Jhu8OZ6gCIGWQn6vP3uI", - "id": "08Jhu8OZ6gCIGWQn6vP3uI", - "name": "Falling Together", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:08Jhu8OZ6gCIGWQn6vP3uI", - "is_local": false - } - ] + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MPHBxznH1fj59jbOWY38u" + }, + "href": "https://api.spotify.com/v1/artists/2MPHBxznH1fj59jbOWY38u", + "id": "2MPHBxznH1fj59jbOWY38u", + "name": "Sudan Archives", + "type": "artist", + "uri": "spotify:artist:2MPHBxznH1fj59jbOWY38u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211440, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt" + }, + "href": "https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt", + "id": "7rwME0L7zpCwQgHcIwzbvt", + "name": "Selfish Soul (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:7rwME0L7zpCwQgHcIwzbvt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" }, - "copyrights": [ - { "text": "2024 Young", "type": "C" }, - { "text": "2024 Young", "type": "P" } - ], - "external_ids": { "upc": "889030035653" }, - "genres": [], - "label": "Young", - "popularity": 53 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" + }, + "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", + "id": "60yfafz0P3gqaUaOUIddae", + "name": "BRONSON", + "type": "artist", + "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194464, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA" + }, + "href": "https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA", + "id": "4UU6fudp68mcPuUFJf1sNA", + "name": "TENSE (Live)", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:4UU6fudp68mcPuUFJf1sNA", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" + }, + "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", + "id": "60yfafz0P3gqaUaOUIddae", + "name": "BRONSON", + "type": "artist", + "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 142423, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs" + }, + "href": "https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs", + "id": "41z8eydTUKN0IL0QZtRcIs", + "name": "KEEP MOVING (Live)", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:41z8eydTUKN0IL0QZtRcIs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE" + }, + "href": "https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE", + "id": "2hT93dtTBxGOVYQEa3u2pE", + "name": "Sun Models (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 19, + "type": "track", + "uri": "spotify:track:2hT93dtTBxGOVYQEa3u2pE", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 135054, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk" + }, + "href": "https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk", + "id": "69YWB2KVAMtIcjx01y2nAk", + "name": "Hopeful (Live)", + "preview_url": null, + "track_number": 20, + "type": "track", + "uri": "spotify:track:69YWB2KVAMtIcjx01y2nAk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 275331, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1CxylMSGYankQropBSWDP3" + }, + "href": "https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3", + "id": "1CxylMSGYankQropBSWDP3", + "name": "Across The Room x Falls (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 21, + "type": "track", + "uri": "spotify:track:1CxylMSGYankQropBSWDP3", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216988, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR" + }, + "href": "https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR", + "id": "6aocvw4IvUE1zmlAavNkcR", + "name": "Loyal (Live)", + "preview_url": null, + "track_number": 22, + "type": "track", + "uri": "spotify:track:6aocvw4IvUE1zmlAavNkcR", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 163770, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF" + }, + "href": "https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF", + "id": "5XWGvqsLKBAj0y47KpHmlF", + "name": "Don't Stop (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 23, + "type": "track", + "uri": "spotify:track:5XWGvqsLKBAj0y47KpHmlF", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 45000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec" + }, + "href": "https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec", + "id": "2MA8Ep98eY5wRF28zCE5ec", + "name": "Just A Memory (Interlude) (Live)", + "preview_url": null, + "track_number": 24, + "type": "track", + "uri": "spotify:track:2MA8Ep98eY5wRF28zCE5ec", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229816, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY" + }, + "href": "https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY", + "id": "6v5Gc28XYQu2cDCmahhlBY", + "name": "Higher Ground (Live)", + "preview_url": null, + "track_number": 25, + "type": "track", + "uri": "spotify:track:6v5Gc28XYQu2cDCmahhlBY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 383750, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8" + }, + "href": "https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8", + "id": "6nwtUZBvCUzWp8HhhGrDu8", + "name": "A Moment Apart (Live) (ODESZA VIP Remix)", + "preview_url": null, + "track_number": 26, + "type": "track", + "uri": "spotify:track:6nwtUZBvCUzWp8HhhGrDu8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 419555, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ" + }, + "href": "https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ", + "id": "6y6vQOD1k3fBySGpjPmIkJ", + "name": "The Last Goodbye (Live)", + "preview_url": null, + "track_number": 27, + "type": "track", + "uri": "spotify:track:6y6vQOD1k3fBySGpjPmIkJ", + "is_local": false } + ] }, - { - "added_at": "2025-10-16T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "copyrights": [ + { + "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", + "type": "C" + }, + { + "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", + "type": "P" + } + ], + "external_ids": { "upc": "5054429193510" }, + "genres": [], + "label": "Ninja Tune", + "popularity": 45 + } + }, + { + "added_at": "2024-05-30T22:00:00Z", + "album": { + "album_type": "album", + "total_tracks": 15, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6YpuiWNRGcMEumvRbEuOvP" + }, + "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP", + "id": "6YpuiWNRGcMEumvRbEuOvP", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb", + "height": 64, + "width": 64 + } + ], + "name": "Believe Me Now?", + "release_date": "2024-05-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6YpuiWNRGcMEumvRbEuOvP", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 15, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3K9muOlJVKLgH4SIwwZiDe" + }, + "href": "https://api.spotify.com/v1/artists/3K9muOlJVKLgH4SIwwZiDe", + "id": "3K9muOlJVKLgH4SIwwZiDe", + "name": "Self Esteem", + "type": "artist", + "uri": "spotify:artist:3K9muOlJVKLgH4SIwwZiDe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 231684, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" + }, + "href": "https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4", + "id": "0djt8pab0Si1xC7B2ddfF4", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" + "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" }, - "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", - "id": "1jjx7U3tayhJTytJVBj0WY", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", - "height": 64, - "width": 64 - } - ], - "name": "Legends", - "release_date": "2025-10-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 294000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0MxqiUhIbMwIEOYTgdNbxb" - }, - "href": "https://api.spotify.com/v1/tracks/0MxqiUhIbMwIEOYTgdNbxb", - "id": "0MxqiUhIbMwIEOYTgdNbxb", - "name": "Templars", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0MxqiUhIbMwIEOYTgdNbxb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 223000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/275EXSVi2oyj4S5SPMo9qx" - }, - "href": "https://api.spotify.com/v1/tracks/275EXSVi2oyj4S5SPMo9qx", - "id": "275EXSVi2oyj4S5SPMo9qx", - "name": "Hordes of Khan", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:275EXSVi2oyj4S5SPMo9qx", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 246000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/34EZIGTN4CqPd2CqAfEIzz" - }, - "href": "https://api.spotify.com/v1/tracks/34EZIGTN4CqPd2CqAfEIzz", - "id": "34EZIGTN4CqPd2CqAfEIzz", - "name": "A Tiger Among Dragons", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:34EZIGTN4CqPd2CqAfEIzz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 209000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6WyfybAgLz1EceoumvVSun" - }, - "href": "https://api.spotify.com/v1/tracks/6WyfybAgLz1EceoumvVSun", - "id": "6WyfybAgLz1EceoumvVSun", - "name": "Crossing the Rubicon", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6WyfybAgLz1EceoumvVSun", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 255973, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" - }, - "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", - "id": "3CZDkpmq245kzvCe44P2hM", - "name": "I, Emperor", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1t1g8mx2GQLX2UUk5azWAu" - }, - "href": "https://api.spotify.com/v1/tracks/1t1g8mx2GQLX2UUk5azWAu", - "id": "1t1g8mx2GQLX2UUk5azWAu", - "name": "Maid of Steel", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:1t1g8mx2GQLX2UUk5azWAu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 284413, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/170Q9dEUIPy8imNb9p5DYu" - }, - "href": "https://api.spotify.com/v1/tracks/170Q9dEUIPy8imNb9p5DYu", - "id": "170Q9dEUIPy8imNb9p5DYu", - "name": "Impaler", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:170Q9dEUIPy8imNb9p5DYu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 252000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4upSkMUkdiXaSz3sQKy34W" - }, - "href": "https://api.spotify.com/v1/tracks/4upSkMUkdiXaSz3sQKy34W", - "id": "4upSkMUkdiXaSz3sQKy34W", - "name": "Lightning at the Gates", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:4upSkMUkdiXaSz3sQKy34W", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 235000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2mz3lcK6rYGTlNUtkgZm4f" - }, - "href": "https://api.spotify.com/v1/tracks/2mz3lcK6rYGTlNUtkgZm4f", - "id": "2mz3lcK6rYGTlNUtkgZm4f", - "name": "The Duelist", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2mz3lcK6rYGTlNUtkgZm4f", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 339213, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2BCSABdmxlLx0hJwuvcRBj" - }, - "href": "https://api.spotify.com/v1/tracks/2BCSABdmxlLx0hJwuvcRBj", - "id": "2BCSABdmxlLx0hJwuvcRBj", - "name": "The Cycle of Songs", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:2BCSABdmxlLx0hJwuvcRBj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207733, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7xrNu3NxSQ0zAnB8ZSqUgq" - }, - "href": "https://api.spotify.com/v1/tracks/7xrNu3NxSQ0zAnB8ZSqUgq", - "id": "7xrNu3NxSQ0zAnB8ZSqUgq", - "name": "Till Seger", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:7xrNu3NxSQ0zAnB8ZSqUgq", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/6RtoIjw4BISeXqbju6b64E", + "id": "6RtoIjw4BISeXqbju6b64E", + "type": "track", + "uri": "spotify:track:6RtoIjw4BISeXqbju6b64E" + }, + "name": "True Colours (feat. Self Esteem)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0djt8pab0Si1xC7B2ddfF4", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197014, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" + }, + "href": "https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp", + "id": "0rX4zPMMpg8IhCKElJp8lp", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" }, - "copyrights": [ - { - "text": "2025 Sabaton, under exclusive license to Better Noise Music", - "type": "C" - }, - { - "text": "2025 Sabaton, under exclusive license to Better Noise Music", - "type": "P" - } - ], - "external_ids": { "upc": "846070098604" }, - "genres": [], - "label": "Better Noise Music", - "popularity": 62 - } - }, - { - "added_at": "2016-12-19T07:45:50Z", - "album": { - "album_type": "album", - "total_tracks": 10, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/6NysRdnw6s1e8v4WfjcdDg", + "id": "6NysRdnw6s1e8v4WfjcdDg", + "type": "track", + "uri": "spotify:track:6NysRdnw6s1e8v4WfjcdDg" + }, + "name": "Darkest Hour", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0rX4zPMMpg8IhCKElJp8lp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 175628, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" + }, + "href": "https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP", + "id": "3LcXzMeyG4jy8ERxtzHGgP", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6TaTItT907XHlVx7axCGeS" + "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" }, - "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS", - "id": "6TaTItT907XHlVx7axCGeS", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273c880c3fce14935c405c7503e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02c880c3fce14935c405c7503e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851c880c3fce14935c405c7503e", - "height": 64, - "width": 64 - } - ], - "name": "Into the Night World", - "release_date": "2016-12-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6TaTItT907XHlVx7axCGeS", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6TaTItT907XHlVx7axCGeS/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 226855, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" - }, - "href": "https://api.spotify.com/v1/tracks/6z0imbQJzYJyJFbvrHszJk", - "id": "6z0imbQJzYJyJFbvrHszJk", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3R18Ec39yVNJxD410sxlq3" - }, - "href": "https://api.spotify.com/v1/tracks/3R18Ec39yVNJxD410sxlq3", - "id": "3R18Ec39yVNJxD410sxlq3", - "type": "track", - "uri": "spotify:track:3R18Ec39yVNJxD410sxlq3" - }, - "name": "My Dragons Will Decimate", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6z0imbQJzYJyJFbvrHszJk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 201248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" - }, - "href": "https://api.spotify.com/v1/tracks/3x1kSnCnLbF2fWZHsZivO5", - "id": "3x1kSnCnLbF2fWZHsZivO5", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2HlsjQRZmg8RLagqhWunnJ" - }, - "href": "https://api.spotify.com/v1/tracks/2HlsjQRZmg8RLagqhWunnJ", - "id": "2HlsjQRZmg8RLagqhWunnJ", - "type": "track", - "uri": "spotify:track:2HlsjQRZmg8RLagqhWunnJ" - }, - "name": "Into the Night World", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3x1kSnCnLbF2fWZHsZivO5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 256806, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" - }, - "href": "https://api.spotify.com/v1/tracks/5GLkchRnw7kp0yqL7kTti2", - "id": "5GLkchRnw7kp0yqL7kTti2", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2ZIR7ECno9Cv3BQq7fk7D8" - }, - "href": "https://api.spotify.com/v1/tracks/2ZIR7ECno9Cv3BQq7fk7D8", - "id": "2ZIR7ECno9Cv3BQq7fk7D8", - "type": "track", - "uri": "spotify:track:2ZIR7ECno9Cv3BQq7fk7D8" - }, - "name": "Twe27ySeven", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5GLkchRnw7kp0yqL7kTti2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 340771, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" - }, - "href": "https://api.spotify.com/v1/tracks/7LHDs3o9bHYjTJa7srPNUC", - "id": "7LHDs3o9bHYjTJa7srPNUC", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/29fh1gXRvsGuwvsaIk8xRZ" - }, - "href": "https://api.spotify.com/v1/tracks/29fh1gXRvsGuwvsaIk8xRZ", - "id": "29fh1gXRvsGuwvsaIk8xRZ", - "type": "track", - "uri": "spotify:track:29fh1gXRvsGuwvsaIk8xRZ" - }, - "name": "Remember Me", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:7LHDs3o9bHYjTJa7srPNUC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 212191, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" - }, - "href": "https://api.spotify.com/v1/tracks/7LTkzzkE3ddGgyOQI8ukkq", - "id": "7LTkzzkE3ddGgyOQI8ukkq", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4HwdUJ6EDyDK8Z0bj9bLfe" - }, - "href": "https://api.spotify.com/v1/tracks/4HwdUJ6EDyDK8Z0bj9bLfe", - "id": "4HwdUJ6EDyDK8Z0bj9bLfe", - "type": "track", - "uri": "spotify:track:4HwdUJ6EDyDK8Z0bj9bLfe" - }, - "name": "Space Boat", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:7LTkzzkE3ddGgyOQI8ukkq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 212892, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" - }, - "href": "https://api.spotify.com/v1/tracks/2ZTbF8kWYHilM7GnZ4sgKt", - "id": "2ZTbF8kWYHilM7GnZ4sgKt", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1daFtGcKhHSi9Utzl0qgtQ" - }, - "href": "https://api.spotify.com/v1/tracks/1daFtGcKhHSi9Utzl0qgtQ", - "id": "1daFtGcKhHSi9Utzl0qgtQ", - "type": "track", - "uri": "spotify:track:1daFtGcKhHSi9Utzl0qgtQ" - }, - "name": "Stars Had to Die so That You Could Live", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:2ZTbF8kWYHilM7GnZ4sgKt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 290405, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" - }, - "href": "https://api.spotify.com/v1/tracks/33Ms7ZnkfyTXzP38gK9FO3", - "id": "33Ms7ZnkfyTXzP38gK9FO3", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2oi0tis1xxFafCkJoIEVoO" - }, - "href": "https://api.spotify.com/v1/tracks/2oi0tis1xxFafCkJoIEVoO", - "id": "2oi0tis1xxFafCkJoIEVoO", - "type": "track", - "uri": "spotify:track:2oi0tis1xxFafCkJoIEVoO" - }, - "name": "Beast Engine", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:33Ms7ZnkfyTXzP38gK9FO3", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 206633, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" - }, - "href": "https://api.spotify.com/v1/tracks/7xmfFvYqN4QyoFmtLZN6Nc", - "id": "7xmfFvYqN4QyoFmtLZN6Nc", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1bTyfuHjsBfhMjqVfFcRE2" - }, - "href": "https://api.spotify.com/v1/tracks/1bTyfuHjsBfhMjqVfFcRE2", - "id": "1bTyfuHjsBfhMjqVfFcRE2", - "type": "track", - "uri": "spotify:track:1bTyfuHjsBfhMjqVfFcRE2" - }, - "name": "Dream Sequence", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:7xmfFvYqN4QyoFmtLZN6Nc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 158200, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" - }, - "href": "https://api.spotify.com/v1/tracks/1zlbUrfRzrdEt6eSO2DKug", - "id": "1zlbUrfRzrdEt6eSO2DKug", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2QfXd8NrGbO0XeFoqZEwHu" - }, - "href": "https://api.spotify.com/v1/tracks/2QfXd8NrGbO0XeFoqZEwHu", - "id": "2QfXd8NrGbO0XeFoqZEwHu", - "type": "track", - "uri": "spotify:track:2QfXd8NrGbO0XeFoqZEwHu" - }, - "name": "Sid Metal Legacy", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1zlbUrfRzrdEt6eSO2DKug", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 288591, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" - }, - "href": "https://api.spotify.com/v1/tracks/1i8m8MJa894P53JRTlgtom", - "id": "1i8m8MJa894P53JRTlgtom", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2MDtkZJVRWiVXwK4t2ASyJ" - }, - "href": "https://api.spotify.com/v1/tracks/2MDtkZJVRWiVXwK4t2ASyJ", - "id": "2MDtkZJVRWiVXwK4t2ASyJ", - "type": "track", - "uri": "spotify:track:2MDtkZJVRWiVXwK4t2ASyJ" - }, - "name": "The Last March of the Undead", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:1i8m8MJa894P53JRTlgtom", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/0IRZJ6G7fj0bvShvNkSOFR", + "id": "0IRZJ6G7fj0bvShvNkSOFR", + "type": "track", + "uri": "spotify:track:0IRZJ6G7fj0bvShvNkSOFR" + }, + "name": "Outside Of Love", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3LcXzMeyG4jy8ERxtzHGgP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "copyrights": [ - { "text": "2016 Machinae Supremacy", "type": "C" }, - { "text": "2016 Machinae Supremacy", "type": "P" } - ], - "external_ids": { "upc": "3614972534646" }, - "genres": [], - "label": "Hubnester Records", - "popularity": 23 - } - }, - { - "added_at": "2025-12-11T23:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 34, - "available_markets": [], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 189087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" + }, + "href": "https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya", + "id": "3MLsgTj4GNyq6Nost2T5ya", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1Lhv9Fe2KRk0NW3I14HsVY" + "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" }, - "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY", - "id": "1Lhv9Fe2KRk0NW3I14HsVY", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273e4808df0cc63188f7a1dc2d2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02e4808df0cc63188f7a1dc2d2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851e4808df0cc63188f7a1dc2d2", - "height": 64, - "width": 64 - } - ], - "name": "USB", - "release_date": "2025-12-12", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1Lhv9Fe2KRk0NW3I14HsVY", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1Lhv9Fe2KRk0NW3I14HsVY/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 34, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7whpXJXNCFQ1iJeL4f3Fam" - }, - "href": "https://api.spotify.com/v1/artists/7whpXJXNCFQ1iJeL4f3Fam", - "id": "7whpXJXNCFQ1iJeL4f3Fam", - "name": "Wallfacer", - "type": "artist", - "uri": "spotify:artist:7whpXJXNCFQ1iJeL4f3Fam" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 197999, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" - }, - "href": "https://api.spotify.com/v1/tracks/3rTF0gzMSYSmeRkSzTpO7B", - "id": "3rTF0gzMSYSmeRkSzTpO7B", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4CwyZAJWFBxV5E7YS9A8Es" - }, - "href": "https://api.spotify.com/v1/tracks/4CwyZAJWFBxV5E7YS9A8Es", - "id": "4CwyZAJWFBxV5E7YS9A8Es", - "type": "track", - "uri": "spotify:track:4CwyZAJWFBxV5E7YS9A8Es" - }, - "name": "I Luv U", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3rTF0gzMSYSmeRkSzTpO7B", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5FxsPS1K61fHEVB3FNZw6Y" - }, - "href": "https://api.spotify.com/v1/artists/5FxsPS1K61fHEVB3FNZw6Y", - "id": "5FxsPS1K61fHEVB3FNZw6Y", - "name": "Blanco", - "type": "artist", - "uri": "spotify:artist:5FxsPS1K61fHEVB3FNZw6Y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 292071, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" - }, - "href": "https://api.spotify.com/v1/tracks/1jZ08JOmqiwOuZ1Hr54oQm", - "id": "1jZ08JOmqiwOuZ1Hr54oQm", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/39sGDx9LdItlrMKBNl1JkL" - }, - "href": "https://api.spotify.com/v1/tracks/39sGDx9LdItlrMKBNl1JkL", - "id": "39sGDx9LdItlrMKBNl1JkL", - "type": "track", - "uri": "spotify:track:39sGDx9LdItlrMKBNl1JkL" - }, - "name": "solo", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:1jZ08JOmqiwOuZ1Hr54oQm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" - }, - "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", - "id": "6veh5zbFpm31XsPdjBgPER", - "name": "BIA", - "type": "artist", - "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 232727, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" - }, - "href": "https://api.spotify.com/v1/tracks/0dxcj2yS97TlvnNvEHL8cl", - "id": "0dxcj2yS97TlvnNvEHL8cl", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6CI1NtFfoijWJZBkVoUrwN" - }, - "href": "https://api.spotify.com/v1/tracks/6CI1NtFfoijWJZBkVoUrwN", - "id": "6CI1NtFfoijWJZBkVoUrwN", - "type": "track", - "uri": "spotify:track:6CI1NtFfoijWJZBkVoUrwN" - }, - "name": "ICEY..", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0dxcj2yS97TlvnNvEHL8cl", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6veh5zbFpm31XsPdjBgPER" - }, - "href": "https://api.spotify.com/v1/artists/6veh5zbFpm31XsPdjBgPER", - "id": "6veh5zbFpm31XsPdjBgPER", - "name": "BIA", - "type": "artist", - "uri": "spotify:artist:6veh5zbFpm31XsPdjBgPER" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 171764, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" - }, - "href": "https://api.spotify.com/v1/tracks/7wfz2GOmuDxKztNfTfXQvu", - "id": "7wfz2GOmuDxKztNfTfXQvu", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0aXembK4QS3tJl5qv5sIrA" - }, - "href": "https://api.spotify.com/v1/tracks/0aXembK4QS3tJl5qv5sIrA", - "id": "0aXembK4QS3tJl5qv5sIrA", - "type": "track", - "uri": "spotify:track:0aXembK4QS3tJl5qv5sIrA" - }, - "name": "..FEISTY", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:7wfz2GOmuDxKztNfTfXQvu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" - }, - "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", - "id": "1GuqTQbuixFHD6eBkFwVcb", - "name": "Sammy Virji", - "type": "artist", - "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QjsZEGqDMbzKvCdfFN5nz" - }, - "href": "https://api.spotify.com/v1/artists/6QjsZEGqDMbzKvCdfFN5nz", - "id": "6QjsZEGqDMbzKvCdfFN5nz", - "name": "Winny", - "type": "artist", - "uri": "spotify:artist:6QjsZEGqDMbzKvCdfFN5nz" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 264666, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" - }, - "href": "https://api.spotify.com/v1/tracks/3Kr8iTBk81R5Y2p0tzHzp9", - "id": "3Kr8iTBk81R5Y2p0tzHzp9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1UO1PYJ5sltAPNroys7ArW" - }, - "href": "https://api.spotify.com/v1/tracks/1UO1PYJ5sltAPNroys7ArW", - "id": "1UO1PYJ5sltAPNroys7ArW", - "type": "track", - "uri": "spotify:track:1UO1PYJ5sltAPNroys7ArW" - }, - "name": "Winny", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:3Kr8iTBk81R5Y2p0tzHzp9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6I8TDGeUmmLom8auKPzMdX" - }, - "href": "https://api.spotify.com/v1/artists/6I8TDGeUmmLom8auKPzMdX", - "id": "6I8TDGeUmmLom8auKPzMdX", - "name": "CA7RIEL & Paco Amoroso", - "type": "artist", - "uri": "spotify:artist:6I8TDGeUmmLom8auKPzMdX" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 226222, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" - }, - "href": "https://api.spotify.com/v1/tracks/08BPZBE9E82KpRBBsYFfTQ", - "id": "08BPZBE9E82KpRBBsYFfTQ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2IwMlR0X3LlF8P4yRdDdiL" - }, - "href": "https://api.spotify.com/v1/tracks/2IwMlR0X3LlF8P4yRdDdiL", - "id": "2IwMlR0X3LlF8P4yRdDdiL", - "type": "track", - "uri": "spotify:track:2IwMlR0X3LlF8P4yRdDdiL" - }, - "name": "Beto\u2019s Horns - fred remix", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:08BPZBE9E82KpRBBsYFfTQ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GuqTQbuixFHD6eBkFwVcb" - }, - "href": "https://api.spotify.com/v1/artists/1GuqTQbuixFHD6eBkFwVcb", - "id": "1GuqTQbuixFHD6eBkFwVcb", - "name": "Sammy Virji", - "type": "artist", - "uri": "spotify:artist:1GuqTQbuixFHD6eBkFwVcb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0kJOr4qkmePXKFVm9OBK0X" - }, - "href": "https://api.spotify.com/v1/artists/0kJOr4qkmePXKFVm9OBK0X", - "id": "0kJOr4qkmePXKFVm9OBK0X", - "name": "Reggie", - "type": "artist", - "uri": "spotify:artist:0kJOr4qkmePXKFVm9OBK0X" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 193846, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" - }, - "href": "https://api.spotify.com/v1/tracks/2lBhjQtKFfpCtTyln9RX3M", - "id": "2lBhjQtKFfpCtTyln9RX3M", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/26vIeRYFA2Nh56W4jfkjp5" - }, - "href": "https://api.spotify.com/v1/tracks/26vIeRYFA2Nh56W4jfkjp5", - "id": "26vIeRYFA2Nh56W4jfkjp5", - "type": "track", - "uri": "spotify:track:26vIeRYFA2Nh56W4jfkjp5" - }, - "name": "Talk of the Town", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2lBhjQtKFfpCtTyln9RX3M", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" - }, - "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", - "id": "3an9rnsXKPCAMlZgH4A0n4", - "name": "KETTAMA", - "type": "artist", - "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" - }, - "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", - "id": "5fEdUhbIAf9JlPhlc3swPx", - "name": "Shady Nasty", - "type": "artist", - "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 286285, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" - }, - "href": "https://api.spotify.com/v1/tracks/3CdOgv5Bz3kSGb79jHahkJ", - "id": "3CdOgv5Bz3kSGb79jHahkJ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2EAPTWaNB2cu4brp2ImU0Y" - }, - "href": "https://api.spotify.com/v1/tracks/2EAPTWaNB2cu4brp2ImU0Y", - "id": "2EAPTWaNB2cu4brp2ImU0Y", - "type": "track", - "uri": "spotify:track:2EAPTWaNB2cu4brp2ImU0Y" - }, - "name": "HARDSTYLE 2", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:3CdOgv5Bz3kSGb79jHahkJ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2AR42Ur9PcchQDtEdwkv4L" - }, - "href": "https://api.spotify.com/v1/artists/2AR42Ur9PcchQDtEdwkv4L", - "id": "2AR42Ur9PcchQDtEdwkv4L", - "name": "Floating Points", - "type": "artist", - "uri": "spotify:artist:2AR42Ur9PcchQDtEdwkv4L" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 451666, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" - }, - "href": "https://api.spotify.com/v1/tracks/1RM4ibzYZYXzCGonhMh5Gc", - "id": "1RM4ibzYZYXzCGonhMh5Gc", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5GV52Kgz64yWqm8keYq1E0" - }, - "href": "https://api.spotify.com/v1/tracks/5GV52Kgz64yWqm8keYq1E0", - "id": "5GV52Kgz64yWqm8keYq1E0", - "type": "track", - "uri": "spotify:track:5GV52Kgz64yWqm8keYq1E0" - }, - "name": "Ambery", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1RM4ibzYZYXzCGonhMh5Gc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4aEnNH9PuU1HF3TsZTru54" - }, - "href": "https://api.spotify.com/v1/artists/4aEnNH9PuU1HF3TsZTru54", - "id": "4aEnNH9PuU1HF3TsZTru54", - "name": "Caribou", - "type": "artist", - "uri": "spotify:artist:4aEnNH9PuU1HF3TsZTru54" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3uxTvUjeRTQDfrB59A1zWb" - }, - "href": "https://api.spotify.com/v1/artists/3uxTvUjeRTQDfrB59A1zWb", - "id": "3uxTvUjeRTQDfrB59A1zWb", - "name": "Menor Teteu", - "type": "artist", - "uri": "spotify:artist:3uxTvUjeRTQDfrB59A1zWb" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 257435, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" - }, - "href": "https://api.spotify.com/v1/tracks/3CiUl8blqDsFhWxHLsgiJ0", - "id": "3CiUl8blqDsFhWxHLsgiJ0", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/62wnlWjbSeOsP9EI2rFpf9" - }, - "href": "https://api.spotify.com/v1/tracks/62wnlWjbSeOsP9EI2rFpf9", - "id": "62wnlWjbSeOsP9EI2rFpf9", - "type": "track", - "uri": "spotify:track:62wnlWjbSeOsP9EI2rFpf9" - }, - "name": "Facilita", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:3CiUl8blqDsFhWxHLsgiJ0", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" - }, - "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", - "id": "5mnxMXIM6BNhVVTXnBatKa", - "name": "Skin On Skin", - "type": "artist", - "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" - }, - "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", - "id": "46MWeeHNVMYRIIofQBEX98", - "name": "BEAM", - "type": "artist", - "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 341250, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" - }, - "href": "https://api.spotify.com/v1/tracks/4zGwSKGXnfpBNHkavKnyIf", - "id": "4zGwSKGXnfpBNHkavKnyIf", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/08panpchw721lgwPyM7V2k" - }, - "href": "https://api.spotify.com/v1/tracks/08panpchw721lgwPyM7V2k", - "id": "08panpchw721lgwPyM7V2k", - "type": "track", - "uri": "spotify:track:08panpchw721lgwPyM7V2k" - }, - "name": "the floor - fred remix", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:4zGwSKGXnfpBNHkavKnyIf", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7aA592KWirLsnfb5ulGWvU" - }, - "href": "https://api.spotify.com/v1/artists/7aA592KWirLsnfb5ulGWvU", - "id": "7aA592KWirLsnfb5ulGWvU", - "name": "Danny Brown", - "type": "artist", - "uri": "spotify:artist:7aA592KWirLsnfb5ulGWvU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" - }, - "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", - "id": "46MWeeHNVMYRIIofQBEX98", - "name": "BEAM", - "type": "artist", - "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1UJfZU4rQx3bJ3tGypRuAT" - }, - "href": "https://api.spotify.com/v1/artists/1UJfZU4rQx3bJ3tGypRuAT", - "id": "1UJfZU4rQx3bJ3tGypRuAT", - "name": "PARISI", - "type": "artist", - "uri": "spotify:artist:1UJfZU4rQx3bJ3tGypRuAT" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6yJ6QQ3Y5l0s0tn7b0arrO" - }, - "href": "https://api.spotify.com/v1/artists/6yJ6QQ3Y5l0s0tn7b0arrO", - "id": "6yJ6QQ3Y5l0s0tn7b0arrO", - "name": "JPEGMAFIA", - "type": "artist", - "uri": "spotify:artist:6yJ6QQ3Y5l0s0tn7b0arrO" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 206197, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" - }, - "href": "https://api.spotify.com/v1/tracks/2mU0xUC1kamLn20YPKuH3S", - "id": "2mU0xUC1kamLn20YPKuH3S", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6T0rO9e3bHTPzvAPqmFspP" - }, - "href": "https://api.spotify.com/v1/tracks/6T0rO9e3bHTPzvAPqmFspP", - "id": "6T0rO9e3bHTPzvAPqmFspP", - "type": "track", - "uri": "spotify:track:6T0rO9e3bHTPzvAPqmFspP" - }, - "name": "OK OK", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:2mU0xUC1kamLn20YPKuH3S", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" - }, - "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", - "id": "3NqV2DJoAWsjl787bWaHW7", - "name": "Amyl and The Sniffers", - "type": "artist", - "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 219130, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" - }, - "href": "https://api.spotify.com/v1/tracks/47ESN2iezMvHBKmecjgG11", - "id": "47ESN2iezMvHBKmecjgG11", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2yGG7DTvI6mvDLnmUc7J0E" - }, - "href": "https://api.spotify.com/v1/tracks/2yGG7DTvI6mvDLnmUc7J0E", - "id": "2yGG7DTvI6mvDLnmUc7J0E", - "type": "track", - "uri": "spotify:track:2yGG7DTvI6mvDLnmUc7J0E" - }, - "name": "you're a star", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:47ESN2iezMvHBKmecjgG11", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 225897, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" - }, - "href": "https://api.spotify.com/v1/tracks/78igz8PCqqNYLVyhhSh0z5", - "id": "78igz8PCqqNYLVyhhSh0z5", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0sIXcKicNfPHDVhmD9riGJ" - }, - "href": "https://api.spotify.com/v1/tracks/0sIXcKicNfPHDVhmD9riGJ", - "id": "0sIXcKicNfPHDVhmD9riGJ", - "type": "track", - "uri": "spotify:track:0sIXcKicNfPHDVhmD9riGJ" - }, - "name": "Last 1s Left", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:78igz8PCqqNYLVyhhSh0z5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 187411, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" - }, - "href": "https://api.spotify.com/v1/tracks/3JTzfCw32PeAQLjtadHvtM", - "id": "3JTzfCw32PeAQLjtadHvtM", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3BQ6oNyOFO4EZyvtx0Ao15" - }, - "href": "https://api.spotify.com/v1/tracks/3BQ6oNyOFO4EZyvtx0Ao15", - "id": "3BQ6oNyOFO4EZyvtx0Ao15", - "type": "track", - "uri": "spotify:track:3BQ6oNyOFO4EZyvtx0Ao15" - }, - "name": "Back 2 Back", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:3JTzfCw32PeAQLjtadHvtM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" - }, - "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", - "id": "79NDEw5QWlDC9KaIbogNhS", - "name": "Plaqueboymax", - "type": "artist", - "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 165857, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" - }, - "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", - "id": "1lbNgoJ5iMrMluCyhI4OQP", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6GHlbRqY19d9rh8PEh7FzI" - }, - "href": "https://api.spotify.com/v1/tracks/6GHlbRqY19d9rh8PEh7FzI", - "id": "6GHlbRqY19d9rh8PEh7FzI", - "type": "track", - "uri": "spotify:track:6GHlbRqY19d9rh8PEh7FzI" - }, - "name": "Victory Lap", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" - }, - "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", - "id": "0aIpJqqTLf683ojWREc5lg", - "name": "Joy Orbison", - "type": "artist", - "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" - }, - "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", - "id": "6icQOAFXDZKsumw3YXyusw", - "name": "Lil Yachty", - "type": "artist", - "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" - }, - "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", - "id": "1RyvyyTE3xzB2ZywiAwp0i", - "name": "Future", - "type": "artist", - "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" - }, - "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", - "id": "699OTQXzgjhIYAHMy9RyPD", - "name": "Playboi Carti", - "type": "artist", - "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 246909, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" - }, - "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", - "id": "7qpZh0yIXeZzXZk3mE6Fj9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3ZsfRm1gpZqnd8AoV7wgYt" - }, - "href": "https://api.spotify.com/v1/tracks/3ZsfRm1gpZqnd8AoV7wgYt", - "id": "3ZsfRm1gpZqnd8AoV7wgYt", - "type": "track", - "uri": "spotify:track:3ZsfRm1gpZqnd8AoV7wgYt" - }, - "name": "flex fm (freddit)", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" - }, - "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", - "id": "4VsVLz3Uw6d0fdM6gFtLfo", - "name": "MESSIE", - "type": "artist", - "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 219310, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" - }, - "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", - "id": "73s1r3Jfn8pqXJv9ahKfNV", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1ypO22GPllRtSpqOEWbpVV" - }, - "href": "https://api.spotify.com/v1/tracks/1ypO22GPllRtSpqOEWbpVV", - "id": "1ypO22GPllRtSpqOEWbpVV", - "type": "track", - "uri": "spotify:track:1ypO22GPllRtSpqOEWbpVV" - }, - "name": "places to be - MESSIE remix", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" - }, - "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", - "id": "1fDV6gCETmlkCUugBxq59g", - "name": "Duoteque", - "type": "artist", - "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" - }, - "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", - "id": "2efrqekWSHlvhATD50AG3m", - "name": "Orion Sun", - "type": "artist", - "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 327508, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" - }, - "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", - "id": "2la8LWSxedRoulmz0UHE7o", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4hPdnrevUw5PUKMElR09tU" - }, - "href": "https://api.spotify.com/v1/tracks/4hPdnrevUw5PUKMElR09tU", - "id": "4hPdnrevUw5PUKMElR09tU", - "type": "track", - "uri": "spotify:track:4hPdnrevUw5PUKMElR09tU" - }, - "name": "ItsNotREEAALLLLLLLL", - "preview_url": null, - "track_number": 19, - "type": "track", - "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" - }, - "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", - "id": "5zatdvej2AxogC5pbu2msR", - "name": "BERWYN", - "type": "artist", - "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 123607, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" - }, - "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", - "id": "59DFl0vh8FoBmmD43ruznv", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3XRhENEXtBIklV861z3ypc" - }, - "href": "https://api.spotify.com/v1/tracks/3XRhENEXtBIklV861z3ypc", - "id": "3XRhENEXtBIklV861z3ypc", - "type": "track", - "uri": "spotify:track:3XRhENEXtBIklV861z3ypc" - }, - "name": "BerwynGesaffNeighbours", - "preview_url": null, - "track_number": 20, - "type": "track", - "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" - }, - "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", - "id": "6icQOAFXDZKsumw3YXyusw", - "name": "Lil Yachty", - "type": "artist", - "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" - }, - "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", - "id": "01PnN11ovfen6xUOHfNpn3", - "name": "Overmono", - "type": "artist", - "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 274925, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" - }, - "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", - "id": "2iUMh8RrpUiakMnneanOPj", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/210lphIRrJCKXgFLxHwGN8" - }, - "href": "https://api.spotify.com/v1/tracks/210lphIRrJCKXgFLxHwGN8", - "id": "210lphIRrJCKXgFLxHwGN8", - "type": "track", - "uri": "spotify:track:210lphIRrJCKXgFLxHwGN8" - }, - "name": "stayinit", - "preview_url": null, - "track_number": 21, - "type": "track", - "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" - }, - "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", - "id": "5SXuuuRpukkTvsLuUknva1", - "name": "Baby Keem", - "type": "artist", - "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 222784, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" - }, - "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", - "id": "2tSP95IyUkPv5Wj83xWh1c", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6IOTukhTcumU9dtAk1OLLF" - }, - "href": "https://api.spotify.com/v1/tracks/6IOTukhTcumU9dtAk1OLLF", - "id": "6IOTukhTcumU9dtAk1OLLF", - "type": "track", - "uri": "spotify:track:6IOTukhTcumU9dtAk1OLLF" - }, - "name": "leavemealone", - "preview_url": null, - "track_number": 22, - "type": "track", - "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" - }, - "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", - "id": "7Eu1txygG6nJttLHbZdQOh", - "name": "Four Tet", - "type": "artist", - "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 319963, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" - }, - "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", - "id": "6EpIDF3GW1dRBujSp4bJxI", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7ChXvbTy4bFou6VTn0XZKa" - }, - "href": "https://api.spotify.com/v1/tracks/7ChXvbTy4bFou6VTn0XZKa", - "id": "7ChXvbTy4bFou6VTn0XZKa", - "type": "track", - "uri": "spotify:track:7ChXvbTy4bFou6VTn0XZKa" - }, - "name": "Baby again..", - "preview_url": null, - "track_number": 23, - "type": "track", - "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" - }, - "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", - "id": "07CimrZi5vs9iEao47TNQ4", - "name": "Flowdan", - "type": "artist", - "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 146571, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" - }, - "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", - "id": "74fmYjFwt9CqEFAh8ybeBD", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0ps1Oq8m38kcAJzd2xOSfO" - }, - "href": "https://api.spotify.com/v1/tracks/0ps1Oq8m38kcAJzd2xOSfO", - "id": "0ps1Oq8m38kcAJzd2xOSfO", - "type": "track", - "uri": "spotify:track:0ps1Oq8m38kcAJzd2xOSfO" - }, - "name": "Rumble", - "preview_url": null, - "track_number": 24, - "type": "track", - "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" - }, - "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", - "id": "1h6Cn3P4NGzXbaXidqURXs", - "name": "Swedish House Mafia", - "type": "artist", - "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" - }, - "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", - "id": "1RyvyyTE3xzB2ZywiAwp0i", - "name": "Future", - "type": "artist", - "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 267946, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" - }, - "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", - "id": "2E6peXBRbjUmGkkR3dUNGe", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5V3lOpkER4fddNbVojzdvP" - }, - "href": "https://api.spotify.com/v1/tracks/5V3lOpkER4fddNbVojzdvP", - "id": "5V3lOpkER4fddNbVojzdvP", - "type": "track", - "uri": "spotify:track:5V3lOpkER4fddNbVojzdvP" - }, - "name": "Turn On The Lights again.. (feat. Future)", - "preview_url": null, - "track_number": 25, - "type": "track", - "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 198805, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" - }, - "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", - "id": "3BKkroNdTKfNijLG9oHW7c", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5dSrUdJ8kivDMePdVQRswg" - }, - "href": "https://api.spotify.com/v1/tracks/5dSrUdJ8kivDMePdVQRswg", - "id": "5dSrUdJ8kivDMePdVQRswg", - "type": "track", - "uri": "spotify:track:5dSrUdJ8kivDMePdVQRswg" - }, - "name": "Jungle", - "preview_url": null, - "track_number": 26, - "type": "track", - "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" - }, - "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", - "id": "5RMLpCv3ic2KtGnqJ7eMG4", - "name": "I. JORDAN", - "type": "artist", - "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 385074, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" - }, - "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", - "id": "7c0DlxLjlEEK2VKQJIIU1Z", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5GokhlwBZGPiPbabpMdj1j" - }, - "href": "https://api.spotify.com/v1/tracks/5GokhlwBZGPiPbabpMdj1j", - "id": "5GokhlwBZGPiPbabpMdj1j", - "type": "track", - "uri": "spotify:track:5GokhlwBZGPiPbabpMdj1j" - }, - "name": "Admit It (u dont want 2)", - "preview_url": null, - "track_number": 27, - "type": "track", - "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" - }, - "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", - "id": "0pkLgeB9j465x1QB2kRoy4", - "name": "HAAi", - "type": "artist", - "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 288348, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" - }, - "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", - "id": "1RlBD9ays0WfNHSVzxHiKX", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7s8B76ppLplVwdmf7fjfzM" - }, - "href": "https://api.spotify.com/v1/tracks/7s8B76ppLplVwdmf7fjfzM", - "id": "7s8B76ppLplVwdmf7fjfzM", - "type": "track", - "uri": "spotify:track:7s8B76ppLplVwdmf7fjfzM" - }, - "name": "Lights Out", - "preview_url": null, - "track_number": 28, - "type": "track", - "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/46MWeeHNVMYRIIofQBEX98" - }, - "href": "https://api.spotify.com/v1/artists/46MWeeHNVMYRIIofQBEX98", - "id": "46MWeeHNVMYRIIofQBEX98", - "name": "BEAM", - "type": "artist", - "uri": "spotify:artist:46MWeeHNVMYRIIofQBEX98" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5mnxMXIM6BNhVVTXnBatKa" - }, - "href": "https://api.spotify.com/v1/artists/5mnxMXIM6BNhVVTXnBatKa", - "id": "5mnxMXIM6BNhVVTXnBatKa", - "name": "Skin On Skin", - "type": "artist", - "uri": "spotify:artist:5mnxMXIM6BNhVVTXnBatKa" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 234428, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" - }, - "href": "https://api.spotify.com/v1/tracks/3tqiBJfctALrFQbv1wltlr", - "id": "3tqiBJfctALrFQbv1wltlr", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5BFAhacuNNcMz27eWyRloV" - }, - "href": "https://api.spotify.com/v1/tracks/5BFAhacuNNcMz27eWyRloV", - "id": "5BFAhacuNNcMz27eWyRloV", - "type": "track", - "uri": "spotify:track:5BFAhacuNNcMz27eWyRloV" - }, - "name": "the floor - skin on skin remix", - "preview_url": null, - "track_number": 29, - "type": "track", - "uri": "spotify:track:3tqiBJfctALrFQbv1wltlr", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" - }, - "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", - "id": "79NDEw5QWlDC9KaIbogNhS", - "name": "Plaqueboymax", - "type": "artist", - "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" - }, - "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", - "id": "6fxyWrfmjcbj5d12gXeiNV", - "name": "Denzel Curry", - "type": "artist", - "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" - }, - "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", - "id": "4nVa6XlBFlIkF6msW57PHp", - "name": "Hanumankind", - "type": "artist", - "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" - }, - "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", - "id": "3BAgmPNIK5IJl7zMK1wvMA", - "name": "That Mexican OT", - "type": "artist", - "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" - }, - "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", - "id": "6bwkMlweHsBCpI2a0C5nnN", - "name": "D Double E", - "type": "artist", - "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" - }, - "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", - "id": "7xqIp1044Z2vd9v9ZphjLa", - "name": "LYNY", - "type": "artist", - "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 344571, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" - }, - "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", - "id": "3bsAYGy83D6sl1a5otGuUg", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/28dXOti2Sy7YQJP4af9wM3" - }, - "href": "https://api.spotify.com/v1/tracks/28dXOti2Sy7YQJP4af9wM3", - "id": "28dXOti2Sy7YQJP4af9wM3", - "type": "track", - "uri": "spotify:track:28dXOti2Sy7YQJP4af9wM3" - }, - "name": "Victory Lap Five", - "preview_url": null, - "track_number": 30, - "type": "track", - "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" - }, - "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", - "id": "6b0TSaLAeLXilOPoId8udE", - "name": "CLIPZ", - "type": "artist", - "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 184827, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" - }, - "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", - "id": "4n4VUdx6tr7MylOySvDhPK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4iAtPgGTSl9FXE0f0s2R8z" - }, - "href": "https://api.spotify.com/v1/tracks/4iAtPgGTSl9FXE0f0s2R8z", - "id": "4iAtPgGTSl9FXE0f0s2R8z", - "type": "track", - "uri": "spotify:track:4iAtPgGTSl9FXE0f0s2R8z" - }, - "name": "places to be - CLIPZ remix", - "preview_url": null, - "track_number": 31, - "type": "track", - "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" - }, - "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", - "id": "5SXuuuRpukkTvsLuUknva1", - "name": "Baby Keem", - "type": "artist", - "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" - }, - "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", - "id": "7BMR0fwtEvzGtK4rNGdoiQ", - "name": "Nia Archives", - "type": "artist", - "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 179441, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" - }, - "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", - "id": "5u84pGbxFomiV66Uk2kOQK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5X9Kv1YXQwO1fzdm1GjJWZ" - }, - "href": "https://api.spotify.com/v1/tracks/5X9Kv1YXQwO1fzdm1GjJWZ", - "id": "5X9Kv1YXQwO1fzdm1GjJWZ", - "type": "track", - "uri": "spotify:track:5X9Kv1YXQwO1fzdm1GjJWZ" - }, - "name": "leavemealone - Nia Archives Remix", - "preview_url": null, - "track_number": 32, - "type": "track", - "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" - }, - "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", - "id": "2OaHYHb2XcFPvqL3VsyPzU", - "name": "Rico Nasty", - "type": "artist", - "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 213133, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" - }, - "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", - "id": "3ycgBFWvzxjLtY2YJuQMms", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4aw8UIUfhgmnOu7adMwmVx" - }, - "href": "https://api.spotify.com/v1/tracks/4aw8UIUfhgmnOu7adMwmVx", - "id": "4aw8UIUfhgmnOu7adMwmVx", - "type": "track", - "uri": "spotify:track:4aw8UIUfhgmnOu7adMwmVx" - }, - "name": "Jungle - Rico Nasty Remix", - "preview_url": null, - "track_number": 33, - "type": "track", - "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" - }, - "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", - "id": "0pkLgeB9j465x1QB2kRoy4", - "name": "HAAi", - "type": "artist", - "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 375087, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" - }, - "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", - "id": "5HZJuJphtUWc6wuTHt50oQ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Pzoc1rIyirjuim3Z7wnbz" - }, - "href": "https://api.spotify.com/v1/tracks/0Pzoc1rIyirjuim3Z7wnbz", - "id": "0Pzoc1rIyirjuim3Z7wnbz", - "type": "track", - "uri": "spotify:track:0Pzoc1rIyirjuim3Z7wnbz" - }, - "name": "Lights Out (feat. Fred again..) - HAAi Remix", - "preview_url": null, - "track_number": 34, - "type": "track", - "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/3pFe9dLAwfnwKt8gM6mqki", + "id": "3pFe9dLAwfnwKt8gM6mqki", + "type": "track", + "uri": "spotify:track:3pFe9dLAwfnwKt8gM6mqki" + }, + "name": "Never Be Alone (feat. Sonny Fodera)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3MLsgTj4GNyq6Nost2T5ya", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 148135, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" + }, + "href": "https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a", + "id": "1VjvxoeHjF0DJhsmvLte8a", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" }, - "copyrights": [ - { - "text": "An Atlantic Records UK, \u00a9 2025 Warner Music UK Limited", - "type": "C" - }, - { - "text": "An Atlantic Records UK release \u2117 2025 Fred Gibson under exclusive licence to Warner Music UK Limited, with the exception of tracks 14 & 15 \u2117 2025 Epic Records, a division of Sony Music Entertainment UK Ltd under exclusive licence from Big Smoke Ltd/ Fred Gibson /Warner Music UK Limited. Tracks 16 & 18-34 \u2117 2024 Warner Music UK Limited. Track 17 \u2117 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2025 Warner Music UK Limited", - "type": "P" - } - ], - "external_ids": { "upc": "5026854314600" }, - "genres": [], - "label": "Atlantic Records UK", - "popularity": 67 - } - }, - { - "added_at": "2025-10-23T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 10, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/2MLkPm2w8hHjJbg4jpb5e4", + "id": "2MLkPm2w8hHjJbg4jpb5e4", + "type": "track", + "uri": "spotify:track:2MLkPm2w8hHjJbg4jpb5e4" + }, + "name": "Multiply", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1VjvxoeHjF0DJhsmvLte8a", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212421, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" + }, + "href": "https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT", + "id": "5Bnm9QxfBKxc1sNvZanTBT", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" + "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" }, - "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", - "id": "37P2qivB9weEafn1Y2VeF8", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", - "height": 64, - "width": 64 - } - ], - "name": "There\u2019s Always More That I Could Say", - "release_date": "2025-10-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 171991, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3rgZPrOQn2E3sw90NgI6f6" - }, - "href": "https://api.spotify.com/v1/tracks/3rgZPrOQn2E3sw90NgI6f6", - "id": "3rgZPrOQn2E3sw90NgI6f6", - "name": "I'll Always Be Your Girl", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3rgZPrOQn2E3sw90NgI6f6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186435, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2VEIppsUhk7inhi5TB4J0C" - }, - "href": "https://api.spotify.com/v1/tracks/2VEIppsUhk7inhi5TB4J0C", - "id": "2VEIppsUhk7inhi5TB4J0C", - "name": "Jellyfish", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:2VEIppsUhk7inhi5TB4J0C", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 173251, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" - }, - "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", - "id": "4qM72D1GHUQRXwnmLZUcMH", - "name": "Do It Again", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 158680, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2KCEJHfKLqZ90YL4EmE0cM" - }, - "href": "https://api.spotify.com/v1/tracks/2KCEJHfKLqZ90YL4EmE0cM", - "id": "2KCEJHfKLqZ90YL4EmE0cM", - "name": "Kiss The Sky", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2KCEJHfKLqZ90YL4EmE0cM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 172889, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" - }, - "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", - "id": "67WAthizRvsLDjgzIZs27h", - "name": "Two Years", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:67WAthizRvsLDjgzIZs27h", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 164303, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/72eTbGnzmu9e5FsjSoy57j" - }, - "href": "https://api.spotify.com/v1/tracks/72eTbGnzmu9e5FsjSoy57j", - "id": "72eTbGnzmu9e5FsjSoy57j", - "name": "Hush Baby, Hurry Slowly", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:72eTbGnzmu9e5FsjSoy57j", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198756, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7uAkVdp16PTpzx2HFfz96O" - }, - "href": "https://api.spotify.com/v1/tracks/7uAkVdp16PTpzx2HFfz96O", - "id": "7uAkVdp16PTpzx2HFfz96O", - "name": "Fort Knox", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:7uAkVdp16PTpzx2HFfz96O", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161636, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Qb0Oghb0nwsZ7rHV4yi2T" - }, - "href": "https://api.spotify.com/v1/tracks/4Qb0Oghb0nwsZ7rHV4yi2T", - "id": "4Qb0Oghb0nwsZ7rHV4yi2T", - "name": "There\u2019s Always More That I Could Say", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:4Qb0Oghb0nwsZ7rHV4yi2T", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 261219, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4MvmZRkUIDZMrn6T9ECiFu" - }, - "href": "https://api.spotify.com/v1/tracks/4MvmZRkUIDZMrn6T9ECiFu", - "id": "4MvmZRkUIDZMrn6T9ECiFu", - "name": "Have You Heard This Song Before", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:4MvmZRkUIDZMrn6T9ECiFu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212352, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4EdCYJlPARFqoQDBYPFY9A" - }, - "href": "https://api.spotify.com/v1/tracks/4EdCYJlPARFqoQDBYPFY9A", - "id": "4EdCYJlPARFqoQDBYPFY9A", - "name": "Eternal Sunshine", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4EdCYJlPARFqoQDBYPFY9A", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/2ZZK8s3J4YFFtuPVPEuBKL", + "id": "2ZZK8s3J4YFFtuPVPEuBKL", + "type": "track", + "uri": "spotify:track:2ZZK8s3J4YFFtuPVPEuBKL" + }, + "name": "Swim", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5Bnm9QxfBKxc1sNvZanTBT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 178352, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" + }, + "href": "https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2", + "id": "2HYvYa9b8lASSBxgupn7H2", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" }, - "copyrights": [ - { - "text": "\u00a9 2025 Universal Music Operations Limited", - "type": "C" - }, - { - "text": "\u2117 2025 Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602478149894" }, - "genres": [], - "label": "EMI", - "popularity": 44 - } - }, - { - "added_at": "2025-10-09T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/0Gy9xulTAI3wQ7S2f4Fyg6", + "id": "0Gy9xulTAI3wQ7S2f4Fyg6", + "type": "track", + "uri": "spotify:track:0Gy9xulTAI3wQ7S2f4Fyg6" + }, + "name": "Man Of My Dreams", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2HYvYa9b8lASSBxgupn7H2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 176661, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" + }, + "href": "https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9", + "id": "6yCLuQMWVBBfgwqLaTtks9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" + }, + "href": "https://api.spotify.com/v1/tracks/6rjezxiUUnvLoCxY3Tn0cP", + "id": "6rjezxiUUnvLoCxY3Tn0cP", + "type": "track", + "uri": "spotify:track:6rjezxiUUnvLoCxY3Tn0cP" + }, + "name": "Linger", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6yCLuQMWVBBfgwqLaTtks9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 230657, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" + }, + "href": "https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R", + "id": "6HHONxXw6BXNg2YSELJn1R", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/37qGqumC22Ibkey11xnvHC" + "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" }, - "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC", - "id": "37qGqumC22Ibkey11xnvHC", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731ab02b6570ef64749f4557a4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021ab02b6570ef64749f4557a4", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511ab02b6570ef64749f4557a4", - "height": 64, - "width": 64 - } - ], - "name": "Under The Covers, Vol. IV", - "release_date": "2025-10-10", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:37qGqumC22Ibkey11xnvHC", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/37qGqumC22Ibkey11xnvHC/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 215775, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1yKw8iYZgzg15nAbrZORyF" - }, - "href": "https://api.spotify.com/v1/tracks/1yKw8iYZgzg15nAbrZORyF", - "id": "1yKw8iYZgzg15nAbrZORyF", - "name": "The Power of Love", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1yKw8iYZgzg15nAbrZORyF", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226383, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3rRo6VIxlhm1ZJaMBfyeTl" - }, - "href": "https://api.spotify.com/v1/tracks/3rRo6VIxlhm1ZJaMBfyeTl", - "id": "3rRo6VIxlhm1ZJaMBfyeTl", - "name": "Just What I Needed", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3rRo6VIxlhm1ZJaMBfyeTl", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 289288, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6s1mVSOmPlv3qUOktjshpP" - }, - "href": "https://api.spotify.com/v1/tracks/6s1mVSOmPlv3qUOktjshpP", - "id": "6s1mVSOmPlv3qUOktjshpP", - "name": "Rosanna", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6s1mVSOmPlv3qUOktjshpP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 273046, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/336Z6KZ0kXYaNBX0mJoHzy" - }, - "href": "https://api.spotify.com/v1/tracks/336Z6KZ0kXYaNBX0mJoHzy", - "id": "336Z6KZ0kXYaNBX0mJoHzy", - "name": "Don't You (Forget About Me)", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:336Z6KZ0kXYaNBX0mJoHzy", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226283, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2HjeZ9kKEBN1BOjeAsIrNr" - }, - "href": "https://api.spotify.com/v1/tracks/2HjeZ9kKEBN1BOjeAsIrNr", - "id": "2HjeZ9kKEBN1BOjeAsIrNr", - "name": "Walk the Dinosaur", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:2HjeZ9kKEBN1BOjeAsIrNr", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217035, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5wwV3PvcLQO0XSBRlrjKrq" - }, - "href": "https://api.spotify.com/v1/tracks/5wwV3PvcLQO0XSBRlrjKrq", - "id": "5wwV3PvcLQO0XSBRlrjKrq", - "name": "Alone", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:5wwV3PvcLQO0XSBRlrjKrq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208133, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2YwHAy6qJ9ziRQJA6WaZhy" - }, - "href": "https://api.spotify.com/v1/tracks/2YwHAy6qJ9ziRQJA6WaZhy", - "id": "2YwHAy6qJ9ziRQJA6WaZhy", - "name": "What a Fool Believes", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2YwHAy6qJ9ziRQJA6WaZhy", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201082, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7qGkyuUNwlxVhczm70tRpG" - }, - "href": "https://api.spotify.com/v1/tracks/7qGkyuUNwlxVhczm70tRpG", - "id": "7qGkyuUNwlxVhczm70tRpG", - "name": "Invisible Touch", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:7qGkyuUNwlxVhczm70tRpG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 278562, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6nvpIkMrowN0GyW1RT9wkY" - }, - "href": "https://api.spotify.com/v1/tracks/6nvpIkMrowN0GyW1RT9wkY", - "id": "6nvpIkMrowN0GyW1RT9wkY", - "name": "Can't Fight This Feeling", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:6nvpIkMrowN0GyW1RT9wkY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 252937, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3fqnfaOvNzKEO2dHlI7REr" - }, - "href": "https://api.spotify.com/v1/tracks/3fqnfaOvNzKEO2dHlI7REr", - "id": "3fqnfaOvNzKEO2dHlI7REr", - "name": "Life's What You Make It", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:3fqnfaOvNzKEO2dHlI7REr", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201071, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0P8ZlN0PNMmpoi76mkDYqG" - }, - "href": "https://api.spotify.com/v1/tracks/0P8ZlN0PNMmpoi76mkDYqG", - "id": "0P8ZlN0PNMmpoi76mkDYqG", - "name": "SOS", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:0P8ZlN0PNMmpoi76mkDYqG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 286545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6e8wyDGesxbluq8lYLtM5C" - }, - "href": "https://api.spotify.com/v1/tracks/6e8wyDGesxbluq8lYLtM5C", - "id": "6e8wyDGesxbluq8lYLtM5C", - "name": "Hey Jude", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:6e8wyDGesxbluq8lYLtM5C", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/7pxYzLcArC8gnj67ebv4yh", + "id": "7pxYzLcArC8gnj67ebv4yh", + "type": "track", + "uri": "spotify:track:7pxYzLcArC8gnj67ebv4yh" + }, + "name": "Lonely Again", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6HHONxXw6BXNg2YSELJn1R", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "copyrights": [ - { "text": "2025 Ninja Sex Party", "type": "C" }, - { "text": "2025 Ninja Sex Party", "type": "P" } - ], - "external_ids": { "upc": "8721253454441" }, - "genres": [], - "label": "Ninja Sex Party", - "popularity": 38 - } - }, - { - "added_at": "2025-09-11T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26OmQHradZrF0CS7DrgWDH" + }, + "href": "https://api.spotify.com/v1/artists/26OmQHradZrF0CS7DrgWDH", + "id": "26OmQHradZrF0CS7DrgWDH", + "name": "Lewis Thompson", + "type": "artist", + "uri": "spotify:artist:26OmQHradZrF0CS7DrgWDH" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 153742, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" + }, + "href": "https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn", + "id": "2aAksX61WFBUxWayOhEDJn", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1rSbjr5U9J9rQ9sE7RxHFl" + "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" }, - "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl", - "id": "1rSbjr5U9J9rQ9sE7RxHFl", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d076abbd008ad3c6d65112eb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d076abbd008ad3c6d65112eb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d076abbd008ad3c6d65112eb", - "height": 64, - "width": 64 - } - ], - "name": "LOVED", - "release_date": "2025-09-12", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1rSbjr5U9J9rQ9sE7RxHFl", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1rSbjr5U9J9rQ9sE7RxHFl/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245904, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7cSLD89y304ZvX4mVhYVfw" - }, - "href": "https://api.spotify.com/v1/tracks/7cSLD89y304ZvX4mVhYVfw", - "id": "7cSLD89y304ZvX4mVhYVfw", - "name": "Tobeloved", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7cSLD89y304ZvX4mVhYVfw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 241608, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6cjALjYTubXSbLRXrnCNgY" - }, - "href": "https://api.spotify.com/v1/tracks/6cjALjYTubXSbLRXrnCNgY", - "id": "6cjALjYTubXSbLRXrnCNgY", - "name": "Ifyoucall", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:6cjALjYTubXSbLRXrnCNgY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 276347, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0k6WMNaYENiEhseD7MAi4N" - }, - "href": "https://api.spotify.com/v1/tracks/0k6WMNaYENiEhseD7MAi4N", - "id": "0k6WMNaYENiEhseD7MAi4N", - "name": "Safeandsound", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0k6WMNaYENiEhseD7MAi4N", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197703, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/02KWhwsDjIX8ZXgBgK9kOP" - }, - "href": "https://api.spotify.com/v1/tracks/02KWhwsDjIX8ZXgBgK9kOP", - "id": "02KWhwsDjIX8ZXgBgK9kOP", - "name": "Sorry", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:02KWhwsDjIX8ZXgBgK9kOP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183462, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1eGYO1RzVRdphhWT86DSr9" - }, - "href": "https://api.spotify.com/v1/tracks/1eGYO1RzVRdphhWT86DSr9", - "id": "1eGYO1RzVRdphhWT86DSr9", - "name": "Yougotmefeeling", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1eGYO1RzVRdphhWT86DSr9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221343, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/07HZTpShoHhClfwKDEsvN5" - }, - "href": "https://api.spotify.com/v1/tracks/07HZTpShoHhClfwKDEsvN5", - "id": "07HZTpShoHhClfwKDEsvN5", - "name": "Leaves", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:07HZTpShoHhClfwKDEsvN5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 218683, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0B36Bnz5XYl4plV4MpXSAg" - }, - "href": "https://api.spotify.com/v1/tracks/0B36Bnz5XYl4plV4MpXSAg", - "id": "0B36Bnz5XYl4plV4MpXSAg", - "name": "Everybodyelse", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:0B36Bnz5XYl4plV4MpXSAg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 271047, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7r4NrHM4w6tJystfMbse4C" - }, - "href": "https://api.spotify.com/v1/tracks/7r4NrHM4w6tJystfMbse4C", - "id": "7r4NrHM4w6tJystfMbse4C", - "name": "Summerinlove", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:7r4NrHM4w6tJystfMbse4C", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 231490, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0NeYhtI2vLqaIpvYRQ7E5Y" - }, - "href": "https://api.spotify.com/v1/tracks/0NeYhtI2vLqaIpvYRQ7E5Y", - "id": "0NeYhtI2vLqaIpvYRQ7E5Y", - "name": "Leaveyourlove", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:0NeYhtI2vLqaIpvYRQ7E5Y", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 171575, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7hiuxAwDEBlEil538YGffi" - }, - "href": "https://api.spotify.com/v1/tracks/7hiuxAwDEBlEil538YGffi", - "id": "7hiuxAwDEBlEil538YGffi", - "name": "Thinkaboutit", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:7hiuxAwDEBlEil538YGffi", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191925, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1Ded9EOaAthYQVOs9MwtCp" - }, - "href": "https://api.spotify.com/v1/tracks/1Ded9EOaAthYQVOs9MwtCp", - "id": "1Ded9EOaAthYQVOs9MwtCp", - "name": "Finallyover", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:1Ded9EOaAthYQVOs9MwtCp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "name": "Parcels", - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 302895, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4LpNkTXEHMktM6cj6DV12i" - }, - "href": "https://api.spotify.com/v1/tracks/4LpNkTXEHMktM6cj6DV12i", - "id": "4LpNkTXEHMktM6cj6DV12i", - "name": "Iwanttobeyourlightagain", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:4LpNkTXEHMktM6cj6DV12i", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/2l3WaRRp8nKatWZDVysMUR", + "id": "2l3WaRRp8nKatWZDVysMUR", + "type": "track", + "uri": "spotify:track:2l3WaRRp8nKatWZDVysMUR" + }, + "name": "Side Effects", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2aAksX61WFBUxWayOhEDJn", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 156248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" + }, + "href": "https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY", + "id": "3m9uxUtp0P8dF3U0Uny0uY", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" }, - "copyrights": [ - { - "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", - "type": "C" - }, - { - "text": "2025 PARCELS MUSIC GBR under exclusive License to Because Music SAS", - "type": "P" - } - ], - "external_ids": { "upc": "5056556160120" }, - "genres": [], - "label": "PARCELS MUSIC", - "popularity": 66 - } - }, - { - "added_at": "2025-06-05T11:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 9, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/4a4HS3GEdO6rHlvrYzztbh", + "id": "4a4HS3GEdO6rHlvrYzztbh", + "type": "track", + "uri": "spotify:track:4a4HS3GEdO6rHlvrYzztbh" + }, + "name": "Back Around", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:3m9uxUtp0P8dF3U0Uny0uY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 133289, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" + }, + "href": "https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur", + "id": "7z7NUTBS73esdMiCtZ9pur", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/3My0taql4cY6yHpY1bZILJ" + "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" }, - "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ", - "id": "3My0taql4cY6yHpY1bZILJ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273c4d3f5ed3a7a2f3e8854e76c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02c4d3f5ed3a7a2f3e8854e76c", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851c4d3f5ed3a7a2f3e8854e76c", - "height": 64, - "width": 64 - } - ], - "name": "Revelation", - "release_date": "2025-06-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3My0taql4cY6yHpY1bZILJ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/3My0taql4cY6yHpY1bZILJ/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 9, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 253862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6TCOOuqsger70LEZUXGrFG" - }, - "href": "https://api.spotify.com/v1/tracks/6TCOOuqsger70LEZUXGrFG", - "id": "6TCOOuqsger70LEZUXGrFG", - "name": "Revelation", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6TCOOuqsger70LEZUXGrFG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 205611, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Upay8wgPd30hQPjeWXHOC" - }, - "href": "https://api.spotify.com/v1/tracks/0Upay8wgPd30hQPjeWXHOC", - "id": "0Upay8wgPd30hQPjeWXHOC", - "name": "Love Me Alive", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:0Upay8wgPd30hQPjeWXHOC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5eX3Laj9b0V3HjkEBwrXmq" - }, - "href": "https://api.spotify.com/v1/tracks/5eX3Laj9b0V3HjkEBwrXmq", - "id": "5eX3Laj9b0V3HjkEBwrXmq", - "name": "Foolish Pleasure", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5eX3Laj9b0V3HjkEBwrXmq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6yE7Ch3CLPFvMl9m9ZqAYK" - }, - "href": "https://api.spotify.com/v1/tracks/6yE7Ch3CLPFvMl9m9ZqAYK", - "id": "6yE7Ch3CLPFvMl9m9ZqAYK", - "name": "The Hero", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6yE7Ch3CLPFvMl9m9ZqAYK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 85001, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1OZ2Fh8I2xKWgQgk9DNi6L" - }, - "href": "https://api.spotify.com/v1/tracks/1OZ2Fh8I2xKWgQgk9DNi6L", - "id": "1OZ2Fh8I2xKWgQgk9DNi6L", - "name": "Keynote", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1OZ2Fh8I2xKWgQgk9DNi6L", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198496, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/12txrzwhdCu0DhlEMrKBxw" - }, - "href": "https://api.spotify.com/v1/tracks/12txrzwhdCu0DhlEMrKBxw", - "id": "12txrzwhdCu0DhlEMrKBxw", - "name": "Friday Night", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:12txrzwhdCu0DhlEMrKBxw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189347, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4wjxlsdGrze9UxCWngBfHS" - }, - "href": "https://api.spotify.com/v1/tracks/4wjxlsdGrze9UxCWngBfHS", - "id": "4wjxlsdGrze9UxCWngBfHS", - "name": "Dreams", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4wjxlsdGrze9UxCWngBfHS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/60wP1IkIYps6MS3tS6Usl3" - }, - "href": "https://api.spotify.com/v1/tracks/60wP1IkIYps6MS3tS6Usl3", - "id": "60wP1IkIYps6MS3tS6Usl3", - "name": "Thorn", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:60wP1IkIYps6MS3tS6Usl3", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4GLJPBj5Cdr9AgLKvLWM4n" - }, - "href": "https://api.spotify.com/v1/artists/4GLJPBj5Cdr9AgLKvLWM4n", - "id": "4GLJPBj5Cdr9AgLKvLWM4n", - "name": "Dragonette", - "type": "artist", - "uri": "spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181645, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/63GJGxmjnfkBkdqgbH7gE2" - }, - "href": "https://api.spotify.com/v1/tracks/63GJGxmjnfkBkdqgbH7gE2", - "id": "63GJGxmjnfkBkdqgbH7gE2", - "name": "Let My Love Open The Door", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:63GJGxmjnfkBkdqgbH7gE2", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/43qScrbaWtfJZj9kvy2u2P", + "id": "43qScrbaWtfJZj9kvy2u2P", + "type": "track", + "uri": "spotify:track:43qScrbaWtfJZj9kvy2u2P" + }, + "name": "Keep Holding On", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:7z7NUTBS73esdMiCtZ9pur", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "copyrights": [ - { "text": "\u00a9 2025 Neon Gold Records", "type": "C" }, - { "text": "\u2117 2025 Neon Gold Records", "type": "P" } - ], - "external_ids": { "upc": "198704340437" }, - "genres": [], - "label": "Neon Gold", - "popularity": 42 - } - }, - { - "added_at": "2025-06-02T10:11:04Z", - "album": { - "album_type": "album", - "total_tracks": 25, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5spVyRrIk8Es1ZBi2ClEUU" + }, + "href": "https://api.spotify.com/v1/artists/5spVyRrIk8Es1ZBi2ClEUU", + "id": "5spVyRrIk8Es1ZBi2ClEUU", + "name": "RILEASA", + "type": "artist", + "uri": "spotify:artist:5spVyRrIk8Es1ZBi2ClEUU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 164005, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" + }, + "href": "https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc", + "id": "5RgB1e7a1KHrXrfT3UuPCc", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/78Wcqh7ygPyANYSd8kn5PG" + "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" }, - "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG", - "id": "78Wcqh7ygPyANYSd8kn5PG", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273a2e2bfe27469ef8067aa4560", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02a2e2bfe27469ef8067aa4560", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851a2e2bfe27469ef8067aa4560", - "height": 64, - "width": 64 - } - ], - "name": "Bitters\u00fc\u00df (Baller Deluxe)", - "release_date": "2025-05-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:78Wcqh7ygPyANYSd8kn5PG", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/78Wcqh7ygPyANYSd8kn5PG/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 25, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212893, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4yDBSqz5fHkR1uZBEdMu4C" - }, - "href": "https://api.spotify.com/v1/tracks/4yDBSqz5fHkR1uZBEdMu4C", - "id": "4yDBSqz5fHkR1uZBEdMu4C", - "name": "Parallele Linien", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4yDBSqz5fHkR1uZBEdMu4C", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 150521, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3P4p3ihEEV63gnXh1QYbHu" - }, - "href": "https://api.spotify.com/v1/tracks/3P4p3ihEEV63gnXh1QYbHu", - "id": "3P4p3ihEEV63gnXh1QYbHu", - "name": "Psst", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3P4p3ihEEV63gnXh1QYbHu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 174933, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7Dck7yNBesHT3bINWqGuJj" - }, - "href": "https://api.spotify.com/v1/tracks/7Dck7yNBesHT3bINWqGuJj", - "id": "7Dck7yNBesHT3bINWqGuJj", - "name": "Engel in Jeans", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:7Dck7yNBesHT3bINWqGuJj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 140526, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wGXOlPZRHL2BxOwHCggFz" - }, - "href": "https://api.spotify.com/v1/tracks/1wGXOlPZRHL2BxOwHCggFz", - "id": "1wGXOlPZRHL2BxOwHCggFz", - "name": "Coco Taxi", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:1wGXOlPZRHL2BxOwHCggFz", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 149011, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7cRv3ualjFncyPnjM5hzXw" - }, - "href": "https://api.spotify.com/v1/tracks/7cRv3ualjFncyPnjM5hzXw", - "id": "7cRv3ualjFncyPnjM5hzXw", - "name": "Seifenblasen", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:7cRv3ualjFncyPnjM5hzXw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 141078, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1QhASlLdyCTimVl2b0jQZ1" - }, - "href": "https://api.spotify.com/v1/tracks/1QhASlLdyCTimVl2b0jQZ1", - "id": "1QhASlLdyCTimVl2b0jQZ1", - "name": "Mama", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:1QhASlLdyCTimVl2b0jQZ1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 182200, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5QSHWxxZRZFTUgwjMl3enO" - }, - "href": "https://api.spotify.com/v1/tracks/5QSHWxxZRZFTUgwjMl3enO", - "id": "5QSHWxxZRZFTUgwjMl3enO", - "name": "Babylon", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:5QSHWxxZRZFTUgwjMl3enO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 155876, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/36wvHXuSxjcFFrUYQ7p651" - }, - "href": "https://api.spotify.com/v1/tracks/36wvHXuSxjcFFrUYQ7p651", - "id": "36wvHXuSxjcFFrUYQ7p651", - "name": "Guess What I Like", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:36wvHXuSxjcFFrUYQ7p651", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 151893, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7uX5nGsuQtviIx5bbGK2c2" - }, - "href": "https://api.spotify.com/v1/tracks/7uX5nGsuQtviIx5bbGK2c2", - "id": "7uX5nGsuQtviIx5bbGK2c2", - "name": "Katana", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:7uX5nGsuQtviIx5bbGK2c2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 139800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/265NTGkEQbGThMjjcvhwfS" - }, - "href": "https://api.spotify.com/v1/tracks/265NTGkEQbGThMjjcvhwfS", - "id": "265NTGkEQbGThMjjcvhwfS", - "name": "Mona Lisa", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:265NTGkEQbGThMjjcvhwfS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183893, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7a4s38cE2CYh6qAtWWiMcs" - }, - "href": "https://api.spotify.com/v1/tracks/7a4s38cE2CYh6qAtWWiMcs", - "id": "7a4s38cE2CYh6qAtWWiMcs", - "name": "Winnetou", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:7a4s38cE2CYh6qAtWWiMcs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 159493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/08HAsedFOMxs7NETNXPZ3K" - }, - "href": "https://api.spotify.com/v1/tracks/08HAsedFOMxs7NETNXPZ3K", - "id": "08HAsedFOMxs7NETNXPZ3K", - "name": "Baller", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:08HAsedFOMxs7NETNXPZ3K", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 152560, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1xGvgqekFRzNkgAtKsHXu8" - }, - "href": "https://api.spotify.com/v1/tracks/1xGvgqekFRzNkgAtKsHXu8", - "id": "1xGvgqekFRzNkgAtKsHXu8", - "name": "Tan Lines", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:1xGvgqekFRzNkgAtKsHXu8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 136557, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0VYrYHPDPVv0fjdojYEMAc" - }, - "href": "https://api.spotify.com/v1/tracks/0VYrYHPDPVv0fjdojYEMAc", - "id": "0VYrYHPDPVv0fjdojYEMAc", - "name": "K\u00fcsschen", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:0VYrYHPDPVv0fjdojYEMAc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 171346, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5vn3t4X7Q8rCAa5Lfd07XW" - }, - "href": "https://api.spotify.com/v1/tracks/5vn3t4X7Q8rCAa5Lfd07XW", - "id": "5vn3t4X7Q8rCAa5Lfd07XW", - "name": "Karussell", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:5vn3t4X7Q8rCAa5Lfd07XW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202224, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4KyZHk9EM6CXGrKeI26ihf" - }, - "href": "https://api.spotify.com/v1/tracks/4KyZHk9EM6CXGrKeI26ihf", - "id": "4KyZHk9EM6CXGrKeI26ihf", - "name": "Songs gehasst", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:4KyZHk9EM6CXGrKeI26ihf", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 175986, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3DTGOe9oWi4NwNNF8jeQt0" - }, - "href": "https://api.spotify.com/v1/tracks/3DTGOe9oWi4NwNNF8jeQt0", - "id": "3DTGOe9oWi4NwNNF8jeQt0", - "name": "Rotk\u00e4ppchen", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:3DTGOe9oWi4NwNNF8jeQt0", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 144880, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2yhWwMSeUzFJiQcca4mdbh" - }, - "href": "https://api.spotify.com/v1/tracks/2yhWwMSeUzFJiQcca4mdbh", - "id": "2yhWwMSeUzFJiQcca4mdbh", - "name": "Winnetou - Acoustic Version", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:2yhWwMSeUzFJiQcca4mdbh", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4IitBXra1xiNAFqYU1YFp8" - }, - "href": "https://api.spotify.com/v1/tracks/4IitBXra1xiNAFqYU1YFp8", - "id": "4IitBXra1xiNAFqYU1YFp8", - "name": "Parallele Linien - Acoustic Version", - "preview_url": null, - "track_number": 19, - "type": "track", - "uri": "spotify:track:4IitBXra1xiNAFqYU1YFp8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221586, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1slJAXwnqcsjbf3dvSK3ZI" - }, - "href": "https://api.spotify.com/v1/tracks/1slJAXwnqcsjbf3dvSK3ZI", - "id": "1slJAXwnqcsjbf3dvSK3ZI", - "name": "Baller - Acoustic Version", - "preview_url": null, - "track_number": 20, - "type": "track", - "uri": "spotify:track:1slJAXwnqcsjbf3dvSK3ZI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219560, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5OEn3AZguWzPiz7PaxgfJI" - }, - "href": "https://api.spotify.com/v1/tracks/5OEn3AZguWzPiz7PaxgfJI", - "id": "5OEn3AZguWzPiz7PaxgfJI", - "name": "Baller - Acoustic Hungarian Version", - "preview_url": null, - "track_number": 21, - "type": "track", - "uri": "spotify:track:5OEn3AZguWzPiz7PaxgfJI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 180000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7eXtpvQa9PEF7d2I3PnECW" - }, - "href": "https://api.spotify.com/v1/tracks/7eXtpvQa9PEF7d2I3PnECW", - "id": "7eXtpvQa9PEF7d2I3PnECW", - "name": "Baller - Eurovision Mix", - "preview_url": null, - "track_number": 22, - "type": "track", - "uri": "spotify:track:7eXtpvQa9PEF7d2I3PnECW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 158933, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Cyi6njkifIohvyFNKZivX" - }, - "href": "https://api.spotify.com/v1/tracks/6Cyi6njkifIohvyFNKZivX", - "id": "6Cyi6njkifIohvyFNKZivX", - "name": "Baller - Karaoke Version", - "preview_url": null, - "track_number": 23, - "type": "track", - "uri": "spotify:track:6Cyi6njkifIohvyFNKZivX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 175626, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Dv67yeONf1kE0qHQim1bR" - }, - "href": "https://api.spotify.com/v1/tracks/0Dv67yeONf1kE0qHQim1bR", - "id": "0Dv67yeONf1kE0qHQim1bR", - "name": "Baller - Abor Remix", - "preview_url": null, - "track_number": 24, - "type": "track", - "uri": "spotify:track:0Dv67yeONf1kE0qHQim1bR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5wxw2CQKTIOSkPFJbTYVzl" - }, - "href": "https://api.spotify.com/v1/artists/5wxw2CQKTIOSkPFJbTYVzl", - "id": "5wxw2CQKTIOSkPFJbTYVzl", - "name": "nowifi", - "type": "artist", - "uri": "spotify:artist:5wxw2CQKTIOSkPFJbTYVzl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 167183, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1v7J9ZAxKqbuLpvMciORtw" - }, - "href": "https://api.spotify.com/v1/tracks/1v7J9ZAxKqbuLpvMciORtw", - "id": "1v7J9ZAxKqbuLpvMciORtw", - "name": "Baller - nowifi Remix", - "preview_url": null, - "track_number": 25, - "type": "track", - "uri": "spotify:track:1v7J9ZAxKqbuLpvMciORtw", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/7otRU4xTCpu0QUKW3ekNd5", + "id": "7otRU4xTCpu0QUKW3ekNd5", + "type": "track", + "uri": "spotify:track:7otRU4xTCpu0QUKW3ekNd5" + }, + "name": "One Track Mind (feat. RILEASA)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:5RgB1e7a1KHrXrfT3UuPCc", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "copyrights": [ - { - "text": "(P) 2025 Jive Germany a division of Sony Music Entertainment Germany GmbH", - "type": "P" - } - ], - "external_ids": { "upc": "196872930788" }, - "genres": [], - "label": "Jive", - "popularity": 43 - } - }, - { - "added_at": "2025-04-24T11:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jNkaOXasoc7RsxdchvEVq" + }, + "href": "https://api.spotify.com/v1/artists/3jNkaOXasoc7RsxdchvEVq", + "id": "3jNkaOXasoc7RsxdchvEVq", + "name": "Chase & Status", + "type": "artist", + "uri": "spotify:artist:3jNkaOXasoc7RsxdchvEVq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 164914, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" + }, + "href": "https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC", + "id": "3VFaV7Mw0di4XFE84eHnrC", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/4zWfJm5YZnk7ML3mRRi0Xo" + "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" }, - "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo", - "id": "4zWfJm5YZnk7ML3mRRi0Xo", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273818831d1d40b4b5a53a70714", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02818831d1d40b4b5a53a70714", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851818831d1d40b4b5a53a70714", - "height": 64, - "width": 64 - } - ], - "name": "Sadgirl", - "release_date": "2025-04-25", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4zWfJm5YZnk7ML3mRRi0Xo", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/4zWfJm5YZnk7ML3mRRi0Xo/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 173197, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3jowQzeDQU4dIAKQg7ahXh" - }, - "href": "https://api.spotify.com/v1/tracks/3jowQzeDQU4dIAKQg7ahXh", - "id": "3jowQzeDQU4dIAKQg7ahXh", - "name": "Vertigo", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3jowQzeDQU4dIAKQg7ahXh", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 168837, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5f2nYBpaCRJ7rFUplXbn3g" - }, - "href": "https://api.spotify.com/v1/tracks/5f2nYBpaCRJ7rFUplXbn3g", - "id": "5f2nYBpaCRJ7rFUplXbn3g", - "name": "Sadgirl", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:5f2nYBpaCRJ7rFUplXbn3g", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 169015, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7CCwnjE3M1Xe9Jo95my7nh" - }, - "href": "https://api.spotify.com/v1/tracks/7CCwnjE3M1Xe9Jo95my7nh", - "id": "7CCwnjE3M1Xe9Jo95my7nh", - "name": "Jelly Tot", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:7CCwnjE3M1Xe9Jo95my7nh", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" - }, - "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", - "id": "6NvsbUgzHkjZK3ZUEWui41", - "name": "Kai Bosch", - "type": "artist", - "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 185240, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3BpnmRfLj1jmc3yGl2VnsU" - }, - "href": "https://api.spotify.com/v1/tracks/3BpnmRfLj1jmc3yGl2VnsU", - "id": "3BpnmRfLj1jmc3yGl2VnsU", - "name": "Hello, Anxiety", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:3BpnmRfLj1jmc3yGl2VnsU", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 131641, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5hCKmWQaypyWXpUrkN1V43" - }, - "href": "https://api.spotify.com/v1/tracks/5hCKmWQaypyWXpUrkN1V43", - "id": "5hCKmWQaypyWXpUrkN1V43", - "name": "I Need a Man", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:5hCKmWQaypyWXpUrkN1V43", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 195192, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7aDc1BsrCR6qArZ5opHGSB" - }, - "href": "https://api.spotify.com/v1/tracks/7aDc1BsrCR6qArZ5opHGSB", - "id": "7aDc1BsrCR6qArZ5opHGSB", - "name": "Liar Liar", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:7aDc1BsrCR6qArZ5opHGSB", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220948, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1GtFbMSPJV0cr7P7T51tou" - }, - "href": "https://api.spotify.com/v1/tracks/1GtFbMSPJV0cr7P7T51tou", - "id": "1GtFbMSPJV0cr7P7T51tou", - "name": "Kingpin", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:1GtFbMSPJV0cr7P7T51tou", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189183, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1YI5taPXjg9yX8DdjTcNxT" - }, - "href": "https://api.spotify.com/v1/tracks/1YI5taPXjg9yX8DdjTcNxT", - "id": "1YI5taPXjg9yX8DdjTcNxT", - "name": "Future Us", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:1YI5taPXjg9yX8DdjTcNxT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 172079, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7gdDCxXKSLh1hFI95rQtfs" - }, - "href": "https://api.spotify.com/v1/tracks/7gdDCxXKSLh1hFI95rQtfs", - "id": "7gdDCxXKSLh1hFI95rQtfs", - "name": "American Dream", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:7gdDCxXKSLh1hFI95rQtfs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190568, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6GqOX1HgsKNF3tNa7mO1Sa" - }, - "href": "https://api.spotify.com/v1/tracks/6GqOX1HgsKNF3tNa7mO1Sa", - "id": "6GqOX1HgsKNF3tNa7mO1Sa", - "name": "Jean (Two Ships)", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:6GqOX1HgsKNF3tNa7mO1Sa", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z6JjrrJKNLilqlx8mlxcc" - }, - "href": "https://api.spotify.com/v1/artists/2z6JjrrJKNLilqlx8mlxcc", - "id": "2z6JjrrJKNLilqlx8mlxcc", - "name": "Litany", - "type": "artist", - "uri": "spotify:artist:2z6JjrrJKNLilqlx8mlxcc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197739, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/38TssrSNLgbJXidJ07VtFl" - }, - "href": "https://api.spotify.com/v1/tracks/38TssrSNLgbJXidJ07VtFl", - "id": "38TssrSNLgbJXidJ07VtFl", - "name": "Alright", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:38TssrSNLgbJXidJ07VtFl", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/5IKc3FhDTzE6LvgLaB1Q6M", + "id": "5IKc3FhDTzE6LvgLaB1Q6M", + "type": "track", + "uri": "spotify:track:5IKc3FhDTzE6LvgLaB1Q6M" + }, + "name": "Disconnect", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3VFaV7Mw0di4XFE84eHnrC", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179015, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" + }, + "href": "https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA", + "id": "0S9laeO22k8rgM1PqZtgAA", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" }, - "copyrights": [ - { - "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", - "type": "C" - }, - { - "text": "2025 Litany under exclusive license to Nettwerk Music Group Inc.", - "type": "P" - } - ], - "external_ids": { "upc": "067003168052" }, - "genres": [], - "label": "Nettwerk Music Group", - "popularity": 24 + "href": "https://api.spotify.com/v1/tracks/74EzvNoqJdoBwIap3o8Ycb", + "id": "74EzvNoqJdoBwIap3o8Ycb", + "type": "track", + "uri": "spotify:track:74EzvNoqJdoBwIap3o8Ycb" + }, + "name": "Right Here", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:0S9laeO22k8rgM1PqZtgAA", + "is_local": false } + ] }, - { - "added_at": "2024-10-17T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6mEZu9pcOyIcUSmWTofkaj" + "copyrights": [ + { + "text": "\u00a9 2024 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2024 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602465082463" }, + "genres": [], + "label": "Polydor Records", + "popularity": 0 + } + }, + { + "added_at": "2022-11-07T16:59:34Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ZzRJDpsGzs8wkkI0w6F8G" + }, + "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G", + "id": "1ZzRJDpsGzs8wkkI0w6F8G", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128", + "height": 64, + "width": 64 + } + ], + "name": "Stiekem ft. Goldband", + "release_date": "2022-11-04", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1ZzRJDpsGzs8wkkI0w6F8G", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" + }, + "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", + "id": "5vmwWgrlwCfHm1P0vdDFbU", + "name": "Maan", + "type": "artist", + "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" + }, + "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", + "id": "5vmwWgrlwCfHm1P0vdDFbU", + "name": "Maan", + "type": "artist", + "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" }, - "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj", - "id": "6mEZu9pcOyIcUSmWTofkaj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273eb7e716f9775588178a8abe5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02eb7e716f9775588178a8abe5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851eb7e716f9775588178a8abe5", - "height": 64, - "width": 64 - } - ], - "name": "3AM (LA LA LA)", - "release_date": "2024-10-18", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6mEZu9pcOyIcUSmWTofkaj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6mEZu9pcOyIcUSmWTofkaj/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 215221, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1qVq8dBvDdpz6WhZcaGxy5" - }, - "href": "https://api.spotify.com/v1/tracks/1qVq8dBvDdpz6WhZcaGxy5", - "id": "1qVq8dBvDdpz6WhZcaGxy5", - "name": "WHO KNOWS WHAT YOU\u2019LL FIND?", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1qVq8dBvDdpz6WhZcaGxy5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 155343, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4LJOC3L3wmOqX7jxC7DNTb" - }, - "href": "https://api.spotify.com/v1/tracks/4LJOC3L3wmOqX7jxC7DNTb", - "id": "4LJOC3L3wmOqX7jxC7DNTb", - "name": "I CAN\u2019T LOSE YOU", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:4LJOC3L3wmOqX7jxC7DNTb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 224833, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0dIwVz7r4zpaZ3Yw2nU5We" - }, - "href": "https://api.spotify.com/v1/tracks/0dIwVz7r4zpaZ3Yw2nU5We", - "id": "0dIwVz7r4zpaZ3Yw2nU5We", - "name": "CONTROL", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0dIwVz7r4zpaZ3Yw2nU5We", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 195929, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6ZmKtSbuCPrRWhrMltR3Pc" - }, - "href": "https://api.spotify.com/v1/tracks/6ZmKtSbuCPrRWhrMltR3Pc", - "id": "6ZmKtSbuCPrRWhrMltR3Pc", - "name": "SO WHAT", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6ZmKtSbuCPrRWhrMltR3Pc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 213794, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1s4f5ImHiBmm9OzgGRSLw3" - }, - "href": "https://api.spotify.com/v1/tracks/1s4f5ImHiBmm9OzgGRSLw3", - "id": "1s4f5ImHiBmm9OzgGRSLw3", - "name": "BREAKBEAT", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1s4f5ImHiBmm9OzgGRSLw3", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 379101, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/07Znaf6hyuAoxiqPXYC58L" - }, - "href": "https://api.spotify.com/v1/tracks/07Znaf6hyuAoxiqPXYC58L", - "id": "07Znaf6hyuAoxiqPXYC58L", - "name": "SICKO", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:07Znaf6hyuAoxiqPXYC58L", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0iUw5KL7NRlfKK3tZJNK9b" - }, - "href": "https://api.spotify.com/v1/artists/0iUw5KL7NRlfKK3tZJNK9b", - "id": "0iUw5KL7NRlfKK3tZJNK9b", - "name": "Sweetie Irie", - "type": "artist", - "uri": "spotify:artist:0iUw5KL7NRlfKK3tZJNK9b" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 251537, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3PISUiCZILLzJJSp3c3GhE" - }, - "href": "https://api.spotify.com/v1/tracks/3PISUiCZILLzJJSp3c3GhE", - "id": "3PISUiCZILLzJJSp3c3GhE", - "name": "REAL MOVE TOUCH", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:3PISUiCZILLzJJSp3c3GhE", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 245358, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4qXd31Nk2ifvRNuC1cUwtd" - }, - "href": "https://api.spotify.com/v1/tracks/4qXd31Nk2ifvRNuC1cUwtd", - "id": "4qXd31Nk2ifvRNuC1cUwtd", - "name": "FAR OUT", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:4qXd31Nk2ifvRNuC1cUwtd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207619, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3nXYo1X0TzTSOOhumtp1r4" - }, - "href": "https://api.spotify.com/v1/tracks/3nXYo1X0TzTSOOhumtp1r4", - "id": "3nXYo1X0TzTSOOhumtp1r4", - "name": "JANET", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:3nXYo1X0TzTSOOhumtp1r4", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 173731, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4RLg7ZKJU51uhPPxWqS0XT" - }, - "href": "https://api.spotify.com/v1/tracks/4RLg7ZKJU51uhPPxWqS0XT", - "id": "4RLg7ZKJU51uhPPxWqS0XT", - "name": "SO TRU", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4RLg7ZKJU51uhPPxWqS0XT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 274176, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Ghkq3LC0vhyBxaHQgZi7a" - }, - "href": "https://api.spotify.com/v1/tracks/6Ghkq3LC0vhyBxaHQgZi7a", - "id": "6Ghkq3LC0vhyBxaHQgZi7a", - "name": "WRONG IDEA", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:6Ghkq3LC0vhyBxaHQgZi7a", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 320432, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0VFQUkXL2wtfAh0W4jSJGM" - }, - "href": "https://api.spotify.com/v1/tracks/0VFQUkXL2wtfAh0W4jSJGM", - "id": "0VFQUkXL2wtfAh0W4jSJGM", - "name": "3AM (LA LA LA)", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:0VFQUkXL2wtfAh0W4jSJGM", - "is_local": false - } - ] + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "name": "Goldband", + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203437, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" + }, + "href": "https://api.spotify.com/v1/tracks/0kINWIY7BToJACjRzIOqsz", + "id": "0kINWIY7BToJACjRzIOqsz", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" }, - "copyrights": [ - { - "text": "\u00a9 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", - "type": "C" - }, - { - "text": "\u2117 2024 Confidence Man, under exclusive licence to Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602465788211" }, - "genres": [], - "label": "Polydor Records", - "popularity": 40 + "href": "https://api.spotify.com/v1/tracks/1ulgMAx95xb3N33SMklfG3", + "id": "1ulgMAx95xb3N33SMklfG3", + "type": "track", + "uri": "spotify:track:1ulgMAx95xb3N33SMklfG3" + }, + "name": "Stiekem", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0kINWIY7BToJACjRzIOqsz", + "is_local": false } + ] }, - null, - { - "added_at": "2024-09-05T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 20, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3DQueEd1Ft9PHWgovDzPKh" + "copyrights": [ + { "text": "2022 8ball Music", "type": "C" }, + { "text": "2022 8ball Music", "type": "P" } + ], + "external_ids": { "upc": "8717774691618" }, + "genres": [], + "label": "8ball Music", + "popularity": 9 + } + }, + { + "added_at": "2021-08-06T10:07:29Z", + "album": { + "album_type": "single", + "total_tracks": 4, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/16mh2RvDOwlv2gw7BFElFf" + }, + "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf", + "id": "16mh2RvDOwlv2gw7BFElFf", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590", + "height": 64, + "width": 64 + } + ], + "name": "Business (with Ella Eyre)", + "release_date": "2021-08-06", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:16mh2RvDOwlv2gw7BFElFf", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" + }, + "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", + "id": "66TrUkUZ3RM29dqeDQRgyA", + "name": "Ella Eyre", + "type": "artist", + "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 4, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh", - "id": "3DQueEd1Ft9PHWgovDzPKh", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2739574df129a4a2f4fa4990286", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e029574df129a4a2f4fa4990286", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048519574df129a4a2f4fa4990286", - "height": 64, - "width": 64 - } - ], - "name": "ten days", - "release_date": "2024-09-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3DQueEd1Ft9PHWgovDzPKh", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/3DQueEd1Ft9PHWgovDzPKh/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 20, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 30857, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/00nDbqJkHBGUFdim9M0xGc" - }, - "href": "https://api.spotify.com/v1/tracks/00nDbqJkHBGUFdim9M0xGc", - "id": "00nDbqJkHBGUFdim9M0xGc", - "name": ".one", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:00nDbqJkHBGUFdim9M0xGc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6l7R1jntPahGxwJt7Tky8h" - }, - "href": "https://api.spotify.com/v1/artists/6l7R1jntPahGxwJt7Tky8h", - "id": "6l7R1jntPahGxwJt7Tky8h", - "name": "Obongjayar", - "type": "artist", - "uri": "spotify:artist:6l7R1jntPahGxwJt7Tky8h" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220653, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1rf4SX7dduNbrNnOmupLzi" - }, - "href": "https://api.spotify.com/v1/tracks/1rf4SX7dduNbrNnOmupLzi", - "id": "1rf4SX7dduNbrNnOmupLzi", - "name": "adore u", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:1rf4SX7dduNbrNnOmupLzi", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 10670, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0lt9clHEwYyheuC9rik9UH" - }, - "href": "https://api.spotify.com/v1/tracks/0lt9clHEwYyheuC9rik9UH", - "id": "0lt9clHEwYyheuC9rik9UH", - "name": ".two", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0lt9clHEwYyheuC9rik9UH", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6Ja6zFB5d7XRihhfMo6KzY" - }, - "href": "https://api.spotify.com/v1/artists/6Ja6zFB5d7XRihhfMo6KzY", - "id": "6Ja6zFB5d7XRihhfMo6KzY", - "name": "Jozzy", - "type": "artist", - "uri": "spotify:artist:6Ja6zFB5d7XRihhfMo6KzY" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6twB0uYXJYW9t5GHfYaQ3i" - }, - "href": "https://api.spotify.com/v1/tracks/6twB0uYXJYW9t5GHfYaQ3i", - "id": "6twB0uYXJYW9t5GHfYaQ3i", - "name": "ten", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6twB0uYXJYW9t5GHfYaQ3i", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15034, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6G7TRmzTt9tnrM0QqSVpJW" - }, - "href": "https://api.spotify.com/v1/tracks/6G7TRmzTt9tnrM0QqSVpJW", - "id": "6G7TRmzTt9tnrM0QqSVpJW", - "name": ".three", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6G7TRmzTt9tnrM0QqSVpJW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2WoVwexZuODvclzULjPQtm" - }, - "href": "https://api.spotify.com/v1/artists/2WoVwexZuODvclzULjPQtm", - "id": "2WoVwexZuODvclzULjPQtm", - "name": "Sampha", - "type": "artist", - "uri": "spotify:artist:2WoVwexZuODvclzULjPQtm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 214469, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4IHblO52meh2jwqES1BA7X" - }, - "href": "https://api.spotify.com/v1/tracks/4IHblO52meh2jwqES1BA7X", - "id": "4IHblO52meh2jwqES1BA7X", - "name": "fear less", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:4IHblO52meh2jwqES1BA7X", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 9856, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1wU9pfdw6ht8HKfxz6wMNq" - }, - "href": "https://api.spotify.com/v1/tracks/1wU9pfdw6ht8HKfxz6wMNq", - "id": "1wU9pfdw6ht8HKfxz6wMNq", - "name": ".four", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:1wU9pfdw6ht8HKfxz6wMNq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PLsMEk2DCRVlVL2a9aZAv" - }, - "href": "https://api.spotify.com/v1/artists/4PLsMEk2DCRVlVL2a9aZAv", - "id": "4PLsMEk2DCRVlVL2a9aZAv", - "name": "SOAK", - "type": "artist", - "uri": "spotify:artist:4PLsMEk2DCRVlVL2a9aZAv" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 260997, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2D9a9CXeo3HFtVeaNlzp4a" - }, - "href": "https://api.spotify.com/v1/tracks/2D9a9CXeo3HFtVeaNlzp4a", - "id": "2D9a9CXeo3HFtVeaNlzp4a", - "name": "just stand there", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:2D9a9CXeo3HFtVeaNlzp4a", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15254, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3vTHKAYJy0hY1OkVv1qLNM" - }, - "href": "https://api.spotify.com/v1/tracks/3vTHKAYJy0hY1OkVv1qLNM", - "id": "3vTHKAYJy0hY1OkVv1qLNM", - "name": ".five", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:3vTHKAYJy0hY1OkVv1qLNM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226677, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1qfJ6OvxrspQTmcvdIEoX6" - }, - "href": "https://api.spotify.com/v1/tracks/1qfJ6OvxrspQTmcvdIEoX6", - "id": "1qfJ6OvxrspQTmcvdIEoX6", - "name": "places to be", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:1qfJ6OvxrspQTmcvdIEoX6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 28836, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/13H2XgH3k8SEptaoD5qeLG" - }, - "href": "https://api.spotify.com/v1/tracks/13H2XgH3k8SEptaoD5qeLG", - "id": "13H2XgH3k8SEptaoD5qeLG", - "name": ".six", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:13H2XgH3k8SEptaoD5qeLG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/59MDSNIYoOY0WRYuodzJPD" - }, - "href": "https://api.spotify.com/v1/artists/59MDSNIYoOY0WRYuodzJPD", - "id": "59MDSNIYoOY0WRYuodzJPD", - "name": "Duskus", - "type": "artist", - "uri": "spotify:artist:59MDSNIYoOY0WRYuodzJPD" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" - }, - "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", - "id": "7Eu1txygG6nJttLHbZdQOh", - "name": "Four Tet", - "type": "artist", - "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" - }, - "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", - "id": "3pK4EcflBpG1Kpmjk5LK2R", - "name": "Joy Anonymous", - "type": "artist", - "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 453068, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3i9QKRl5Ql3pgUfNdYBVTc" - }, - "href": "https://api.spotify.com/v1/tracks/3i9QKRl5Ql3pgUfNdYBVTc", - "id": "3i9QKRl5Ql3pgUfNdYBVTc", - "name": "glow", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:3i9QKRl5Ql3pgUfNdYBVTc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 31749, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2OLH9ukOFDVBMuVUuy2sFW" - }, - "href": "https://api.spotify.com/v1/tracks/2OLH9ukOFDVBMuVUuy2sFW", - "id": "2OLH9ukOFDVBMuVUuy2sFW", - "name": ".seven", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:2OLH9ukOFDVBMuVUuy2sFW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220656, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3DzWFxyzsAVblVNndiU9CW" - }, - "href": "https://api.spotify.com/v1/tracks/3DzWFxyzsAVblVNndiU9CW", - "id": "3DzWFxyzsAVblVNndiU9CW", - "name": "i saw you", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:3DzWFxyzsAVblVNndiU9CW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 15037, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1aTcAf7K1ym8lBcuu8nmJA" - }, - "href": "https://api.spotify.com/v1/tracks/1aTcAf7K1ym8lBcuu8nmJA", - "id": "1aTcAf7K1ym8lBcuu8nmJA", - "name": ".eight", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:1aTcAf7K1ym8lBcuu8nmJA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5s6TJEuHTr9GR894wc6VfP" - }, - "href": "https://api.spotify.com/v1/artists/5s6TJEuHTr9GR894wc6VfP", - "id": "5s6TJEuHTr9GR894wc6VfP", - "name": "Emmylou Harris", - "type": "artist", - "uri": "spotify:artist:5s6TJEuHTr9GR894wc6VfP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200737, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4S05mkyTtAiWy5l4umch0X" - }, - "href": "https://api.spotify.com/v1/tracks/4S05mkyTtAiWy5l4umch0X", - "id": "4S05mkyTtAiWy5l4umch0X", - "name": "where will i be", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:4S05mkyTtAiWy5l4umch0X", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 19060, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5aNwAqN5Gk5oZIwW5KfhXN" - }, - "href": "https://api.spotify.com/v1/tracks/5aNwAqN5Gk5oZIwW5KfhXN", - "id": "5aNwAqN5Gk5oZIwW5KfhXN", - "name": ".nine", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:5aNwAqN5Gk5oZIwW5KfhXN", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3pK4EcflBpG1Kpmjk5LK2R" - }, - "href": "https://api.spotify.com/v1/artists/3pK4EcflBpG1Kpmjk5LK2R", - "id": "3pK4EcflBpG1Kpmjk5LK2R", - "name": "Joy Anonymous", - "type": "artist", - "uri": "spotify:artist:3pK4EcflBpG1Kpmjk5LK2R" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 344068, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4A8tKYA7gwZzQ4jVwIv1sv" - }, - "href": "https://api.spotify.com/v1/tracks/4A8tKYA7gwZzQ4jVwIv1sv", - "id": "4A8tKYA7gwZzQ4jVwIv1sv", - "name": "peace u need", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:4A8tKYA7gwZzQ4jVwIv1sv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 29540, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2feEZkLf7dZUueeVBNsdor" - }, - "href": "https://api.spotify.com/v1/tracks/2feEZkLf7dZUueeVBNsdor", - "id": "2feEZkLf7dZUueeVBNsdor", - "name": ".ten", - "preview_url": null, - "track_number": 19, - "type": "track", - "uri": "spotify:track:2feEZkLf7dZUueeVBNsdor", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3IunaFjvNKj98JW89JYv9u" - }, - "href": "https://api.spotify.com/v1/artists/3IunaFjvNKj98JW89JYv9u", - "id": "3IunaFjvNKj98JW89JYv9u", - "name": "The Japanese House", - "type": "artist", - "uri": "spotify:artist:3IunaFjvNKj98JW89JYv9u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6M98IZJK2tx6x2YVyHua9K" - }, - "href": "https://api.spotify.com/v1/artists/6M98IZJK2tx6x2YVyHua9K", - "id": "6M98IZJK2tx6x2YVyHua9K", - "name": "Scott Hardkiss", - "type": "artist", - "uri": "spotify:artist:6M98IZJK2tx6x2YVyHua9K" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 314007, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/61pyjiweMDS1h930OgS0XO" - }, - "href": "https://api.spotify.com/v1/tracks/61pyjiweMDS1h930OgS0XO", - "id": "61pyjiweMDS1h930OgS0XO", - "name": "backseat", - "preview_url": null, - "track_number": 20, - "type": "track", - "uri": "spotify:track:61pyjiweMDS1h930OgS0XO", - "is_local": false - } - ] + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" + }, + "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", + "id": "66TrUkUZ3RM29dqeDQRgyA", + "name": "Ella Eyre", + "type": "artist", + "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197720, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw" + }, + "href": "https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw", + "id": "7f3oSqQXBCUiWtR0m7ieRw", + "name": "Business (with Ella Eyre)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7f3oSqQXBCUiWtR0m7ieRw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" }, - "copyrights": [ - { - "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u00a9 2024 Fred Gibson", - "type": "C" - }, - { - "text": "Under exclusive licence to Warner Music UK Limited. An Atlantic Records UK., \u2117 2024 Fred Gibson", - "type": "P" - } - ], - "external_ids": { "upc": "5021732457110" }, - "genres": [], - "label": "Atlantic Records UK", - "popularity": 65 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" + }, + "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", + "id": "1Cs0zKBU1kc0i8ypK3B9ai", + "name": "David Guetta", + "type": "artist", + "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 161386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l" + }, + "href": "https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l", + "id": "6YkclKF41aboSB5Sf4p15l", + "name": "Remember (and David Guetta)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6YkclKF41aboSB5Sf4p15l", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1IueXOQyABrMOprrzwQJWN" + }, + "href": "https://api.spotify.com/v1/artists/1IueXOQyABrMOprrzwQJWN", + "id": "1IueXOQyABrMOprrzwQJWN", + "name": "Sigala", + "type": "artist", + "uri": "spotify:artist:1IueXOQyABrMOprrzwQJWN" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 193360, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk" + }, + "href": "https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk", + "id": "2N8HEioDelArgvoInf5pkk", + "name": "Heaven On My Mind (with Sigala)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2N8HEioDelArgvoInf5pkk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" + }, + "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", + "id": "4EPJlUEBy49EX1wuFOvtjK", + "name": "Becky Hill", + "type": "artist", + "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/26OrZl5U3VNGHU9qUj8EcM" + }, + "href": "https://api.spotify.com/v1/artists/26OrZl5U3VNGHU9qUj8EcM", + "id": "26OrZl5U3VNGHU9qUj8EcM", + "name": "Shift K3Y", + "type": "artist", + "uri": "spotify:artist:26OrZl5U3VNGHU9qUj8EcM" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 198493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx" + }, + "href": "https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx", + "id": "4RJ9DfYp0sWhPWUjIXKJUx", + "name": "Better Off Without You (feat. Shift K3Y)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:4RJ9DfYp0sWhPWUjIXKJUx", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2021 Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2021 Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602438672417" }, + "genres": [], + "label": "Polydor Records", + "popularity": 18 + } + }, + { + "added_at": "2019-09-17T07:00:48Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1KPqoSV4Rs89YfgAwbLROr" + }, + "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr", + "id": "1KPqoSV4Rs89YfgAwbLROr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e", + "height": 64, + "width": 64 + } + ], + "name": "What's Love", + "release_date": "2019-09-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1KPqoSV4Rs89YfgAwbLROr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176727, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk" + }, + "href": "https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk", + "id": "21Z6lY56DuaKBZBkPKK4Nk", + "name": "What's Love", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:21Z6lY56DuaKBZBkPKK4Nk", + "is_local": false } + ] + }, + "copyrights": [ + { "text": "2019 Monstercat", "type": "C" }, + { "text": "2019 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "703980546604" }, + "genres": [], + "label": "Monstercat", + "popularity": 7 + } + }, + { + "added_at": "2019-04-05T07:08:25Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6OSLjWXJHlMRfQwM0HkOhQ" }, - { - "added_at": "2024-08-15T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ", + "id": "6OSLjWXJHlMRfQwM0HkOhQ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e", + "height": 64, + "width": 64 + } + ], + "name": "Remember You", + "release_date": "2019-04-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6OSLjWXJHlMRfQwM0HkOhQ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" + }, + "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", + "id": "1BAdSa5cdtCNLbvT7gWmtJ", + "name": "Conro", + "type": "artist", + "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 189000, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" + }, + "href": "https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY", + "id": "796JqxZ3o0ZH6OllNRDuTY", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/27ynHS80OjICdw3qLNMgQP" + "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" }, - "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP", - "id": "27ynHS80OjICdw3qLNMgQP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f6e25db6bc1a1f9e5fb3accd", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f6e25db6bc1a1f9e5fb3accd", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f6e25db6bc1a1f9e5fb3accd", - "height": 64, - "width": 64 - } - ], - "name": "Paradise State of Mind", - "release_date": "2024-08-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:27ynHS80OjICdw3qLNMgQP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/27ynHS80OjICdw3qLNMgQP/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189099, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6qtGeawfnmQMUWyQ95LdIL" - }, - "href": "https://api.spotify.com/v1/tracks/6qtGeawfnmQMUWyQ95LdIL", - "id": "6qtGeawfnmQMUWyQ95LdIL", - "name": "See You In The Afterlife", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6qtGeawfnmQMUWyQ95LdIL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 259252, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6r9GzPEdq4bGp507oxt2iZ" - }, - "href": "https://api.spotify.com/v1/tracks/6r9GzPEdq4bGp507oxt2iZ", - "id": "6r9GzPEdq4bGp507oxt2iZ", - "name": "Lost In Space", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:6r9GzPEdq4bGp507oxt2iZ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 153005, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0CUojUDoPZvjKqPPLHaOTm" - }, - "href": "https://api.spotify.com/v1/tracks/0CUojUDoPZvjKqPPLHaOTm", - "id": "0CUojUDoPZvjKqPPLHaOTm", - "name": "Take Me Back", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0CUojUDoPZvjKqPPLHaOTm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 274446, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/090Vhdep7tK2kXLy2M1vLj" - }, - "href": "https://api.spotify.com/v1/tracks/090Vhdep7tK2kXLy2M1vLj", - "id": "090Vhdep7tK2kXLy2M1vLj", - "name": "Let Go", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:090Vhdep7tK2kXLy2M1vLj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219300, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6QHE0tQs8NFE3DGDldP1DJ" - }, - "href": "https://api.spotify.com/v1/tracks/6QHE0tQs8NFE3DGDldP1DJ", - "id": "6QHE0tQs8NFE3DGDldP1DJ", - "name": "Feed Me", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6QHE0tQs8NFE3DGDldP1DJ", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 288544, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2cIP5wh1Ala2rWVwTOgg4n" - }, - "href": "https://api.spotify.com/v1/tracks/2cIP5wh1Ala2rWVwTOgg4n", - "id": "2cIP5wh1Ala2rWVwTOgg4n", - "name": "Paradise State Of Mind", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:2cIP5wh1Ala2rWVwTOgg4n", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 328024, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5gygubFSFXfLDhoMnpAhzP" - }, - "href": "https://api.spotify.com/v1/tracks/5gygubFSFXfLDhoMnpAhzP", - "id": "5gygubFSFXfLDhoMnpAhzP", - "name": "Glitchzig", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:5gygubFSFXfLDhoMnpAhzP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 253257, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/08vuNWfV1WOndL3yMetfXd" - }, - "href": "https://api.spotify.com/v1/tracks/08vuNWfV1WOndL3yMetfXd", - "id": "08vuNWfV1WOndL3yMetfXd", - "name": "The Holy Shangri-La", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:08vuNWfV1WOndL3yMetfXd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183139, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0wyQNzcMUYFec1B19hu6pK" - }, - "href": "https://api.spotify.com/v1/tracks/0wyQNzcMUYFec1B19hu6pK", - "id": "0wyQNzcMUYFec1B19hu6pK", - "name": "Sometimes I Wanna Be Bad", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:0wyQNzcMUYFec1B19hu6pK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204111, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1G2bNCn8x1WrbeIBBvfQZS" - }, - "href": "https://api.spotify.com/v1/tracks/1G2bNCn8x1WrbeIBBvfQZS", - "id": "1G2bNCn8x1WrbeIBBvfQZS", - "name": "Chasing Low Vibrations", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:1G2bNCn8x1WrbeIBBvfQZS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7gP3bB2nilZXLfPHJhMdvc" - }, - "href": "https://api.spotify.com/v1/artists/7gP3bB2nilZXLfPHJhMdvc", - "id": "7gP3bB2nilZXLfPHJhMdvc", - "name": "Foster The People", - "type": "artist", - "uri": "spotify:artist:7gP3bB2nilZXLfPHJhMdvc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 264919, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/60BqMpaQjhET1YZhou4t2b" - }, - "href": "https://api.spotify.com/v1/tracks/60BqMpaQjhET1YZhou4t2b", - "id": "60BqMpaQjhET1YZhou4t2b", - "name": "A Diamond To Be Born", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:60BqMpaQjhET1YZhou4t2b", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/20psIOrg7j48rGrlpFXqTI", + "id": "20psIOrg7j48rGrlpFXqTI", + "type": "track", + "uri": "spotify:track:20psIOrg7j48rGrlpFXqTI" + }, + "name": "Remember You", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:796JqxZ3o0ZH6OllNRDuTY", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2019 Monstercat", "type": "C" }, + { "text": "2019 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "703980544396" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 + } + }, + { + "added_at": "2019-03-31T02:37:47Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/79iwhS4dR28DeLyHZvuoSd" + }, + "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd", + "id": "79iwhS4dR28DeLyHZvuoSd", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2", + "height": 64, + "width": 64 + } + ], + "name": "Flourish", + "release_date": "2019-03-08", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:79iwhS4dR28DeLyHZvuoSd", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 228354, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9" + }, + "href": "https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9", + "id": "2IhMGMdJv5fBUnJCLksKj9", + "name": "Down", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2IhMGMdJv5fBUnJCLksKj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 189711, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM" + }, + "href": "https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM", + "id": "2bPB38GR1k2UxAjBzEi1DM", + "name": "Calling", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2bPB38GR1k2UxAjBzEi1DM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227549, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6" + }, + "href": "https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6", + "id": "6UeOqEdtIALSGkLPcw7Rl6", + "name": "Fourteen", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6UeOqEdtIALSGkLPcw7Rl6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201566, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM" + }, + "href": "https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM", + "id": "21alqUkGOEr7DEJncHfQqM", + "name": "Anyone", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:21alqUkGOEr7DEJncHfQqM", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200662, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH" + }, + "href": "https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH", + "id": "4PjkUwMvr7g1M45DSqlQkH", + "name": "Difference", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:4PjkUwMvr7g1M45DSqlQkH", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI" + }, + "href": "https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI", + "id": "0XZjcj8GUyWCEcnDgWDoTI", + "name": "No Worries", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0XZjcj8GUyWCEcnDgWDoTI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244935, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO" + }, + "href": "https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO", + "id": "4p0uwwMD4GIUlNZACqPJXO", + "name": "New Day", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:4p0uwwMD4GIUlNZACqPJXO", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183355, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp" + }, + "href": "https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp", + "id": "3suDoAXX6otxz0WBMHc6pp", + "name": "We Got It", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3suDoAXX6otxz0WBMHc6pp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216855, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq" + }, + "href": "https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq", + "id": "7GqsS485BuDKtkuKdAaiRq", + "name": "Be Mine", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:7GqsS485BuDKtkuKdAaiRq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255650, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M" + }, + "href": "https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M", + "id": "12o2tk8IhIDUiv9wargB8M", + "name": "Underwater", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:12o2tk8IhIDUiv9wargB8M", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV" + }, + "href": "https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV", + "id": "4AHrbiyZ2bPgcYMMh9I7UV", + "name": "You And I", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:4AHrbiyZ2bPgcYMMh9I7UV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" + }, + "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", + "id": "4hj9dun9KpnBukLv7Hgfkr", + "name": "ROND\u00c9", + "type": "artist", + "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 201932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa" + }, + "href": "https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa", + "id": "725MTKVYYrxtenlGtLfAIa", + "name": "All That Was Left", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:725MTKVYYrxtenlGtLfAIa", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", + "type": "C" + }, + { + "text": "\u2117 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", + "type": "P" + } + ], + "external_ids": { "upc": "00602577411809" }, + "genres": [], + "label": "Universal Music, a division of Universal International Music BV", + "popularity": 27 + } + }, + { + "added_at": "2018-10-04T21:11:02Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/7lsSj3qTDdmEqVvVLdoQWZ" + }, + "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ", + "id": "7lsSj3qTDdmEqVvVLdoQWZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5", + "height": 64, + "width": 64 + } + ], + "name": "Not A Love Song (King Arthur Remix)", + "release_date": "2018-02-16", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7lsSj3qTDdmEqVvVLdoQWZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" + }, + "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", + "id": "5vBrKGOjN10BMwB0cJADj4", + "name": "b\u00fclow", + "type": "artist", + "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" + }, + "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", + "id": "5vBrKGOjN10BMwB0cJADj4", + "name": "b\u00fclow", + "type": "artist", + "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" }, - "copyrights": [ - { - "text": "\u00a9 2024 Atlantic Recording Corporation", - "type": "C" - }, - { - "text": "\u2117 2024 Atlantic Recording Corporation", - "type": "P" - } - ], - "external_ids": { "upc": "075679645760" }, - "genres": [], - "label": "Atlantic Records", - "popularity": 46 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2qPxiZiD34NtmokWN6RoP2" + }, + "href": "https://api.spotify.com/v1/artists/2qPxiZiD34NtmokWN6RoP2", + "id": "2qPxiZiD34NtmokWN6RoP2", + "name": "King Topher", + "type": "artist", + "uri": "spotify:artist:2qPxiZiD34NtmokWN6RoP2" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203706, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN" + }, + "href": "https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN", + "id": "4wD34HA8cOSV32SlItkckN", + "restrictions": { "reason": "market" }, + "name": "Not A Love Song - King Arthur Remix", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4wD34HA8cOSV32SlItkckN", + "is_local": false } + ] }, - { - "added_at": "2024-08-15T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 9, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/33tDS6r9DQBx9LaYUY7wh1" + "copyrights": [ + { "text": "\u00a9 2018 Wax Records", "type": "C" }, + { "text": "\u2117 2018 Wax Records", "type": "P" } + ], + "external_ids": { "upc": "00185627002276" }, + "genres": [], + "label": "Wax Records", + "popularity": 0 + } + }, + { + "added_at": "2018-04-16T10:43:21Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6RxUo05RvVNA06y5BVGoth" + }, + "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth", + "id": "6RxUo05RvVNA06y5BVGoth", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305", + "height": 64, + "width": 64 + } + ], + "name": "This Is Not An Album", + "release_date": "2018-01-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6RxUo05RvVNA06y5BVGoth", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 169739, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY" + }, + "href": "https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY", + "id": "3tpB406UcLxAKAZMXMHlpY", + "name": "Ooh Lordy", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3tpB406UcLxAKAZMXMHlpY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203114, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25" + }, + "href": "https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25", + "id": "1tmDa0FhMn8XSOpEJbVu25", + "name": "Out Of My System", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:1tmDa0FhMn8XSOpEJbVu25", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4W48hZAnAHVOC2c8WH8pcq" + }, + "href": "https://api.spotify.com/v1/artists/4W48hZAnAHVOC2c8WH8pcq", + "id": "4W48hZAnAHVOC2c8WH8pcq", + "name": "The Temper Trap", + "type": "artist", + "uri": "spotify:artist:4W48hZAnAHVOC2c8WH8pcq" }, - "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1", - "id": "33tDS6r9DQBx9LaYUY7wh1", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27314f8dd0b16b636ea4bfa119e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0214f8dd0b16b636ea4bfa119e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485114f8dd0b16b636ea4bfa119e", - "height": 64, - "width": 64 - } - ], - "name": "Melodramatic", - "release_date": "2024-08-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:33tDS6r9DQBx9LaYUY7wh1", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/33tDS6r9DQBx9LaYUY7wh1/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 9, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 233505, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0w13ZqgFrKq7BYgsc2EKvq" - }, - "href": "https://api.spotify.com/v1/tracks/0w13ZqgFrKq7BYgsc2EKvq", - "id": "0w13ZqgFrKq7BYgsc2EKvq", - "name": "The Phoenix", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0w13ZqgFrKq7BYgsc2EKvq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190296, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/71u2sgaT6I05JY2n6aom85" - }, - "href": "https://api.spotify.com/v1/tracks/71u2sgaT6I05JY2n6aom85", - "id": "71u2sgaT6I05JY2n6aom85", - "name": "Baby Don't Give Up!", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:71u2sgaT6I05JY2n6aom85", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157712, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3QuBIm40rJbw5asM9tGjim" - }, - "href": "https://api.spotify.com/v1/tracks/3QuBIm40rJbw5asM9tGjim", - "id": "3QuBIm40rJbw5asM9tGjim", - "name": "As Soon As I Discover", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:3QuBIm40rJbw5asM9tGjim", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191740, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1AieqRevDfu4uQlhTIWJbv" - }, - "href": "https://api.spotify.com/v1/tracks/1AieqRevDfu4uQlhTIWJbv", - "id": "1AieqRevDfu4uQlhTIWJbv", - "name": "My Little One", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:1AieqRevDfu4uQlhTIWJbv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 218015, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3MTbJM0UmqrgSr9thX1JwO" - }, - "href": "https://api.spotify.com/v1/tracks/3MTbJM0UmqrgSr9thX1JwO", - "id": "3MTbJM0UmqrgSr9thX1JwO", - "name": "Love Away", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:3MTbJM0UmqrgSr9thX1JwO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203419, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5B5l5KuDqLT73R3lgDI7H4" - }, - "href": "https://api.spotify.com/v1/tracks/5B5l5KuDqLT73R3lgDI7H4", - "id": "5B5l5KuDqLT73R3lgDI7H4", - "name": "Alone In The Darkness", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:5B5l5KuDqLT73R3lgDI7H4", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 180967, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4tkOZG1F6og5NZW1uD3z7Y" - }, - "href": "https://api.spotify.com/v1/tracks/4tkOZG1F6og5NZW1uD3z7Y", - "id": "4tkOZG1F6og5NZW1uD3z7Y", - "name": "My Way", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4tkOZG1F6og5NZW1uD3z7Y", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178997, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0CtfbRy4cB2FOEsP5WIZ2s" - }, - "href": "https://api.spotify.com/v1/tracks/0CtfbRy4cB2FOEsP5WIZ2s", - "id": "0CtfbRy4cB2FOEsP5WIZ2s", - "name": "I Promise Myself", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:0CtfbRy4cB2FOEsP5WIZ2s", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/68NOjWuVYBRXzYwhel3jAl" - }, - "href": "https://api.spotify.com/v1/artists/68NOjWuVYBRXzYwhel3jAl", - "id": "68NOjWuVYBRXzYwhel3jAl", - "name": "SIAMES", - "type": "artist", - "uri": "spotify:artist:68NOjWuVYBRXzYwhel3jAl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201119, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3FZwYiZufmIgKyfqgMnpPg" - }, - "href": "https://api.spotify.com/v1/tracks/3FZwYiZufmIgKyfqgMnpPg", - "id": "3FZwYiZufmIgKyfqgMnpPg", - "name": "Post Tour Depression", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:3FZwYiZufmIgKyfqgMnpPg", - "is_local": false - } - ] + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 294005, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7" + }, + "href": "https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7", + "id": "1QBOH8W1ZhRoTOoHvfaZn7", + "name": "Sweet Disposition - Bootleg", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1QBOH8W1ZhRoTOoHvfaZn7", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209152, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub" + }, + "href": "https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub", + "id": "5zC1NaCQeETz5b0IysG5Ub", + "name": "'93", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5zC1NaCQeETz5b0IysG5Ub", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" }, - "copyrights": [ - { "text": "(C) 2024 @ SIAMES Records", "type": "C" }, - { "text": "(P) 2024 @ SIAMES Records", "type": "P" } - ], - "external_ids": { "upc": "198588562345" }, - "genres": [], - "label": "SIAM\u00c9S", - "popularity": 37 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6F3vLfyutkUhpM50G84eMt" + }, + "href": "https://api.spotify.com/v1/artists/6F3vLfyutkUhpM50G84eMt", + "id": "6F3vLfyutkUhpM50G84eMt", + "name": "Endor", + "type": "artist", + "uri": "spotify:artist:6F3vLfyutkUhpM50G84eMt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 208665, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp" + }, + "href": "https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp", + "id": "44478ajpb5DPFaWVDbKSPp", + "name": "Give It Up - Youngr x Endor", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:44478ajpb5DPFaWVDbKSPp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 185334, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu" + }, + "href": "https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu", + "id": "7MTsaNHz8evXD32xLjfjDu", + "name": "What's Next", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:7MTsaNHz8evXD32xLjfjDu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212937, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2" + }, + "href": "https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2", + "id": "1J7U9B8nPjKrLL7xDZ56F2", + "name": "Monsters", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1J7U9B8nPjKrLL7xDZ56F2", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 162652, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1" + }, + "href": "https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1", + "id": "5Zp2xpSwgUyHVtGJZ31kZ1", + "name": "Too Keen", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 241406, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5RQdeW1apwe934zbntXROv" + }, + "href": "https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv", + "id": "5RQdeW1apwe934zbntXROv", + "name": "September Sun", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5RQdeW1apwe934zbntXROv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "name": "Youngr", + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219499, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo" + }, + "href": "https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo", + "id": "4gD4ja2LvNDfCK8yeyXJwo", + "name": "Disappear", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:4gD4ja2LvNDfCK8yeyXJwo", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2018 Island Records, a division of Universal Music Operations Limited", + "type": "C" + }, + { + "text": "\u2117 2018 Island Records, a division of Universal Music Operations Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602567337072" }, + "genres": [], + "label": "Universal-Island Records Ltd.", + "popularity": 32 + } + }, + { + "added_at": "2018-03-06T23:37:54Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/0wZ3CJWOsyYAfM8q5eatk2" + }, + "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2", + "id": "0wZ3CJWOsyYAfM8q5eatk2", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273ba42f930893e0e8bdc2bfb06", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02ba42f930893e0e8bdc2bfb06", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851ba42f930893e0e8bdc2bfb06", + "height": 64, + "width": 64 + } + ], + "name": "Mind Control", + "release_date": "2017-08-02", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0wZ3CJWOsyYAfM8q5eatk2", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" + }, + "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", + "id": "12x5fAPl1U05wUHCI5O0uq", + "name": "Right-O", + "type": "artist", + "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" + }, + "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", + "id": "12x5fAPl1U05wUHCI5O0uq", + "name": "Right-O", + "type": "artist", + "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 216920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj" + }, + "href": "https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj", + "id": "2h07NImWicduAsv0P1YAJj", + "restrictions": { "reason": "market" }, + "name": "Mind Control", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2h07NImWicduAsv0P1YAJj", + "is_local": false } + ] + }, + "copyrights": [ + { "text": "2017 Independant", "type": "C" }, + { "text": "2017 Independant", "type": "P" } + ], + "external_ids": { "upc": "859721943291" }, + "genres": [], + "label": "Independant", + "popularity": 0 + } + }, + { + "added_at": "2017-10-27T06:59:09Z", + "album": { + "album_type": "album", + "total_tracks": 12, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/5hXgjTSvzx1CtmTtRlCOTZ" }, - { - "added_at": "2024-07-12T11:46:14Z", - "album": { - "album_type": "album", - "total_tracks": 17, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ", + "id": "5hXgjTSvzx1CtmTtRlCOTZ", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e", + "height": 64, + "width": 64 + } + ], + "name": "Under the Covers, Vol. II", + "release_date": "2017-10-27", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5hXgjTSvzx1CtmTtRlCOTZ", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 12, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 281845, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" + }, + "href": "https://api.spotify.com/v1/tracks/0fpkBN2LzdoK4Tye8xKHj8", + "id": "0fpkBN2LzdoK4Tye8xKHj8", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0m14dyyJemQy44KVhsKnaj" + "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" }, - "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj", - "id": "0m14dyyJemQy44KVhsKnaj", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f2c7ab344741360689e26032", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f2c7ab344741360689e26032", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f2c7ab344741360689e26032", - "height": 64, - "width": 64 - } - ], - "name": "PMO: An Atriarchy Experience", - "release_date": "2024-07-11", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0m14dyyJemQy44KVhsKnaj", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0m14dyyJemQy44KVhsKnaj/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 17, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" - }, - "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", - "id": "7xplDB5Ftf0oECpcFlKE99", - "name": "Owen CMYK", - "type": "artist", - "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 50572, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2QVz5Ndv0faqrTNyMbK6HG" - }, - "href": "https://api.spotify.com/v1/tracks/2QVz5Ndv0faqrTNyMbK6HG", - "id": "2QVz5Ndv0faqrTNyMbK6HG", - "name": "Sea Shanty", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2QVz5Ndv0faqrTNyMbK6HG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0GONM3s2unLmwUiqNneycA" - }, - "href": "https://api.spotify.com/v1/artists/0GONM3s2unLmwUiqNneycA", - "id": "0GONM3s2unLmwUiqNneycA", - "name": "M17", - "type": "artist", - "uri": "spotify:artist:0GONM3s2unLmwUiqNneycA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" - }, - "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", - "id": "6HiHuFsJrutJGZT2GAwG4L", - "name": "itsAZ", - "type": "artist", - "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 164383, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3yoGnoFkQLZa1rPbhycLgA" - }, - "href": "https://api.spotify.com/v1/tracks/3yoGnoFkQLZa1rPbhycLgA", - "id": "3yoGnoFkQLZa1rPbhycLgA", - "name": "Castle in the Sky", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3yoGnoFkQLZa1rPbhycLgA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 115000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/11CVrcm1dz0jKNHvFlbkOV" - }, - "href": "https://api.spotify.com/v1/tracks/11CVrcm1dz0jKNHvFlbkOV", - "id": "11CVrcm1dz0jKNHvFlbkOV", - "name": "Boomer Wonderland", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:11CVrcm1dz0jKNHvFlbkOV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" - }, - "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", - "id": "2RaLCgWRwHSBJySoMVZi1U", - "name": "JPecs", - "type": "artist", - "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" - }, - "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", - "id": "49X16juWaNmVsSkftsPI9u", - "name": "javid74", - "type": "artist", - "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 114622, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6nYAajfD6iXhHLTjXFV3NS" - }, - "href": "https://api.spotify.com/v1/tracks/6nYAajfD6iXhHLTjXFV3NS", - "id": "6nYAajfD6iXhHLTjXFV3NS", - "name": "3rd Place", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6nYAajfD6iXhHLTjXFV3NS", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6CPBjEKtaoONitOOYJEPu9" - }, - "href": "https://api.spotify.com/v1/artists/6CPBjEKtaoONitOOYJEPu9", - "id": "6CPBjEKtaoONitOOYJEPu9", - "name": "the_bardificer", - "type": "artist", - "uri": "spotify:artist:6CPBjEKtaoONitOOYJEPu9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1dxMexw9HIXRJX53LQZUOz" - }, - "href": "https://api.spotify.com/v1/artists/1dxMexw9HIXRJX53LQZUOz", - "id": "1dxMexw9HIXRJX53LQZUOz", - "name": "Ash Artz", - "type": "artist", - "uri": "spotify:artist:1dxMexw9HIXRJX53LQZUOz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/64zUEoPQHdOq7bYmLwZRSi" - }, - "href": "https://api.spotify.com/v1/artists/64zUEoPQHdOq7bYmLwZRSi", - "id": "64zUEoPQHdOq7bYmLwZRSi", - "name": "Luna", - "type": "artist", - "uri": "spotify:artist:64zUEoPQHdOq7bYmLwZRSi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" - }, - "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", - "id": "4PJ8Omgo9ObI7mb9COCfm8", - "name": "Hatmiss", - "type": "artist", - "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 234500, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5ZnK0HCoBv6fgdc2PMeAsV" - }, - "href": "https://api.spotify.com/v1/tracks/5ZnK0HCoBv6fgdc2PMeAsV", - "id": "5ZnK0HCoBv6fgdc2PMeAsV", - "name": "No Time Left To Lose", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:5ZnK0HCoBv6fgdc2PMeAsV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iRbwOUFx2CWZ4BRQcnP2I" - }, - "href": "https://api.spotify.com/v1/artists/3iRbwOUFx2CWZ4BRQcnP2I", - "id": "3iRbwOUFx2CWZ4BRQcnP2I", - "name": "Beautiful Panda", - "type": "artist", - "uri": "spotify:artist:3iRbwOUFx2CWZ4BRQcnP2I" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4PJ8Omgo9ObI7mb9COCfm8" - }, - "href": "https://api.spotify.com/v1/artists/4PJ8Omgo9ObI7mb9COCfm8", - "id": "4PJ8Omgo9ObI7mb9COCfm8", - "name": "Hatmiss", - "type": "artist", - "uri": "spotify:artist:4PJ8Omgo9ObI7mb9COCfm8" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 36750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2hyVHjnnm3KUO2a2Qg1eM9" - }, - "href": "https://api.spotify.com/v1/tracks/2hyVHjnnm3KUO2a2Qg1eM9", - "id": "2hyVHjnnm3KUO2a2Qg1eM9", - "name": "It's 11pm And I Can't Stop Folding Paper Like We Used To Do", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:2hyVHjnnm3KUO2a2Qg1eM9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" - }, - "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", - "id": "51Jlz1EF1XPFtEYuk642cM", - "name": "gRRiever", - "type": "artist", - "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" - }, - "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", - "id": "2STTnw4FJjSXRH6bItWl0F", - "name": "StoneEars", - "type": "artist", - "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 170854, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/593aq2LX6veq1Ft0kHvrS9" - }, - "href": "https://api.spotify.com/v1/tracks/593aq2LX6veq1Ft0kHvrS9", - "id": "593aq2LX6veq1Ft0kHvrS9", - "name": "God Gamer", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:593aq2LX6veq1Ft0kHvrS9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6RmWDtsKktRw2v9FP1SFni" - }, - "href": "https://api.spotify.com/v1/artists/6RmWDtsKktRw2v9FP1SFni", - "id": "6RmWDtsKktRw2v9FP1SFni", - "name": "yubyub", - "type": "artist", - "uri": "spotify:artist:6RmWDtsKktRw2v9FP1SFni" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/190GSW42zDnQc16U5XgULT" - }, - "href": "https://api.spotify.com/v1/artists/190GSW42zDnQc16U5XgULT", - "id": "190GSW42zDnQc16U5XgULT", - "name": "Jo the Forggie", - "type": "artist", - "uri": "spotify:artist:190GSW42zDnQc16U5XgULT" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1uLBqEv467ZgclJBIdWlCc" - }, - "href": "https://api.spotify.com/v1/artists/1uLBqEv467ZgclJBIdWlCc", - "id": "1uLBqEv467ZgclJBIdWlCc", - "name": "fluentsynth", - "type": "artist", - "uri": "spotify:artist:1uLBqEv467ZgclJBIdWlCc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 80000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5WWShf7Lo5EBnIBGdbmKN5" - }, - "href": "https://api.spotify.com/v1/tracks/5WWShf7Lo5EBnIBGdbmKN5", - "id": "5WWShf7Lo5EBnIBGdbmKN5", - "name": "Purple Streamer Battle", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:5WWShf7Lo5EBnIBGdbmKN5", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2roVEpafIk02cSCDrbhHAe" - }, - "href": "https://api.spotify.com/v1/artists/2roVEpafIk02cSCDrbhHAe", - "id": "2roVEpafIk02cSCDrbhHAe", - "name": "RhysO", - "type": "artist", - "uri": "spotify:artist:2roVEpafIk02cSCDrbhHAe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 99158, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/09WyoZ2RaNeAEcfZHtsXPR" - }, - "href": "https://api.spotify.com/v1/tracks/09WyoZ2RaNeAEcfZHtsXPR", - "id": "09WyoZ2RaNeAEcfZHtsXPR", - "name": "Lost at Sea", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:09WyoZ2RaNeAEcfZHtsXPR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" - }, - "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", - "id": "79Mo8yyzVDo0uyeAKimv7W", - "name": "RDCwest", - "type": "artist", - "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 83750, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4cWh7YO5U0JBCcAU9JUhSs" - }, - "href": "https://api.spotify.com/v1/tracks/4cWh7YO5U0JBCcAU9JUhSs", - "id": "4cWh7YO5U0JBCcAU9JUhSs", - "name": "364 Interlude", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4cWh7YO5U0JBCcAU9JUhSs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" - }, - "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", - "id": "78F4dqW3GJqRzy3EDzHfba", - "name": "Alphons", - "type": "artist", - "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2qV9yNZiOt6UlbIYJgM7k2" - }, - "href": "https://api.spotify.com/v1/artists/2qV9yNZiOt6UlbIYJgM7k2", - "id": "2qV9yNZiOt6UlbIYJgM7k2", - "name": "MyDog", - "type": "artist", - "uri": "spotify:artist:2qV9yNZiOt6UlbIYJgM7k2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" - }, - "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", - "id": "2jTOWoCU8yUCNkHN1hzSNm", - "name": "badger", - "type": "artist", - "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 141500, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5Hypfslm17ws3wZhJCpMYg" - }, - "href": "https://api.spotify.com/v1/tracks/5Hypfslm17ws3wZhJCpMYg", - "id": "5Hypfslm17ws3wZhJCpMYg", - "name": "MyDog Has Depression", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:5Hypfslm17ws3wZhJCpMYg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3SCpPBu1VKguPSQRuVYrcA" - }, - "href": "https://api.spotify.com/v1/artists/3SCpPBu1VKguPSQRuVYrcA", - "id": "3SCpPBu1VKguPSQRuVYrcA", - "name": "17artisan", - "type": "artist", - "uri": "spotify:artist:3SCpPBu1VKguPSQRuVYrcA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4yuadBe0F2IQMiuUsxywXw" - }, - "href": "https://api.spotify.com/v1/artists/4yuadBe0F2IQMiuUsxywXw", - "id": "4yuadBe0F2IQMiuUsxywXw", - "name": "REESE", - "type": "artist", - "uri": "spotify:artist:4yuadBe0F2IQMiuUsxywXw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 152000, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5xG9nNCZ3Wc2I8dpmrha8y" - }, - "href": "https://api.spotify.com/v1/tracks/5xG9nNCZ3Wc2I8dpmrha8y", - "id": "5xG9nNCZ3Wc2I8dpmrha8y", - "name": "All I Want is Paper Mario", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:5xG9nNCZ3Wc2I8dpmrha8y", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2STTnw4FJjSXRH6bItWl0F" - }, - "href": "https://api.spotify.com/v1/artists/2STTnw4FJjSXRH6bItWl0F", - "id": "2STTnw4FJjSXRH6bItWl0F", - "name": "StoneEars", - "type": "artist", - "uri": "spotify:artist:2STTnw4FJjSXRH6bItWl0F" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/51Jlz1EF1XPFtEYuk642cM" - }, - "href": "https://api.spotify.com/v1/artists/51Jlz1EF1XPFtEYuk642cM", - "id": "51Jlz1EF1XPFtEYuk642cM", - "name": "gRRiever", - "type": "artist", - "uri": "spotify:artist:51Jlz1EF1XPFtEYuk642cM" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QqFHkMOC59TL7W5hfOsiU" - }, - "href": "https://api.spotify.com/v1/artists/6QqFHkMOC59TL7W5hfOsiU", - "id": "6QqFHkMOC59TL7W5hfOsiU", - "name": "SofiUH", - "type": "artist", - "uri": "spotify:artist:6QqFHkMOC59TL7W5hfOsiU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 146000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/16VDwDiT4YNIVSyJ7RMXsv" - }, - "href": "https://api.spotify.com/v1/tracks/16VDwDiT4YNIVSyJ7RMXsv", - "id": "16VDwDiT4YNIVSyJ7RMXsv", - "name": "Confetti Line", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:16VDwDiT4YNIVSyJ7RMXsv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6qLmutNfMLFolEujWZGO6p" - }, - "href": "https://api.spotify.com/v1/artists/6qLmutNfMLFolEujWZGO6p", - "id": "6qLmutNfMLFolEujWZGO6p", - "name": "UneasyFlame", - "type": "artist", - "uri": "spotify:artist:6qLmutNfMLFolEujWZGO6p" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 141000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6RG0t1o3B6nuzc5GegyY2v" - }, - "href": "https://api.spotify.com/v1/tracks/6RG0t1o3B6nuzc5GegyY2v", - "id": "6RG0t1o3B6nuzc5GegyY2v", - "name": "The Wedding Invite", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:6RG0t1o3B6nuzc5GegyY2v", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/78F4dqW3GJqRzy3EDzHfba" - }, - "href": "https://api.spotify.com/v1/artists/78F4dqW3GJqRzy3EDzHfba", - "id": "78F4dqW3GJqRzy3EDzHfba", - "name": "Alphons", - "type": "artist", - "uri": "spotify:artist:78F4dqW3GJqRzy3EDzHfba" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178285, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/15g1itLc4kYRXjHMY8aao6" - }, - "href": "https://api.spotify.com/v1/tracks/15g1itLc4kYRXjHMY8aao6", - "id": "15g1itLc4kYRXjHMY8aao6", - "name": "Only a Legend", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:15g1itLc4kYRXjHMY8aao6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xplDB5Ftf0oECpcFlKE99" - }, - "href": "https://api.spotify.com/v1/artists/7xplDB5Ftf0oECpcFlKE99", - "id": "7xplDB5Ftf0oECpcFlKE99", - "name": "Owen CMYK", - "type": "artist", - "uri": "spotify:artist:7xplDB5Ftf0oECpcFlKE99" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2jTOWoCU8yUCNkHN1hzSNm" - }, - "href": "https://api.spotify.com/v1/artists/2jTOWoCU8yUCNkHN1hzSNm", - "id": "2jTOWoCU8yUCNkHN1hzSNm", - "name": "badger", - "type": "artist", - "uri": "spotify:artist:2jTOWoCU8yUCNkHN1hzSNm" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60Y38Hh6PlzEjjpJno5P6p" - }, - "href": "https://api.spotify.com/v1/artists/60Y38Hh6PlzEjjpJno5P6p", - "id": "60Y38Hh6PlzEjjpJno5P6p", - "name": "dropspindle", - "type": "artist", - "uri": "spotify:artist:60Y38Hh6PlzEjjpJno5P6p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6TgYktqPP6KLGoU6KxYq0s" - }, - "href": "https://api.spotify.com/v1/artists/6TgYktqPP6KLGoU6KxYq0s", - "id": "6TgYktqPP6KLGoU6KxYq0s", - "name": "FiN", - "type": "artist", - "uri": "spotify:artist:6TgYktqPP6KLGoU6KxYq0s" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 93666, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/080DOCEfEIqct0qvHwKZRe" - }, - "href": "https://api.spotify.com/v1/tracks/080DOCEfEIqct0qvHwKZRe", - "id": "080DOCEfEIqct0qvHwKZRe", - "name": "Paradise Found", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:080DOCEfEIqct0qvHwKZRe", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5B7d27dL276bbzzQ360IYN" - }, - "href": "https://api.spotify.com/v1/artists/5B7d27dL276bbzzQ360IYN", - "id": "5B7d27dL276bbzzQ360IYN", - "name": "the atriarchy", - "type": "artist", - "uri": "spotify:artist:5B7d27dL276bbzzQ360IYN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0g4gQ5TcCB3HJH6ktWjKYC" - }, - "href": "https://api.spotify.com/v1/artists/0g4gQ5TcCB3HJH6ktWjKYC", - "id": "0g4gQ5TcCB3HJH6ktWjKYC", - "name": "ask the storyteller", - "type": "artist", - "uri": "spotify:artist:0g4gQ5TcCB3HJH6ktWjKYC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2RaLCgWRwHSBJySoMVZi1U" - }, - "href": "https://api.spotify.com/v1/artists/2RaLCgWRwHSBJySoMVZi1U", - "id": "2RaLCgWRwHSBJySoMVZi1U", - "name": "JPecs", - "type": "artist", - "uri": "spotify:artist:2RaLCgWRwHSBJySoMVZi1U" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79Mo8yyzVDo0uyeAKimv7W" - }, - "href": "https://api.spotify.com/v1/artists/79Mo8yyzVDo0uyeAKimv7W", - "id": "79Mo8yyzVDo0uyeAKimv7W", - "name": "RDCwest", - "type": "artist", - "uri": "spotify:artist:79Mo8yyzVDo0uyeAKimv7W" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/49X16juWaNmVsSkftsPI9u" - }, - "href": "https://api.spotify.com/v1/artists/49X16juWaNmVsSkftsPI9u", - "id": "49X16juWaNmVsSkftsPI9u", - "name": "javid74", - "type": "artist", - "uri": "spotify:artist:49X16juWaNmVsSkftsPI9u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3ehLuD3NDXoO0lmL8cZxSw" - }, - "href": "https://api.spotify.com/v1/artists/3ehLuD3NDXoO0lmL8cZxSw", - "id": "3ehLuD3NDXoO0lmL8cZxSw", - "name": "MikesHardest", - "type": "artist", - "uri": "spotify:artist:3ehLuD3NDXoO0lmL8cZxSw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4QsvqI4nb9TpdwqOrbZcHQ" - }, - "href": "https://api.spotify.com/v1/artists/4QsvqI4nb9TpdwqOrbZcHQ", - "id": "4QsvqI4nb9TpdwqOrbZcHQ", - "name": "Sio", - "type": "artist", - "uri": "spotify:artist:4QsvqI4nb9TpdwqOrbZcHQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26z8iLfADGuSugsu63BW2s" - }, - "href": "https://api.spotify.com/v1/artists/26z8iLfADGuSugsu63BW2s", - "id": "26z8iLfADGuSugsu63BW2s", - "name": "Confuzzled", - "type": "artist", - "uri": "spotify:artist:26z8iLfADGuSugsu63BW2s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3lrmsbi43nA5svDePADyHl" - }, - "href": "https://api.spotify.com/v1/artists/3lrmsbi43nA5svDePADyHl", - "id": "3lrmsbi43nA5svDePADyHl", - "name": "froggman", - "type": "artist", - "uri": "spotify:artist:3lrmsbi43nA5svDePADyHl" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6HiHuFsJrutJGZT2GAwG4L" - }, - "href": "https://api.spotify.com/v1/artists/6HiHuFsJrutJGZT2GAwG4L", - "id": "6HiHuFsJrutJGZT2GAwG4L", - "name": "itsAZ", - "type": "artist", - "uri": "spotify:artist:6HiHuFsJrutJGZT2GAwG4L" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qsHDbno8XG3abDsyq8ztN" - }, - "href": "https://api.spotify.com/v1/artists/4qsHDbno8XG3abDsyq8ztN", - "id": "4qsHDbno8XG3abDsyq8ztN", - "name": "mango", - "type": "artist", - "uri": "spotify:artist:4qsHDbno8XG3abDsyq8ztN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 703910, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3gTWK8IiRrXjbPGgz6KD55" - }, - "href": "https://api.spotify.com/v1/tracks/3gTWK8IiRrXjbPGgz6KD55", - "id": "3gTWK8IiRrXjbPGgz6KD55", - "name": "Revelations 5:22", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:3gTWK8IiRrXjbPGgz6KD55", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/5IHEdF6MgXf40QE3RDHtzt", + "id": "5IHEdF6MgXf40QE3RDHtzt", + "type": "track", + "uri": "spotify:track:5IHEdF6MgXf40QE3RDHtzt" + }, + "name": "Africa", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0fpkBN2LzdoK4Tye8xKHj8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267838, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" + }, + "href": "https://api.spotify.com/v1/tracks/3F8hWUkNzeLUUhUZeLkV81", + "id": "3F8hWUkNzeLUUhUZeLkV81", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" }, - "copyrights": [ - { "text": "2024 Atriarchy LLC", "type": "C" }, - { "text": "2024 Atriarchy LLC", "type": "P" } - ], - "external_ids": { "upc": "198669450738" }, - "genres": [], - "label": "Atriarchy LLC", - "popularity": 20 - } - }, - { - "added_at": "2024-06-06T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/2GN3Rt5qC68aZvw8zmtTkC", + "id": "2GN3Rt5qC68aZvw8zmtTkC", + "type": "track", + "uri": "spotify:track:2GN3Rt5qC68aZvw8zmtTkC" + }, + "name": "More Than a Feeling", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3F8hWUkNzeLUUhUZeLkV81", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262142, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" + }, + "href": "https://api.spotify.com/v1/tracks/1HMNvplSW6H9PV0fuetvTr", + "id": "1HMNvplSW6H9PV0fuetvTr", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0GpklLqjWNrhropGa4XRRD" + "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" }, - "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD", - "id": "0GpklLqjWNrhropGa4XRRD", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2734d05e22092c4c9920d2567ce", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e024d05e22092c4c9920d2567ce", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048514d05e22092c4c9920d2567ce", - "height": 64, - "width": 64 - } - ], - "name": "Radiosoul", - "release_date": "2024-06-07", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0GpklLqjWNrhropGa4XRRD", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0GpklLqjWNrhropGa4XRRD/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 315327, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5YualyOibWHyram0jfyBsV" - }, - "href": "https://api.spotify.com/v1/tracks/5YualyOibWHyram0jfyBsV", - "id": "5YualyOibWHyram0jfyBsV", - "name": "Radiosoul", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5YualyOibWHyram0jfyBsV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202033, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1eVzbEkjDGzxqeFNNNrgBm" - }, - "href": "https://api.spotify.com/v1/tracks/1eVzbEkjDGzxqeFNNNrgBm", - "id": "1eVzbEkjDGzxqeFNNNrgBm", - "name": "Eyes Wide Shut", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:1eVzbEkjDGzxqeFNNNrgBm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206484, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Ttp9JrzcpNYG0upW6NKRO" - }, - "href": "https://api.spotify.com/v1/tracks/6Ttp9JrzcpNYG0upW6NKRO", - "id": "6Ttp9JrzcpNYG0upW6NKRO", - "name": "This Is Just The Beginning", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6Ttp9JrzcpNYG0upW6NKRO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212302, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2M7SyIuOuPozGJY1c6xDXL" - }, - "href": "https://api.spotify.com/v1/tracks/2M7SyIuOuPozGJY1c6xDXL", - "id": "2M7SyIuOuPozGJY1c6xDXL", - "name": "Vultures", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2M7SyIuOuPozGJY1c6xDXL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186991, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6n1VD2aPzgGbZWMvRdgSPA" - }, - "href": "https://api.spotify.com/v1/tracks/6n1VD2aPzgGbZWMvRdgSPA", - "id": "6n1VD2aPzgGbZWMvRdgSPA", - "name": "Drag", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6n1VD2aPzgGbZWMvRdgSPA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211120, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0eFTxYwpRTxyefxYlBJq6L" - }, - "href": "https://api.spotify.com/v1/tracks/0eFTxYwpRTxyefxYlBJq6L", - "id": "0eFTxYwpRTxyefxYlBJq6L", - "name": "Hello Lonely", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:0eFTxYwpRTxyefxYlBJq6L", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3yDIp0kaq9EFKe07X1X2rz" - }, - "href": "https://api.spotify.com/v1/artists/3yDIp0kaq9EFKe07X1X2rz", - "id": "3yDIp0kaq9EFKe07X1X2rz", - "name": "Nile Rodgers", - "type": "artist", - "uri": "spotify:artist:3yDIp0kaq9EFKe07X1X2rz" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 160932, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5I0qy4t38jwAPKsHS2WPnT" - }, - "href": "https://api.spotify.com/v1/tracks/5I0qy4t38jwAPKsHS2WPnT", - "id": "5I0qy4t38jwAPKsHS2WPnT", - "name": "Just A Dance", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:5I0qy4t38jwAPKsHS2WPnT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 204074, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6zJPeOzroQHmIAbhQETa3S" - }, - "href": "https://api.spotify.com/v1/tracks/6zJPeOzroQHmIAbhQETa3S", - "id": "6zJPeOzroQHmIAbhQETa3S", - "name": "Submarine", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:6zJPeOzroQHmIAbhQETa3S", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207430, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/19ZhBuPyYTzNChzoQslVTX" - }, - "href": "https://api.spotify.com/v1/tracks/19ZhBuPyYTzNChzoQslVTX", - "id": "19ZhBuPyYTzNChzoQslVTX", - "name": "Beckham", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:19ZhBuPyYTzNChzoQslVTX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 157458, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4wTOzQ92UzEBli1ubpcw3u" - }, - "href": "https://api.spotify.com/v1/tracks/4wTOzQ92UzEBli1ubpcw3u", - "id": "4wTOzQ92UzEBli1ubpcw3u", - "name": "Switch", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4wTOzQ92UzEBli1ubpcw3u", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "name": "Alfie Templeman", - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 263354, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/22sc5jdkR8FTgbGWTdOy7t" - }, - "href": "https://api.spotify.com/v1/tracks/22sc5jdkR8FTgbGWTdOy7t", - "id": "22sc5jdkR8FTgbGWTdOy7t", - "name": "Run To Tomorrow", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:22sc5jdkR8FTgbGWTdOy7t", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/1kyZdBlUpvZFPZdhxQvsVj", + "id": "1kyZdBlUpvZFPZdhxQvsVj", + "type": "track", + "uri": "spotify:track:1kyZdBlUpvZFPZdhxQvsVj" + }, + "name": "Limelight", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1HMNvplSW6H9PV0fuetvTr", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 223300, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" + }, + "href": "https://api.spotify.com/v1/tracks/2qGsVqQJFtknAtR37CAttT", + "id": "2qGsVqQJFtknAtR37CAttT", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" }, - "copyrights": [ - { - "text": "(C) 2024 Chess Club Records under exclusive license to AWAL Recordings", - "type": "C" - }, - { - "text": "(P) 2024 Chess Club Records under exclusive license to AWAL Recordings", - "type": "P" - } - ], - "external_ids": { "upc": "198391074080" }, - "genres": [], - "label": "Chess Club Records", - "popularity": 30 - } - }, - { - "added_at": "2024-05-30T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 27, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/6QTuFdY6uZixx4NkRmVJi3", + "id": "6QTuFdY6uZixx4NkRmVJi3", + "type": "track", + "uri": "spotify:track:6QTuFdY6uZixx4NkRmVJi3" + }, + "name": "Pour Some Sugar on Me", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2qGsVqQJFtknAtR37CAttT", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262883, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" + }, + "href": "https://api.spotify.com/v1/tracks/2fVCjb09bMzkiozFRQy2Cl", + "id": "2fVCjb09bMzkiozFRQy2Cl", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1Sr34Sc0yqB4SlxanOrit0" + "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" }, - "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0", - "id": "1Sr34Sc0yqB4SlxanOrit0", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273668bf8454b34db4eb2b78dd3", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02668bf8454b34db4eb2b78dd3", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851668bf8454b34db4eb2b78dd3", - "height": 64, - "width": 64 - } - ], - "name": "The Last Goodbye Tour Live", - "release_date": "2024-05-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1Sr34Sc0yqB4SlxanOrit0", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1Sr34Sc0yqB4SlxanOrit0/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 27, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 186400, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/24ainScgxd2UDayPsLzzm2" - }, - "href": "https://api.spotify.com/v1/tracks/24ainScgxd2UDayPsLzzm2", - "id": "24ainScgxd2UDayPsLzzm2", - "name": "This Version of You (Live)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:24ainScgxd2UDayPsLzzm2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189985, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gKFQ6sGKfZr44NXw6wjym" - }, - "href": "https://api.spotify.com/v1/tracks/4gKFQ6sGKfZr44NXw6wjym", - "id": "4gKFQ6sGKfZr44NXw6wjym", - "name": "Behind the Sun (Live)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:4gKFQ6sGKfZr44NXw6wjym", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201954, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2W0IElS3uccgQUXKAwVyAt" - }, - "href": "https://api.spotify.com/v1/tracks/2W0IElS3uccgQUXKAwVyAt", - "id": "2W0IElS3uccgQUXKAwVyAt", - "name": "All We Need (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2W0IElS3uccgQUXKAwVyAt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4JK3JhyIl1icooy0uq37DA" - }, - "href": "https://api.spotify.com/v1/tracks/4JK3JhyIl1icooy0uq37DA", - "id": "4JK3JhyIl1icooy0uq37DA", - "name": "Love Letter (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:4JK3JhyIl1icooy0uq37DA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176459, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ZVmGzftncwotIcJzkiTQK" - }, - "href": "https://api.spotify.com/v1/tracks/1ZVmGzftncwotIcJzkiTQK", - "id": "1ZVmGzftncwotIcJzkiTQK", - "name": "Say My Name x Late Night (Live)", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1ZVmGzftncwotIcJzkiTQK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 151384, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2mOOT12V4TMB9O6p75Hehs" - }, - "href": "https://api.spotify.com/v1/tracks/2mOOT12V4TMB9O6p75Hehs", - "id": "2mOOT12V4TMB9O6p75Hehs", - "name": "In the Rain (Live)", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:2mOOT12V4TMB9O6p75Hehs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4iVhFmG8YCCEHANGeUUS9q" - }, - "href": "https://api.spotify.com/v1/artists/4iVhFmG8YCCEHANGeUUS9q", - "id": "4iVhFmG8YCCEHANGeUUS9q", - "name": "Pretty Lights", - "type": "artist", - "uri": "spotify:artist:4iVhFmG8YCCEHANGeUUS9q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 96053, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3mqmlOkyeU3hP1rERf6tjv" - }, - "href": "https://api.spotify.com/v1/tracks/3mqmlOkyeU3hP1rERf6tjv", - "id": "3mqmlOkyeU3hP1rERf6tjv", - "name": "One Day They'll Know (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:3mqmlOkyeU3hP1rERf6tjv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6BkSTbIWZrLZZK0sa2GehR" - }, - "href": "https://api.spotify.com/v1/artists/6BkSTbIWZrLZZK0sa2GehR", - "id": "6BkSTbIWZrLZZK0sa2GehR", - "name": "Charlie Houston", - "type": "artist", - "uri": "spotify:artist:6BkSTbIWZrLZZK0sa2GehR" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 261978, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2A0cPJCmtGITjsKAIhzEfo" - }, - "href": "https://api.spotify.com/v1/tracks/2A0cPJCmtGITjsKAIhzEfo", - "id": "2A0cPJCmtGITjsKAIhzEfo", - "name": "Wide Awake (Live)", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:2A0cPJCmtGITjsKAIhzEfo", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 214092, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1a73OJypd6sgDkAwA75NDX" - }, - "href": "https://api.spotify.com/v1/tracks/1a73OJypd6sgDkAwA75NDX", - "id": "1a73OJypd6sgDkAwA75NDX", - "name": "Bloom (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1a73OJypd6sgDkAwA75NDX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 268167, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4tL49ueZxBPJD5Z9pmNCAL" - }, - "href": "https://api.spotify.com/v1/tracks/4tL49ueZxBPJD5Z9pmNCAL", - "id": "4tL49ueZxBPJD5Z9pmNCAL", - "name": "Equal x Boy (Live)", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4tL49ueZxBPJD5Z9pmNCAL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 116759, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ZJiqlxrcILMONjWo9wwaW" - }, - "href": "https://api.spotify.com/v1/tracks/1ZJiqlxrcILMONjWo9wwaW", - "id": "1ZJiqlxrcILMONjWo9wwaW", - "name": "All My Life (Live)", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:1ZJiqlxrcILMONjWo9wwaW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3NP4jJcW3R6qO6rbtnH0wn" - }, - "href": "https://api.spotify.com/v1/artists/3NP4jJcW3R6qO6rbtnH0wn", - "id": "3NP4jJcW3R6qO6rbtnH0wn", - "name": "MARO", - "type": "artist", - "uri": "spotify:artist:3NP4jJcW3R6qO6rbtnH0wn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161641, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/59aWxauGOAbQycO8GNK7LE" - }, - "href": "https://api.spotify.com/v1/tracks/59aWxauGOAbQycO8GNK7LE", - "id": "59aWxauGOAbQycO8GNK7LE", - "name": "Better Now (Live)", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:59aWxauGOAbQycO8GNK7LE", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4qOzMSukiZoiSjPQw8Zs7s" - }, - "href": "https://api.spotify.com/v1/artists/4qOzMSukiZoiSjPQw8Zs7s", - "id": "4qOzMSukiZoiSjPQw8Zs7s", - "name": "Mansionair", - "type": "artist", - "uri": "spotify:artist:4qOzMSukiZoiSjPQw8Zs7s" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" - }, - "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", - "id": "5EBlHXi71tDXnFtroEh7Rg", - "name": "Naomi Wild", - "type": "artist", - "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181843, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7q7B0VRgFKegcxO2Edzbi6" - }, - "href": "https://api.spotify.com/v1/tracks/7q7B0VRgFKegcxO2Edzbi6", - "id": "7q7B0VRgFKegcxO2Edzbi6", - "name": "Line Of Sight (Live)", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:7q7B0VRgFKegcxO2Edzbi6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6b5YOgXIliAozdo49vUCJQ" - }, - "href": "https://api.spotify.com/v1/artists/6b5YOgXIliAozdo49vUCJQ", - "id": "6b5YOgXIliAozdo49vUCJQ", - "name": "Izzy Bizu", - "type": "artist", - "uri": "spotify:artist:6b5YOgXIliAozdo49vUCJQ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 243413, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0PD6WTOfk9kBi6THqAaBKV" - }, - "href": "https://api.spotify.com/v1/tracks/0PD6WTOfk9kBi6THqAaBKV", - "id": "0PD6WTOfk9kBi6THqAaBKV", - "name": "Forgive Me (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:0PD6WTOfk9kBi6THqAaBKV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 105046, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5r06HL1g9lqxc5CAxBK7an" - }, - "href": "https://api.spotify.com/v1/tracks/5r06HL1g9lqxc5CAxBK7an", - "id": "5r06HL1g9lqxc5CAxBK7an", - "name": "La Ciudad (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:5r06HL1g9lqxc5CAxBK7an", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2MPHBxznH1fj59jbOWY38u" - }, - "href": "https://api.spotify.com/v1/artists/2MPHBxznH1fj59jbOWY38u", - "id": "2MPHBxznH1fj59jbOWY38u", - "name": "Sudan Archives", - "type": "artist", - "uri": "spotify:artist:2MPHBxznH1fj59jbOWY38u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211440, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7rwME0L7zpCwQgHcIwzbvt" - }, - "href": "https://api.spotify.com/v1/tracks/7rwME0L7zpCwQgHcIwzbvt", - "id": "7rwME0L7zpCwQgHcIwzbvt", - "name": "Selfish Soul (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:7rwME0L7zpCwQgHcIwzbvt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" - }, - "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", - "id": "60yfafz0P3gqaUaOUIddae", - "name": "BRONSON", - "type": "artist", - "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194464, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4UU6fudp68mcPuUFJf1sNA" - }, - "href": "https://api.spotify.com/v1/tracks/4UU6fudp68mcPuUFJf1sNA", - "id": "4UU6fudp68mcPuUFJf1sNA", - "name": "TENSE (Live)", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:4UU6fudp68mcPuUFJf1sNA", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/60yfafz0P3gqaUaOUIddae" - }, - "href": "https://api.spotify.com/v1/artists/60yfafz0P3gqaUaOUIddae", - "id": "60yfafz0P3gqaUaOUIddae", - "name": "BRONSON", - "type": "artist", - "uri": "spotify:artist:60yfafz0P3gqaUaOUIddae" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 142423, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/41z8eydTUKN0IL0QZtRcIs" - }, - "href": "https://api.spotify.com/v1/tracks/41z8eydTUKN0IL0QZtRcIs", - "id": "41z8eydTUKN0IL0QZtRcIs", - "name": "KEEP MOVING (Live)", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:41z8eydTUKN0IL0QZtRcIs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2hT93dtTBxGOVYQEa3u2pE" - }, - "href": "https://api.spotify.com/v1/tracks/2hT93dtTBxGOVYQEa3u2pE", - "id": "2hT93dtTBxGOVYQEa3u2pE", - "name": "Sun Models (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 19, - "type": "track", - "uri": "spotify:track:2hT93dtTBxGOVYQEa3u2pE", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 135054, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/69YWB2KVAMtIcjx01y2nAk" - }, - "href": "https://api.spotify.com/v1/tracks/69YWB2KVAMtIcjx01y2nAk", - "id": "69YWB2KVAMtIcjx01y2nAk", - "name": "Hopeful (Live)", - "preview_url": null, - "track_number": 20, - "type": "track", - "uri": "spotify:track:69YWB2KVAMtIcjx01y2nAk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 275331, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1CxylMSGYankQropBSWDP3" - }, - "href": "https://api.spotify.com/v1/tracks/1CxylMSGYankQropBSWDP3", - "id": "1CxylMSGYankQropBSWDP3", - "name": "Across The Room x Falls (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 21, - "type": "track", - "uri": "spotify:track:1CxylMSGYankQropBSWDP3", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216988, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6aocvw4IvUE1zmlAavNkcR" - }, - "href": "https://api.spotify.com/v1/tracks/6aocvw4IvUE1zmlAavNkcR", - "id": "6aocvw4IvUE1zmlAavNkcR", - "name": "Loyal (Live)", - "preview_url": null, - "track_number": 22, - "type": "track", - "uri": "spotify:track:6aocvw4IvUE1zmlAavNkcR", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 163770, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5XWGvqsLKBAj0y47KpHmlF" - }, - "href": "https://api.spotify.com/v1/tracks/5XWGvqsLKBAj0y47KpHmlF", - "id": "5XWGvqsLKBAj0y47KpHmlF", - "name": "Don't Stop (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 23, - "type": "track", - "uri": "spotify:track:5XWGvqsLKBAj0y47KpHmlF", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 45000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2MA8Ep98eY5wRF28zCE5ec" - }, - "href": "https://api.spotify.com/v1/tracks/2MA8Ep98eY5wRF28zCE5ec", - "id": "2MA8Ep98eY5wRF28zCE5ec", - "name": "Just A Memory (Interlude) (Live)", - "preview_url": null, - "track_number": 24, - "type": "track", - "uri": "spotify:track:2MA8Ep98eY5wRF28zCE5ec", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" - }, - "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", - "id": "5EBlHXi71tDXnFtroEh7Rg", - "name": "Naomi Wild", - "type": "artist", - "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229816, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6v5Gc28XYQu2cDCmahhlBY" - }, - "href": "https://api.spotify.com/v1/tracks/6v5Gc28XYQu2cDCmahhlBY", - "id": "6v5Gc28XYQu2cDCmahhlBY", - "name": "Higher Ground (Live)", - "preview_url": null, - "track_number": 25, - "type": "track", - "uri": "spotify:track:6v5Gc28XYQu2cDCmahhlBY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 383750, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6nwtUZBvCUzWp8HhhGrDu8" - }, - "href": "https://api.spotify.com/v1/tracks/6nwtUZBvCUzWp8HhhGrDu8", - "id": "6nwtUZBvCUzWp8HhhGrDu8", - "name": "A Moment Apart (Live) (ODESZA VIP Remix)", - "preview_url": null, - "track_number": 26, - "type": "track", - "uri": "spotify:track:6nwtUZBvCUzWp8HhhGrDu8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 419555, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6y6vQOD1k3fBySGpjPmIkJ" - }, - "href": "https://api.spotify.com/v1/tracks/6y6vQOD1k3fBySGpjPmIkJ", - "id": "6y6vQOD1k3fBySGpjPmIkJ", - "name": "The Last Goodbye (Live)", - "preview_url": null, - "track_number": 27, - "type": "track", - "uri": "spotify:track:6y6vQOD1k3fBySGpjPmIkJ", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/1RSB4C6tFOrbRgQhklvETU", + "id": "1RSB4C6tFOrbRgQhklvETU", + "type": "track", + "uri": "spotify:track:1RSB4C6tFOrbRgQhklvETU" + }, + "name": "Something About You", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:2fVCjb09bMzkiozFRQy2Cl", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 321158, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" + }, + "href": "https://api.spotify.com/v1/tracks/53RvyCGHmdcGisi7ohScVb", + "id": "53RvyCGHmdcGisi7ohScVb", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" }, - "copyrights": [ - { - "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", - "type": "C" - }, - { - "text": "2024 Foreign Family Collective under exclusive license to Ninja Tune", - "type": "P" - } - ], - "external_ids": { "upc": "5054429193510" }, - "genres": [], - "label": "Ninja Tune", - "popularity": 45 - } - }, - { - "added_at": "2024-05-30T22:00:00Z", - "album": { - "album_type": "album", - "total_tracks": 15, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/43Mb0MmXn8tCa2WFnuG8Ll", + "id": "43Mb0MmXn8tCa2WFnuG8Ll", + "type": "track", + "uri": "spotify:track:43Mb0MmXn8tCa2WFnuG8Ll" + }, + "name": "In Your Eyes", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:53RvyCGHmdcGisi7ohScVb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203705, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" + }, + "href": "https://api.spotify.com/v1/tracks/0qi8fD0IVKSggOYHPhQv95", + "id": "0qi8fD0IVKSggOYHPhQv95", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6YpuiWNRGcMEumvRbEuOvP" + "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" }, - "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP", - "id": "6YpuiWNRGcMEumvRbEuOvP", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2739af80bdb91f14c69a7b900cb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e029af80bdb91f14c69a7b900cb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048519af80bdb91f14c69a7b900cb", - "height": 64, - "width": 64 - } - ], - "name": "Believe Me Now?", - "release_date": "2024-05-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6YpuiWNRGcMEumvRbEuOvP", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6YpuiWNRGcMEumvRbEuOvP/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 15, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3K9muOlJVKLgH4SIwwZiDe" - }, - "href": "https://api.spotify.com/v1/artists/3K9muOlJVKLgH4SIwwZiDe", - "id": "3K9muOlJVKLgH4SIwwZiDe", - "name": "Self Esteem", - "type": "artist", - "uri": "spotify:artist:3K9muOlJVKLgH4SIwwZiDe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 231684, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" - }, - "href": "https://api.spotify.com/v1/tracks/0djt8pab0Si1xC7B2ddfF4", - "id": "0djt8pab0Si1xC7B2ddfF4", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6RtoIjw4BISeXqbju6b64E" - }, - "href": "https://api.spotify.com/v1/tracks/6RtoIjw4BISeXqbju6b64E", - "id": "6RtoIjw4BISeXqbju6b64E", - "type": "track", - "uri": "spotify:track:6RtoIjw4BISeXqbju6b64E" - }, - "name": "True Colours (feat. Self Esteem)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0djt8pab0Si1xC7B2ddfF4", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 197014, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" - }, - "href": "https://api.spotify.com/v1/tracks/0rX4zPMMpg8IhCKElJp8lp", - "id": "0rX4zPMMpg8IhCKElJp8lp", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6NysRdnw6s1e8v4WfjcdDg" - }, - "href": "https://api.spotify.com/v1/tracks/6NysRdnw6s1e8v4WfjcdDg", - "id": "6NysRdnw6s1e8v4WfjcdDg", - "type": "track", - "uri": "spotify:track:6NysRdnw6s1e8v4WfjcdDg" - }, - "name": "Darkest Hour", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:0rX4zPMMpg8IhCKElJp8lp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 175628, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" - }, - "href": "https://api.spotify.com/v1/tracks/3LcXzMeyG4jy8ERxtzHGgP", - "id": "3LcXzMeyG4jy8ERxtzHGgP", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0IRZJ6G7fj0bvShvNkSOFR" - }, - "href": "https://api.spotify.com/v1/tracks/0IRZJ6G7fj0bvShvNkSOFR", - "id": "0IRZJ6G7fj0bvShvNkSOFR", - "type": "track", - "uri": "spotify:track:0IRZJ6G7fj0bvShvNkSOFR" - }, - "name": "Outside Of Love", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:3LcXzMeyG4jy8ERxtzHGgP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 189087, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" - }, - "href": "https://api.spotify.com/v1/tracks/3MLsgTj4GNyq6Nost2T5ya", - "id": "3MLsgTj4GNyq6Nost2T5ya", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3pFe9dLAwfnwKt8gM6mqki" - }, - "href": "https://api.spotify.com/v1/tracks/3pFe9dLAwfnwKt8gM6mqki", - "id": "3pFe9dLAwfnwKt8gM6mqki", - "type": "track", - "uri": "spotify:track:3pFe9dLAwfnwKt8gM6mqki" - }, - "name": "Never Be Alone (feat. Sonny Fodera)", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:3MLsgTj4GNyq6Nost2T5ya", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 148135, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" - }, - "href": "https://api.spotify.com/v1/tracks/1VjvxoeHjF0DJhsmvLte8a", - "id": "1VjvxoeHjF0DJhsmvLte8a", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2MLkPm2w8hHjJbg4jpb5e4" - }, - "href": "https://api.spotify.com/v1/tracks/2MLkPm2w8hHjJbg4jpb5e4", - "id": "2MLkPm2w8hHjJbg4jpb5e4", - "type": "track", - "uri": "spotify:track:2MLkPm2w8hHjJbg4jpb5e4" - }, - "name": "Multiply", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1VjvxoeHjF0DJhsmvLte8a", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 212421, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" - }, - "href": "https://api.spotify.com/v1/tracks/5Bnm9QxfBKxc1sNvZanTBT", - "id": "5Bnm9QxfBKxc1sNvZanTBT", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2ZZK8s3J4YFFtuPVPEuBKL" - }, - "href": "https://api.spotify.com/v1/tracks/2ZZK8s3J4YFFtuPVPEuBKL", - "id": "2ZZK8s3J4YFFtuPVPEuBKL", - "type": "track", - "uri": "spotify:track:2ZZK8s3J4YFFtuPVPEuBKL" - }, - "name": "Swim", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:5Bnm9QxfBKxc1sNvZanTBT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 178352, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" - }, - "href": "https://api.spotify.com/v1/tracks/2HYvYa9b8lASSBxgupn7H2", - "id": "2HYvYa9b8lASSBxgupn7H2", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Gy9xulTAI3wQ7S2f4Fyg6" - }, - "href": "https://api.spotify.com/v1/tracks/0Gy9xulTAI3wQ7S2f4Fyg6", - "id": "0Gy9xulTAI3wQ7S2f4Fyg6", - "type": "track", - "uri": "spotify:track:0Gy9xulTAI3wQ7S2f4Fyg6" - }, - "name": "Man Of My Dreams", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2HYvYa9b8lASSBxgupn7H2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 176661, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" - }, - "href": "https://api.spotify.com/v1/tracks/6yCLuQMWVBBfgwqLaTtks9", - "id": "6yCLuQMWVBBfgwqLaTtks9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6rjezxiUUnvLoCxY3Tn0cP" - }, - "href": "https://api.spotify.com/v1/tracks/6rjezxiUUnvLoCxY3Tn0cP", - "id": "6rjezxiUUnvLoCxY3Tn0cP", - "type": "track", - "uri": "spotify:track:6rjezxiUUnvLoCxY3Tn0cP" - }, - "name": "Linger", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:6yCLuQMWVBBfgwqLaTtks9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 230657, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" - }, - "href": "https://api.spotify.com/v1/tracks/6HHONxXw6BXNg2YSELJn1R", - "id": "6HHONxXw6BXNg2YSELJn1R", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7pxYzLcArC8gnj67ebv4yh" - }, - "href": "https://api.spotify.com/v1/tracks/7pxYzLcArC8gnj67ebv4yh", - "id": "7pxYzLcArC8gnj67ebv4yh", - "type": "track", - "uri": "spotify:track:7pxYzLcArC8gnj67ebv4yh" - }, - "name": "Lonely Again", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:6HHONxXw6BXNg2YSELJn1R", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26OmQHradZrF0CS7DrgWDH" - }, - "href": "https://api.spotify.com/v1/artists/26OmQHradZrF0CS7DrgWDH", - "id": "26OmQHradZrF0CS7DrgWDH", - "name": "Lewis Thompson", - "type": "artist", - "uri": "spotify:artist:26OmQHradZrF0CS7DrgWDH" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 153742, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" - }, - "href": "https://api.spotify.com/v1/tracks/2aAksX61WFBUxWayOhEDJn", - "id": "2aAksX61WFBUxWayOhEDJn", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2l3WaRRp8nKatWZDVysMUR" - }, - "href": "https://api.spotify.com/v1/tracks/2l3WaRRp8nKatWZDVysMUR", - "id": "2l3WaRRp8nKatWZDVysMUR", - "type": "track", - "uri": "spotify:track:2l3WaRRp8nKatWZDVysMUR" - }, - "name": "Side Effects", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:2aAksX61WFBUxWayOhEDJn", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 156248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" - }, - "href": "https://api.spotify.com/v1/tracks/3m9uxUtp0P8dF3U0Uny0uY", - "id": "3m9uxUtp0P8dF3U0Uny0uY", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4a4HS3GEdO6rHlvrYzztbh" - }, - "href": "https://api.spotify.com/v1/tracks/4a4HS3GEdO6rHlvrYzztbh", - "id": "4a4HS3GEdO6rHlvrYzztbh", - "type": "track", - "uri": "spotify:track:4a4HS3GEdO6rHlvrYzztbh" - }, - "name": "Back Around", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:3m9uxUtp0P8dF3U0Uny0uY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 133289, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" - }, - "href": "https://api.spotify.com/v1/tracks/7z7NUTBS73esdMiCtZ9pur", - "id": "7z7NUTBS73esdMiCtZ9pur", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/43qScrbaWtfJZj9kvy2u2P" - }, - "href": "https://api.spotify.com/v1/tracks/43qScrbaWtfJZj9kvy2u2P", - "id": "43qScrbaWtfJZj9kvy2u2P", - "type": "track", - "uri": "spotify:track:43qScrbaWtfJZj9kvy2u2P" - }, - "name": "Keep Holding On", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:7z7NUTBS73esdMiCtZ9pur", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5spVyRrIk8Es1ZBi2ClEUU" - }, - "href": "https://api.spotify.com/v1/artists/5spVyRrIk8Es1ZBi2ClEUU", - "id": "5spVyRrIk8Es1ZBi2ClEUU", - "name": "RILEASA", - "type": "artist", - "uri": "spotify:artist:5spVyRrIk8Es1ZBi2ClEUU" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 164005, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" - }, - "href": "https://api.spotify.com/v1/tracks/5RgB1e7a1KHrXrfT3UuPCc", - "id": "5RgB1e7a1KHrXrfT3UuPCc", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7otRU4xTCpu0QUKW3ekNd5" - }, - "href": "https://api.spotify.com/v1/tracks/7otRU4xTCpu0QUKW3ekNd5", - "id": "7otRU4xTCpu0QUKW3ekNd5", - "type": "track", - "uri": "spotify:track:7otRU4xTCpu0QUKW3ekNd5" - }, - "name": "One Track Mind (feat. RILEASA)", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:5RgB1e7a1KHrXrfT3UuPCc", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jNkaOXasoc7RsxdchvEVq" - }, - "href": "https://api.spotify.com/v1/artists/3jNkaOXasoc7RsxdchvEVq", - "id": "3jNkaOXasoc7RsxdchvEVq", - "name": "Chase & Status", - "type": "artist", - "uri": "spotify:artist:3jNkaOXasoc7RsxdchvEVq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 164914, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" - }, - "href": "https://api.spotify.com/v1/tracks/3VFaV7Mw0di4XFE84eHnrC", - "id": "3VFaV7Mw0di4XFE84eHnrC", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5IKc3FhDTzE6LvgLaB1Q6M" - }, - "href": "https://api.spotify.com/v1/tracks/5IKc3FhDTzE6LvgLaB1Q6M", - "id": "5IKc3FhDTzE6LvgLaB1Q6M", - "type": "track", - "uri": "spotify:track:5IKc3FhDTzE6LvgLaB1Q6M" - }, - "name": "Disconnect", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:3VFaV7Mw0di4XFE84eHnrC", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 179015, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" - }, - "href": "https://api.spotify.com/v1/tracks/0S9laeO22k8rgM1PqZtgAA", - "id": "0S9laeO22k8rgM1PqZtgAA", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/74EzvNoqJdoBwIap3o8Ycb" - }, - "href": "https://api.spotify.com/v1/tracks/74EzvNoqJdoBwIap3o8Ycb", - "id": "74EzvNoqJdoBwIap3o8Ycb", - "type": "track", - "uri": "spotify:track:74EzvNoqJdoBwIap3o8Ycb" - }, - "name": "Right Here", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:0S9laeO22k8rgM1PqZtgAA", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/3WQGwy4LNHMmeeb2PDfgWo", + "id": "3WQGwy4LNHMmeeb2PDfgWo", + "type": "track", + "uri": "spotify:track:3WQGwy4LNHMmeeb2PDfgWo" + }, + "name": "Heat of the Moment", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0qi8fD0IVKSggOYHPhQv95", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 245947, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" + }, + "href": "https://api.spotify.com/v1/tracks/6jejZfb7GilMwqfUQDKFCy", + "id": "6jejZfb7GilMwqfUQDKFCy", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" }, - "copyrights": [ - { - "text": "\u00a9 2024 Universal Music Operations Limited", - "type": "C" - }, - { - "text": "\u2117 2024 Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602465082463" }, - "genres": [], - "label": "Polydor Records", - "popularity": 0 - } - }, - { - "added_at": "2022-11-07T16:59:34Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/7fX3wR67GCCvVOAf3G8KRE", + "id": "7fX3wR67GCCvVOAf3G8KRE", + "type": "track", + "uri": "spotify:track:7fX3wR67GCCvVOAf3G8KRE" + }, + "name": "You Spin Me Round (Like a Record)", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6jejZfb7GilMwqfUQDKFCy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 282929, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" + }, + "href": "https://api.spotify.com/v1/tracks/6GuZK6T75DshC2QiYPBKV0", + "id": "6GuZK6T75DshC2QiYPBKV0", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1ZzRJDpsGzs8wkkI0w6F8G" + "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" }, - "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G", - "id": "1ZzRJDpsGzs8wkkI0w6F8G", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f9a6870f342d4e0db4428128", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f9a6870f342d4e0db4428128", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f9a6870f342d4e0db4428128", - "height": 64, - "width": 64 - } - ], - "name": "Stiekem ft. Goldband", - "release_date": "2022-11-04", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1ZzRJDpsGzs8wkkI0w6F8G", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" - }, - "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", - "id": "5vmwWgrlwCfHm1P0vdDFbU", - "name": "Maan", - "type": "artist", - "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1ZzRJDpsGzs8wkkI0w6F8G/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vmwWgrlwCfHm1P0vdDFbU" - }, - "href": "https://api.spotify.com/v1/artists/5vmwWgrlwCfHm1P0vdDFbU", - "id": "5vmwWgrlwCfHm1P0vdDFbU", - "name": "Maan", - "type": "artist", - "uri": "spotify:artist:5vmwWgrlwCfHm1P0vdDFbU" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "name": "Goldband", - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203437, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" - }, - "href": "https://api.spotify.com/v1/tracks/0kINWIY7BToJACjRzIOqsz", - "id": "0kINWIY7BToJACjRzIOqsz", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1ulgMAx95xb3N33SMklfG3" - }, - "href": "https://api.spotify.com/v1/tracks/1ulgMAx95xb3N33SMklfG3", - "id": "1ulgMAx95xb3N33SMklfG3", - "type": "track", - "uri": "spotify:track:1ulgMAx95xb3N33SMklfG3" - }, - "name": "Stiekem", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0kINWIY7BToJACjRzIOqsz", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/1UJIy63m1gIRwG8pnlwOuA", + "id": "1UJIy63m1gIRwG8pnlwOuA", + "type": "track", + "uri": "spotify:track:1UJIy63m1gIRwG8pnlwOuA" + }, + "name": "Don't Lose My Number", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6GuZK6T75DshC2QiYPBKV0", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 205357, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" + }, + "href": "https://api.spotify.com/v1/tracks/0x3VVm9d10EU5tdwqJ4k9J", + "id": "0x3VVm9d10EU5tdwqJ4k9J", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" }, - "copyrights": [ - { "text": "2022 8ball Music", "type": "C" }, - { "text": "2022 8ball Music", "type": "P" } - ], - "external_ids": { "upc": "8717774691618" }, - "genres": [], - "label": "8ball Music", - "popularity": 9 - } - }, - { - "added_at": "2021-08-06T10:07:29Z", - "album": { - "album_type": "single", - "total_tracks": 4, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/6wgaV6DPkO3Gi2AmN1uYJn", + "id": "6wgaV6DPkO3Gi2AmN1uYJn", + "type": "track", + "uri": "spotify:track:6wgaV6DPkO3Gi2AmN1uYJn" + }, + "name": "I Wish", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:0x3VVm9d10EU5tdwqJ4k9J", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233167, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" + }, + "href": "https://api.spotify.com/v1/tracks/7iOAjvVx8JS3j9ZvcJZzaL", + "id": "7iOAjvVx8JS3j9ZvcJZzaL", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/16mh2RvDOwlv2gw7BFElFf" + "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" }, - "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf", - "id": "16mh2RvDOwlv2gw7BFElFf", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273cce0465e13f5f9ff4fbf8590", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02cce0465e13f5f9ff4fbf8590", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851cce0465e13f5f9ff4fbf8590", - "height": 64, - "width": 64 - } - ], - "name": "Business (with Ella Eyre)", - "release_date": "2021-08-06", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:16mh2RvDOwlv2gw7BFElFf", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" - }, - "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", - "id": "66TrUkUZ3RM29dqeDQRgyA", - "name": "Ella Eyre", - "type": "artist", - "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/16mh2RvDOwlv2gw7BFElFf/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 4, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/66TrUkUZ3RM29dqeDQRgyA" - }, - "href": "https://api.spotify.com/v1/artists/66TrUkUZ3RM29dqeDQRgyA", - "id": "66TrUkUZ3RM29dqeDQRgyA", - "name": "Ella Eyre", - "type": "artist", - "uri": "spotify:artist:66TrUkUZ3RM29dqeDQRgyA" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197720, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7f3oSqQXBCUiWtR0m7ieRw" - }, - "href": "https://api.spotify.com/v1/tracks/7f3oSqQXBCUiWtR0m7ieRw", - "id": "7f3oSqQXBCUiWtR0m7ieRw", - "name": "Business (with Ella Eyre)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7f3oSqQXBCUiWtR0m7ieRw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Cs0zKBU1kc0i8ypK3B9ai" - }, - "href": "https://api.spotify.com/v1/artists/1Cs0zKBU1kc0i8ypK3B9ai", - "id": "1Cs0zKBU1kc0i8ypK3B9ai", - "name": "David Guetta", - "type": "artist", - "uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 161386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6YkclKF41aboSB5Sf4p15l" - }, - "href": "https://api.spotify.com/v1/tracks/6YkclKF41aboSB5Sf4p15l", - "id": "6YkclKF41aboSB5Sf4p15l", - "name": "Remember (and David Guetta)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:6YkclKF41aboSB5Sf4p15l", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1IueXOQyABrMOprrzwQJWN" - }, - "href": "https://api.spotify.com/v1/artists/1IueXOQyABrMOprrzwQJWN", - "id": "1IueXOQyABrMOprrzwQJWN", - "name": "Sigala", - "type": "artist", - "uri": "spotify:artist:1IueXOQyABrMOprrzwQJWN" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 193360, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2N8HEioDelArgvoInf5pkk" - }, - "href": "https://api.spotify.com/v1/tracks/2N8HEioDelArgvoInf5pkk", - "id": "2N8HEioDelArgvoInf5pkk", - "name": "Heaven On My Mind (with Sigala)", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2N8HEioDelArgvoInf5pkk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EPJlUEBy49EX1wuFOvtjK" - }, - "href": "https://api.spotify.com/v1/artists/4EPJlUEBy49EX1wuFOvtjK", - "id": "4EPJlUEBy49EX1wuFOvtjK", - "name": "Becky Hill", - "type": "artist", - "uri": "spotify:artist:4EPJlUEBy49EX1wuFOvtjK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/26OrZl5U3VNGHU9qUj8EcM" - }, - "href": "https://api.spotify.com/v1/artists/26OrZl5U3VNGHU9qUj8EcM", - "id": "26OrZl5U3VNGHU9qUj8EcM", - "name": "Shift K3Y", - "type": "artist", - "uri": "spotify:artist:26OrZl5U3VNGHU9qUj8EcM" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 198493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4RJ9DfYp0sWhPWUjIXKJUx" - }, - "href": "https://api.spotify.com/v1/tracks/4RJ9DfYp0sWhPWUjIXKJUx", - "id": "4RJ9DfYp0sWhPWUjIXKJUx", - "name": "Better Off Without You (feat. Shift K3Y)", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:4RJ9DfYp0sWhPWUjIXKJUx", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/3zWUeG4zGXdCrcHX5eGxId", + "id": "3zWUeG4zGXdCrcHX5eGxId", + "type": "track", + "uri": "spotify:track:3zWUeG4zGXdCrcHX5eGxId" + }, + "name": "Your Wildest Dreams", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:7iOAjvVx8JS3j9ZvcJZzaL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 250862, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" + }, + "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", + "id": "6UbGGbBpSfmFDyG17OFuId", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" }, - "copyrights": [ - { - "text": "\u00a9 2021 Universal Music Operations Limited", - "type": "C" - }, - { - "text": "\u2117 2021 Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602438672417" }, - "genres": [], - "label": "Polydor Records", - "popularity": 18 + "href": "https://api.spotify.com/v1/tracks/3lH4ASiSIFbmyivT3WD6Tp", + "id": "3lH4ASiSIFbmyivT3WD6Tp", + "type": "track", + "uri": "spotify:track:3lH4ASiSIFbmyivT3WD6Tp" + }, + "name": "Rocket Man", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId", + "is_local": false } + ] }, - { - "added_at": "2019-09-17T07:00:48Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "copyrights": [ + { "text": "2017 Ninja Sex Party", "type": "C" }, + { "text": "2017 Ninja Sex Party", "type": "P" } + ], + "external_ids": { "upc": "191924181712" }, + "genres": [], + "label": "Ninja Sex Party", + "popularity": 0 + } + }, + { + "added_at": "2017-09-17T20:15:03Z", + "album": { + "album_type": "album", + "total_tracks": 15, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6cyUcKNdyK1NRBQ7vjEwVY" + }, + "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY", + "id": "6cyUcKNdyK1NRBQ7vjEwVY", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873", + "height": 64, + "width": 64 + } + ], + "name": "Wonderland (Deluxe)", + "release_date": "2017-03-24", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6cyUcKNdyK1NRBQ7vjEwVY", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 15, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 293266, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" + }, + "href": "https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F", + "id": "4BlCSLODDzs7WObKGS8v0F", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1KPqoSV4Rs89YfgAwbLROr" + "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" }, - "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr", - "id": "1KPqoSV4Rs89YfgAwbLROr", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27393f89a7974f0302a2b50a53e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0293f89a7974f0302a2b50a53e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485193f89a7974f0302a2b50a53e", - "height": 64, - "width": 64 - } - ], - "name": "What's Love", - "release_date": "2019-09-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1KPqoSV4Rs89YfgAwbLROr", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1KPqoSV4Rs89YfgAwbLROr/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176727, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/21Z6lY56DuaKBZBkPKK4Nk" - }, - "href": "https://api.spotify.com/v1/tracks/21Z6lY56DuaKBZBkPKK4Nk", - "id": "21Z6lY56DuaKBZBkPKK4Nk", - "name": "What's Love", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:21Z6lY56DuaKBZBkPKK4Nk", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/4KN1xC3IVZCA5c5h5yIHsH", + "id": "4KN1xC3IVZCA5c5h5yIHsH", + "type": "track", + "uri": "spotify:track:4KN1xC3IVZCA5c5h5yIHsH" + }, + "name": "Wonderland", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4BlCSLODDzs7WObKGS8v0F", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" + }, + "href": "https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk", + "id": "0dhMVWyuExZRNEDcSaxcpk", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" }, - "copyrights": [ - { "text": "2019 Monstercat", "type": "C" }, - { "text": "2019 Monstercat", "type": "P" } - ], - "external_ids": { "upc": "703980546604" }, - "genres": [], - "label": "Monstercat", - "popularity": 7 - } - }, - { - "added_at": "2019-04-05T07:08:25Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/1GlyElASkmRfmPIEfxMlTC", + "id": "1GlyElASkmRfmPIEfxMlTC", + "type": "track", + "uri": "spotify:track:1GlyElASkmRfmPIEfxMlTC" + }, + "name": "Giants", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0dhMVWyuExZRNEDcSaxcpk", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 209720, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" + }, + "href": "https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs", + "id": "3V3zCg3kqfeag16CRxyOOs", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6OSLjWXJHlMRfQwM0HkOhQ" + "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" }, - "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ", - "id": "6OSLjWXJHlMRfQwM0HkOhQ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2735a76e5f8c200401442fbff3e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e025a76e5f8c200401442fbff3e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048515a76e5f8c200401442fbff3e", - "height": 64, - "width": 64 - } - ], - "name": "Remember You", - "release_date": "2019-04-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6OSLjWXJHlMRfQwM0HkOhQ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6OSLjWXJHlMRfQwM0HkOhQ/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BAdSa5cdtCNLbvT7gWmtJ" - }, - "href": "https://api.spotify.com/v1/artists/1BAdSa5cdtCNLbvT7gWmtJ", - "id": "1BAdSa5cdtCNLbvT7gWmtJ", - "name": "Conro", - "type": "artist", - "uri": "spotify:artist:1BAdSa5cdtCNLbvT7gWmtJ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 189000, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" - }, - "href": "https://api.spotify.com/v1/tracks/796JqxZ3o0ZH6OllNRDuTY", - "id": "796JqxZ3o0ZH6OllNRDuTY", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/20psIOrg7j48rGrlpFXqTI" - }, - "href": "https://api.spotify.com/v1/tracks/20psIOrg7j48rGrlpFXqTI", - "id": "20psIOrg7j48rGrlpFXqTI", - "type": "track", - "uri": "spotify:track:20psIOrg7j48rGrlpFXqTI" - }, - "name": "Remember You", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:796JqxZ3o0ZH6OllNRDuTY", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/66W3clk73gnkw3E1aflNrP", + "id": "66W3clk73gnkw3E1aflNrP", + "type": "track", + "uri": "spotify:track:66W3clk73gnkw3E1aflNrP" + }, + "name": "New Day", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3V3zCg3kqfeag16CRxyOOs", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 209106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" + }, + "href": "https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq", + "id": "38Uy1sMppejotYXJUqPUYq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" }, - "copyrights": [ - { "text": "2019 Monstercat", "type": "C" }, - { "text": "2019 Monstercat", "type": "P" } - ], - "external_ids": { "upc": "703980544396" }, - "genres": [], - "label": "Monstercat", - "popularity": 0 - } - }, - { - "added_at": "2019-03-31T02:37:47Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/1F0ZBh5thKn3aL8oEk0eyJ", + "id": "1F0ZBh5thKn3aL8oEk0eyJ", + "type": "track", + "uri": "spotify:track:1F0ZBh5thKn3aL8oEk0eyJ" + }, + "name": "Lucky Stars", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:38Uy1sMppejotYXJUqPUYq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 233906, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" + }, + "href": "https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16", + "id": "7437sm1u9zsNAtFmH1ZE16", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/79iwhS4dR28DeLyHZvuoSd" + "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" }, - "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd", - "id": "79iwhS4dR28DeLyHZvuoSd", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273755e38d487f8ea2bb2a480b2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02755e38d487f8ea2bb2a480b2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851755e38d487f8ea2bb2a480b2", - "height": 64, - "width": 64 - } - ], - "name": "Flourish", - "release_date": "2019-03-08", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:79iwhS4dR28DeLyHZvuoSd", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/79iwhS4dR28DeLyHZvuoSd/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 228354, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2IhMGMdJv5fBUnJCLksKj9" - }, - "href": "https://api.spotify.com/v1/tracks/2IhMGMdJv5fBUnJCLksKj9", - "id": "2IhMGMdJv5fBUnJCLksKj9", - "name": "Down", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2IhMGMdJv5fBUnJCLksKj9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 189711, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2bPB38GR1k2UxAjBzEi1DM" - }, - "href": "https://api.spotify.com/v1/tracks/2bPB38GR1k2UxAjBzEi1DM", - "id": "2bPB38GR1k2UxAjBzEi1DM", - "name": "Calling", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:2bPB38GR1k2UxAjBzEi1DM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227549, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6UeOqEdtIALSGkLPcw7Rl6" - }, - "href": "https://api.spotify.com/v1/tracks/6UeOqEdtIALSGkLPcw7Rl6", - "id": "6UeOqEdtIALSGkLPcw7Rl6", - "name": "Fourteen", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6UeOqEdtIALSGkLPcw7Rl6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201566, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/21alqUkGOEr7DEJncHfQqM" - }, - "href": "https://api.spotify.com/v1/tracks/21alqUkGOEr7DEJncHfQqM", - "id": "21alqUkGOEr7DEJncHfQqM", - "name": "Anyone", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:21alqUkGOEr7DEJncHfQqM", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200662, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4PjkUwMvr7g1M45DSqlQkH" - }, - "href": "https://api.spotify.com/v1/tracks/4PjkUwMvr7g1M45DSqlQkH", - "id": "4PjkUwMvr7g1M45DSqlQkH", - "name": "Difference", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:4PjkUwMvr7g1M45DSqlQkH", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 215348, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0XZjcj8GUyWCEcnDgWDoTI" - }, - "href": "https://api.spotify.com/v1/tracks/0XZjcj8GUyWCEcnDgWDoTI", - "id": "0XZjcj8GUyWCEcnDgWDoTI", - "name": "No Worries", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:0XZjcj8GUyWCEcnDgWDoTI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244935, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4p0uwwMD4GIUlNZACqPJXO" - }, - "href": "https://api.spotify.com/v1/tracks/4p0uwwMD4GIUlNZACqPJXO", - "id": "4p0uwwMD4GIUlNZACqPJXO", - "name": "New Day", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:4p0uwwMD4GIUlNZACqPJXO", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183355, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3suDoAXX6otxz0WBMHc6pp" - }, - "href": "https://api.spotify.com/v1/tracks/3suDoAXX6otxz0WBMHc6pp", - "id": "3suDoAXX6otxz0WBMHc6pp", - "name": "We Got It", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:3suDoAXX6otxz0WBMHc6pp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216855, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7GqsS485BuDKtkuKdAaiRq" - }, - "href": "https://api.spotify.com/v1/tracks/7GqsS485BuDKtkuKdAaiRq", - "id": "7GqsS485BuDKtkuKdAaiRq", - "name": "Be Mine", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:7GqsS485BuDKtkuKdAaiRq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 255650, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/12o2tk8IhIDUiv9wargB8M" - }, - "href": "https://api.spotify.com/v1/tracks/12o2tk8IhIDUiv9wargB8M", - "id": "12o2tk8IhIDUiv9wargB8M", - "name": "Underwater", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:12o2tk8IhIDUiv9wargB8M", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4AHrbiyZ2bPgcYMMh9I7UV" - }, - "href": "https://api.spotify.com/v1/tracks/4AHrbiyZ2bPgcYMMh9I7UV", - "id": "4AHrbiyZ2bPgcYMMh9I7UV", - "name": "You And I", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:4AHrbiyZ2bPgcYMMh9I7UV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4hj9dun9KpnBukLv7Hgfkr" - }, - "href": "https://api.spotify.com/v1/artists/4hj9dun9KpnBukLv7Hgfkr", - "id": "4hj9dun9KpnBukLv7Hgfkr", - "name": "ROND\u00c9", - "type": "artist", - "uri": "spotify:artist:4hj9dun9KpnBukLv7Hgfkr" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 201932, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/725MTKVYYrxtenlGtLfAIa" - }, - "href": "https://api.spotify.com/v1/tracks/725MTKVYYrxtenlGtLfAIa", - "id": "725MTKVYYrxtenlGtLfAIa", - "name": "All That Was Left", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:725MTKVYYrxtenlGtLfAIa", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/2T2S4nzIZLr9wSiFbEntsW", + "id": "2T2S4nzIZLr9wSiFbEntsW", + "type": "track", + "uri": "spotify:track:2T2S4nzIZLr9wSiFbEntsW" + }, + "name": "And The Band Plays", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7437sm1u9zsNAtFmH1ZE16", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 194106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" + }, + "href": "https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36", + "id": "2kIqgQtq2yHCwkTKS4Vs36", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" }, - "copyrights": [ - { - "text": "\u00a9 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", - "type": "C" - }, - { - "text": "\u2117 2019 ROND\u00c9, under exclusive license to Universal Music, a division of Universal International Music B.V.", - "type": "P" - } - ], - "external_ids": { "upc": "00602577411809" }, - "genres": [], - "label": "Universal Music, a division of Universal International Music BV", - "popularity": 27 - } - }, - { - "added_at": "2018-10-04T21:11:02Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/4hIimoY7T2xMWkVIlBzE9i", + "id": "4hIimoY7T2xMWkVIlBzE9i", + "type": "track", + "uri": "spotify:track:4hIimoY7T2xMWkVIlBzE9i" + }, + "name": "Superstar", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:2kIqgQtq2yHCwkTKS4Vs36", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 224800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" + }, + "href": "https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8", + "id": "1T5CW62fLSdOLsRT0BUir8", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/7lsSj3qTDdmEqVvVLdoQWZ" + "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" }, - "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ", - "id": "7lsSj3qTDdmEqVvVLdoQWZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273be16261b5a920d5fc60e71f5", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02be16261b5a920d5fc60e71f5", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851be16261b5a920d5fc60e71f5", - "height": 64, - "width": 64 - } - ], - "name": "Not A Love Song (King Arthur Remix)", - "release_date": "2018-02-16", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7lsSj3qTDdmEqVvVLdoQWZ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" - }, - "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", - "id": "5vBrKGOjN10BMwB0cJADj4", - "name": "b\u00fclow", - "type": "artist", - "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/7lsSj3qTDdmEqVvVLdoQWZ/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5vBrKGOjN10BMwB0cJADj4" - }, - "href": "https://api.spotify.com/v1/artists/5vBrKGOjN10BMwB0cJADj4", - "id": "5vBrKGOjN10BMwB0cJADj4", - "name": "b\u00fclow", - "type": "artist", - "uri": "spotify:artist:5vBrKGOjN10BMwB0cJADj4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2qPxiZiD34NtmokWN6RoP2" - }, - "href": "https://api.spotify.com/v1/artists/2qPxiZiD34NtmokWN6RoP2", - "id": "2qPxiZiD34NtmokWN6RoP2", - "name": "King Topher", - "type": "artist", - "uri": "spotify:artist:2qPxiZiD34NtmokWN6RoP2" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203706, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4wD34HA8cOSV32SlItkckN" - }, - "href": "https://api.spotify.com/v1/tracks/4wD34HA8cOSV32SlItkckN", - "id": "4wD34HA8cOSV32SlItkckN", - "restrictions": { "reason": "market" }, - "name": "Not A Love Song - King Arthur Remix", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4wD34HA8cOSV32SlItkckN", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/5JTQ4h07j2UwgL32YFvkLf", + "id": "5JTQ4h07j2UwgL32YFvkLf", + "type": "track", + "uri": "spotify:track:5JTQ4h07j2UwgL32YFvkLf" + }, + "name": "Hope", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:1T5CW62fLSdOLsRT0BUir8", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 175040, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" + }, + "href": "https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY", + "id": "51jxNWFFT5WUXIErQzwiUY", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" }, - "copyrights": [ - { "text": "\u00a9 2018 Wax Records", "type": "C" }, - { "text": "\u2117 2018 Wax Records", "type": "P" } - ], - "external_ids": { "upc": "00185627002276" }, - "genres": [], - "label": "Wax Records", - "popularity": 0 - } - }, - { - "added_at": "2018-04-16T10:43:21Z", - "album": { - "album_type": "album", - "total_tracks": 10, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "href": "https://api.spotify.com/v1/tracks/1stKEQ8sgdcYGlasyTNFRx", + "id": "1stKEQ8sgdcYGlasyTNFRx", + "type": "track", + "uri": "spotify:track:1stKEQ8sgdcYGlasyTNFRx" + }, + "name": "River", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:51jxNWFFT5WUXIErQzwiUY", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 196453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" + }, + "href": "https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm", + "id": "018jJKmcAvODfvyNuBfcjm", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6RxUo05RvVNA06y5BVGoth" + "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" }, - "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth", - "id": "6RxUo05RvVNA06y5BVGoth", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d68094b6d6985023d3ada305", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d68094b6d6985023d3ada305", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d68094b6d6985023d3ada305", - "height": 64, - "width": 64 - } - ], - "name": "This Is Not An Album", - "release_date": "2018-01-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6RxUo05RvVNA06y5BVGoth", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6RxUo05RvVNA06y5BVGoth/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 169739, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3tpB406UcLxAKAZMXMHlpY" - }, - "href": "https://api.spotify.com/v1/tracks/3tpB406UcLxAKAZMXMHlpY", - "id": "3tpB406UcLxAKAZMXMHlpY", - "name": "Ooh Lordy", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3tpB406UcLxAKAZMXMHlpY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203114, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1tmDa0FhMn8XSOpEJbVu25" - }, - "href": "https://api.spotify.com/v1/tracks/1tmDa0FhMn8XSOpEJbVu25", - "id": "1tmDa0FhMn8XSOpEJbVu25", - "name": "Out Of My System", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:1tmDa0FhMn8XSOpEJbVu25", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4W48hZAnAHVOC2c8WH8pcq" - }, - "href": "https://api.spotify.com/v1/artists/4W48hZAnAHVOC2c8WH8pcq", - "id": "4W48hZAnAHVOC2c8WH8pcq", - "name": "The Temper Trap", - "type": "artist", - "uri": "spotify:artist:4W48hZAnAHVOC2c8WH8pcq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 294005, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1QBOH8W1ZhRoTOoHvfaZn7" - }, - "href": "https://api.spotify.com/v1/tracks/1QBOH8W1ZhRoTOoHvfaZn7", - "id": "1QBOH8W1ZhRoTOoHvfaZn7", - "name": "Sweet Disposition - Bootleg", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:1QBOH8W1ZhRoTOoHvfaZn7", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 209152, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5zC1NaCQeETz5b0IysG5Ub" - }, - "href": "https://api.spotify.com/v1/tracks/5zC1NaCQeETz5b0IysG5Ub", - "id": "5zC1NaCQeETz5b0IysG5Ub", - "name": "'93", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5zC1NaCQeETz5b0IysG5Ub", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6F3vLfyutkUhpM50G84eMt" - }, - "href": "https://api.spotify.com/v1/artists/6F3vLfyutkUhpM50G84eMt", - "id": "6F3vLfyutkUhpM50G84eMt", - "name": "Endor", - "type": "artist", - "uri": "spotify:artist:6F3vLfyutkUhpM50G84eMt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 208665, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/44478ajpb5DPFaWVDbKSPp" - }, - "href": "https://api.spotify.com/v1/tracks/44478ajpb5DPFaWVDbKSPp", - "id": "44478ajpb5DPFaWVDbKSPp", - "name": "Give It Up - Youngr x Endor", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:44478ajpb5DPFaWVDbKSPp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 185334, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7MTsaNHz8evXD32xLjfjDu" - }, - "href": "https://api.spotify.com/v1/tracks/7MTsaNHz8evXD32xLjfjDu", - "id": "7MTsaNHz8evXD32xLjfjDu", - "name": "What's Next", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:7MTsaNHz8evXD32xLjfjDu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212937, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1J7U9B8nPjKrLL7xDZ56F2" - }, - "href": "https://api.spotify.com/v1/tracks/1J7U9B8nPjKrLL7xDZ56F2", - "id": "1J7U9B8nPjKrLL7xDZ56F2", - "name": "Monsters", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:1J7U9B8nPjKrLL7xDZ56F2", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 162652, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5Zp2xpSwgUyHVtGJZ31kZ1" - }, - "href": "https://api.spotify.com/v1/tracks/5Zp2xpSwgUyHVtGJZ31kZ1", - "id": "5Zp2xpSwgUyHVtGJZ31kZ1", - "name": "Too Keen", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:5Zp2xpSwgUyHVtGJZ31kZ1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 241406, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5RQdeW1apwe934zbntXROv" - }, - "href": "https://api.spotify.com/v1/tracks/5RQdeW1apwe934zbntXROv", - "id": "5RQdeW1apwe934zbntXROv", - "name": "September Sun", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:5RQdeW1apwe934zbntXROv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "name": "Youngr", - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219499, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4gD4ja2LvNDfCK8yeyXJwo" - }, - "href": "https://api.spotify.com/v1/tracks/4gD4ja2LvNDfCK8yeyXJwo", - "id": "4gD4ja2LvNDfCK8yeyXJwo", - "name": "Disappear", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:4gD4ja2LvNDfCK8yeyXJwo", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/4Agh7A8QEcK6ojtTTKONFK", + "id": "4Agh7A8QEcK6ojtTTKONFK", + "type": "track", + "uri": "spotify:track:4Agh7A8QEcK6ojtTTKONFK" + }, + "name": "The Last Poet", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:018jJKmcAvODfvyNuBfcjm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 252760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" + }, + "href": "https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J", + "id": "6RxdVdQS85HYIpXwJw1j6J", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" }, - "copyrights": [ - { - "text": "\u00a9 2018 Island Records, a division of Universal Music Operations Limited", - "type": "C" - }, - { - "text": "\u2117 2018 Island Records, a division of Universal Music Operations Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602567337072" }, - "genres": [], - "label": "Universal-Island Records Ltd.", - "popularity": 32 - } - }, - { - "added_at": "2018-03-06T23:37:54Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/0EiDO4qFMDbaKe4ETIz0ur", + "id": "0EiDO4qFMDbaKe4ETIz0ur", + "type": "track", + "uri": "spotify:track:0EiDO4qFMDbaKe4ETIz0ur" + }, + "name": "Every Revolution", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:6RxdVdQS85HYIpXwJw1j6J", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 269466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" + }, + "href": "https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST", + "id": "0ONIdjj0gIWoA8vOPlM9ST", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0wZ3CJWOsyYAfM8q5eatk2" + "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" }, - "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2", - "id": "0wZ3CJWOsyYAfM8q5eatk2", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273ba42f930893e0e8bdc2bfb06", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02ba42f930893e0e8bdc2bfb06", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851ba42f930893e0e8bdc2bfb06", - "height": 64, - "width": 64 - } - ], - "name": "Mind Control", - "release_date": "2017-08-02", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0wZ3CJWOsyYAfM8q5eatk2", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" - }, - "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", - "id": "12x5fAPl1U05wUHCI5O0uq", - "name": "Right-O", - "type": "artist", - "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0wZ3CJWOsyYAfM8q5eatk2/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/12x5fAPl1U05wUHCI5O0uq" - }, - "href": "https://api.spotify.com/v1/artists/12x5fAPl1U05wUHCI5O0uq", - "id": "12x5fAPl1U05wUHCI5O0uq", - "name": "Right-O", - "type": "artist", - "uri": "spotify:artist:12x5fAPl1U05wUHCI5O0uq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 216920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2h07NImWicduAsv0P1YAJj" - }, - "href": "https://api.spotify.com/v1/tracks/2h07NImWicduAsv0P1YAJj", - "id": "2h07NImWicduAsv0P1YAJj", - "restrictions": { "reason": "market" }, - "name": "Mind Control", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2h07NImWicduAsv0P1YAJj", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/4Lx8xU5DQOmnNNCpMOOaoz", + "id": "4Lx8xU5DQOmnNNCpMOOaoz", + "type": "track", + "uri": "spotify:track:4Lx8xU5DQOmnNNCpMOOaoz" + }, + "name": "It's All For You", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0ONIdjj0gIWoA8vOPlM9ST", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 199386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" + }, + "href": "https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9", + "id": "3eldJOi7FuF7LXoWRneab9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" }, - "copyrights": [ - { "text": "2017 Independant", "type": "C" }, - { "text": "2017 Independant", "type": "P" } - ], - "external_ids": { "upc": "859721943291" }, - "genres": [], - "label": "Independant", - "popularity": 0 - } - }, - { - "added_at": "2017-10-27T06:59:09Z", - "album": { - "album_type": "album", - "total_tracks": 12, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/0Ucqe7Z74UP1DyNcGLiiEH", + "id": "0Ucqe7Z74UP1DyNcGLiiEH", + "type": "track", + "uri": "spotify:track:0Ucqe7Z74UP1DyNcGLiiEH" + }, + "name": "Don't Give Up On Me", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3eldJOi7FuF7LXoWRneab9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 269733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" + }, + "href": "https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva", + "id": "6yH5jYImETi3IZwAZY1gva", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/5hXgjTSvzx1CtmTtRlCOTZ" + "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" }, - "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ", - "id": "5hXgjTSvzx1CtmTtRlCOTZ", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27305988260c12c85212424cb2e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0205988260c12c85212424cb2e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485105988260c12c85212424cb2e", - "height": 64, - "width": 64 - } - ], - "name": "Under the Covers, Vol. II", - "release_date": "2017-10-27", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5hXgjTSvzx1CtmTtRlCOTZ", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/5hXgjTSvzx1CtmTtRlCOTZ/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 12, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 281845, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" - }, - "href": "https://api.spotify.com/v1/tracks/0fpkBN2LzdoK4Tye8xKHj8", - "id": "0fpkBN2LzdoK4Tye8xKHj8", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5IHEdF6MgXf40QE3RDHtzt" - }, - "href": "https://api.spotify.com/v1/tracks/5IHEdF6MgXf40QE3RDHtzt", - "id": "5IHEdF6MgXf40QE3RDHtzt", - "type": "track", - "uri": "spotify:track:5IHEdF6MgXf40QE3RDHtzt" - }, - "name": "Africa", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0fpkBN2LzdoK4Tye8xKHj8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 267838, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" - }, - "href": "https://api.spotify.com/v1/tracks/3F8hWUkNzeLUUhUZeLkV81", - "id": "3F8hWUkNzeLUUhUZeLkV81", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2GN3Rt5qC68aZvw8zmtTkC" - }, - "href": "https://api.spotify.com/v1/tracks/2GN3Rt5qC68aZvw8zmtTkC", - "id": "2GN3Rt5qC68aZvw8zmtTkC", - "type": "track", - "uri": "spotify:track:2GN3Rt5qC68aZvw8zmtTkC" - }, - "name": "More Than a Feeling", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3F8hWUkNzeLUUhUZeLkV81", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 262142, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" - }, - "href": "https://api.spotify.com/v1/tracks/1HMNvplSW6H9PV0fuetvTr", - "id": "1HMNvplSW6H9PV0fuetvTr", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1kyZdBlUpvZFPZdhxQvsVj" - }, - "href": "https://api.spotify.com/v1/tracks/1kyZdBlUpvZFPZdhxQvsVj", - "id": "1kyZdBlUpvZFPZdhxQvsVj", - "type": "track", - "uri": "spotify:track:1kyZdBlUpvZFPZdhxQvsVj" - }, - "name": "Limelight", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:1HMNvplSW6H9PV0fuetvTr", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 223300, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" - }, - "href": "https://api.spotify.com/v1/tracks/2qGsVqQJFtknAtR37CAttT", - "id": "2qGsVqQJFtknAtR37CAttT", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6QTuFdY6uZixx4NkRmVJi3" - }, - "href": "https://api.spotify.com/v1/tracks/6QTuFdY6uZixx4NkRmVJi3", - "id": "6QTuFdY6uZixx4NkRmVJi3", - "type": "track", - "uri": "spotify:track:6QTuFdY6uZixx4NkRmVJi3" - }, - "name": "Pour Some Sugar on Me", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2qGsVqQJFtknAtR37CAttT", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 262883, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" - }, - "href": "https://api.spotify.com/v1/tracks/2fVCjb09bMzkiozFRQy2Cl", - "id": "2fVCjb09bMzkiozFRQy2Cl", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1RSB4C6tFOrbRgQhklvETU" - }, - "href": "https://api.spotify.com/v1/tracks/1RSB4C6tFOrbRgQhklvETU", - "id": "1RSB4C6tFOrbRgQhklvETU", - "type": "track", - "uri": "spotify:track:1RSB4C6tFOrbRgQhklvETU" - }, - "name": "Something About You", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:2fVCjb09bMzkiozFRQy2Cl", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 321158, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" - }, - "href": "https://api.spotify.com/v1/tracks/53RvyCGHmdcGisi7ohScVb", - "id": "53RvyCGHmdcGisi7ohScVb", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/43Mb0MmXn8tCa2WFnuG8Ll" - }, - "href": "https://api.spotify.com/v1/tracks/43Mb0MmXn8tCa2WFnuG8Ll", - "id": "43Mb0MmXn8tCa2WFnuG8Ll", - "type": "track", - "uri": "spotify:track:43Mb0MmXn8tCa2WFnuG8Ll" - }, - "name": "In Your Eyes", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:53RvyCGHmdcGisi7ohScVb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203705, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" - }, - "href": "https://api.spotify.com/v1/tracks/0qi8fD0IVKSggOYHPhQv95", - "id": "0qi8fD0IVKSggOYHPhQv95", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3WQGwy4LNHMmeeb2PDfgWo" - }, - "href": "https://api.spotify.com/v1/tracks/3WQGwy4LNHMmeeb2PDfgWo", - "id": "3WQGwy4LNHMmeeb2PDfgWo", - "type": "track", - "uri": "spotify:track:3WQGwy4LNHMmeeb2PDfgWo" - }, - "name": "Heat of the Moment", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:0qi8fD0IVKSggOYHPhQv95", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 245947, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" - }, - "href": "https://api.spotify.com/v1/tracks/6jejZfb7GilMwqfUQDKFCy", - "id": "6jejZfb7GilMwqfUQDKFCy", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7fX3wR67GCCvVOAf3G8KRE" - }, - "href": "https://api.spotify.com/v1/tracks/7fX3wR67GCCvVOAf3G8KRE", - "id": "7fX3wR67GCCvVOAf3G8KRE", - "type": "track", - "uri": "spotify:track:7fX3wR67GCCvVOAf3G8KRE" - }, - "name": "You Spin Me Round (Like a Record)", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:6jejZfb7GilMwqfUQDKFCy", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 282929, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" - }, - "href": "https://api.spotify.com/v1/tracks/6GuZK6T75DshC2QiYPBKV0", - "id": "6GuZK6T75DshC2QiYPBKV0", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1UJIy63m1gIRwG8pnlwOuA" - }, - "href": "https://api.spotify.com/v1/tracks/1UJIy63m1gIRwG8pnlwOuA", - "id": "1UJIy63m1gIRwG8pnlwOuA", - "type": "track", - "uri": "spotify:track:1UJIy63m1gIRwG8pnlwOuA" - }, - "name": "Don't Lose My Number", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:6GuZK6T75DshC2QiYPBKV0", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 205357, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" - }, - "href": "https://api.spotify.com/v1/tracks/0x3VVm9d10EU5tdwqJ4k9J", - "id": "0x3VVm9d10EU5tdwqJ4k9J", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6wgaV6DPkO3Gi2AmN1uYJn" - }, - "href": "https://api.spotify.com/v1/tracks/6wgaV6DPkO3Gi2AmN1uYJn", - "id": "6wgaV6DPkO3Gi2AmN1uYJn", - "type": "track", - "uri": "spotify:track:6wgaV6DPkO3Gi2AmN1uYJn" - }, - "name": "I Wish", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:0x3VVm9d10EU5tdwqJ4k9J", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233167, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" - }, - "href": "https://api.spotify.com/v1/tracks/7iOAjvVx8JS3j9ZvcJZzaL", - "id": "7iOAjvVx8JS3j9ZvcJZzaL", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3zWUeG4zGXdCrcHX5eGxId" - }, - "href": "https://api.spotify.com/v1/tracks/3zWUeG4zGXdCrcHX5eGxId", - "id": "3zWUeG4zGXdCrcHX5eGxId", - "type": "track", - "uri": "spotify:track:3zWUeG4zGXdCrcHX5eGxId" - }, - "name": "Your Wildest Dreams", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:7iOAjvVx8JS3j9ZvcJZzaL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 250862, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" - }, - "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", - "id": "6UbGGbBpSfmFDyG17OFuId", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3lH4ASiSIFbmyivT3WD6Tp" - }, - "href": "https://api.spotify.com/v1/tracks/3lH4ASiSIFbmyivT3WD6Tp", - "id": "3lH4ASiSIFbmyivT3WD6Tp", - "type": "track", - "uri": "spotify:track:3lH4ASiSIFbmyivT3WD6Tp" - }, - "name": "Rocket Man", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/1yu6lK4SPpvv1b9OtUZ50V", + "id": "1yu6lK4SPpvv1b9OtUZ50V", + "type": "track", + "uri": "spotify:track:1yu6lK4SPpvv1b9OtUZ50V" + }, + "name": "Up", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:6yH5jYImETi3IZwAZY1gva", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 261440, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" + }, + "href": "https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd", + "id": "0qStm2vt5sMGgzbp68dADd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" }, - "copyrights": [ - { "text": "2017 Ninja Sex Party", "type": "C" }, - { "text": "2017 Ninja Sex Party", "type": "P" } - ], - "external_ids": { "upc": "191924181712" }, - "genres": [], - "label": "Ninja Sex Party", - "popularity": 0 - } - }, - { - "added_at": "2017-09-17T20:15:03Z", - "album": { - "album_type": "album", - "total_tracks": 15, - "available_markets": [], + "href": "https://api.spotify.com/v1/tracks/5cgPKFbHlpiC7OwNgRFp19", + "id": "5cgPKFbHlpiC7OwNgRFp19", + "type": "track", + "uri": "spotify:track:5cgPKFbHlpiC7OwNgRFp19" + }, + "name": "Come On Love", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:0qStm2vt5sMGgzbp68dADd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01pKrlgPJhm5dB4lneYAqS" + }, + "href": "https://api.spotify.com/v1/artists/01pKrlgPJhm5dB4lneYAqS", + "id": "01pKrlgPJhm5dB4lneYAqS", + "name": "Sigma", + "type": "artist", + "uri": "spotify:artist:01pKrlgPJhm5dB4lneYAqS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" + }, + "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", + "id": "1XgFuvRd7r5g0h844A5ZUQ", + "name": "Take That", + "type": "artist", + "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 197453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" + }, + "href": "https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth", + "id": "2ddfMbBXPXgq2gjWBe0Mth", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6cyUcKNdyK1NRBQ7vjEwVY" + "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" }, - "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY", - "id": "6cyUcKNdyK1NRBQ7vjEwVY", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2738719c1988fa08b227865e873", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e028719c1988fa08b227865e873", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048518719c1988fa08b227865e873", - "height": 64, - "width": 64 - } - ], - "name": "Wonderland (Deluxe)", - "release_date": "2017-03-24", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6cyUcKNdyK1NRBQ7vjEwVY", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6cyUcKNdyK1NRBQ7vjEwVY/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 15, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 293266, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" - }, - "href": "https://api.spotify.com/v1/tracks/4BlCSLODDzs7WObKGS8v0F", - "id": "4BlCSLODDzs7WObKGS8v0F", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4KN1xC3IVZCA5c5h5yIHsH" - }, - "href": "https://api.spotify.com/v1/tracks/4KN1xC3IVZCA5c5h5yIHsH", - "id": "4KN1xC3IVZCA5c5h5yIHsH", - "type": "track", - "uri": "spotify:track:4KN1xC3IVZCA5c5h5yIHsH" - }, - "name": "Wonderland", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4BlCSLODDzs7WObKGS8v0F", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233613, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" - }, - "href": "https://api.spotify.com/v1/tracks/0dhMVWyuExZRNEDcSaxcpk", - "id": "0dhMVWyuExZRNEDcSaxcpk", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1GlyElASkmRfmPIEfxMlTC" - }, - "href": "https://api.spotify.com/v1/tracks/1GlyElASkmRfmPIEfxMlTC", - "id": "1GlyElASkmRfmPIEfxMlTC", - "type": "track", - "uri": "spotify:track:1GlyElASkmRfmPIEfxMlTC" - }, - "name": "Giants", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:0dhMVWyuExZRNEDcSaxcpk", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 209720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" - }, - "href": "https://api.spotify.com/v1/tracks/3V3zCg3kqfeag16CRxyOOs", - "id": "3V3zCg3kqfeag16CRxyOOs", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/66W3clk73gnkw3E1aflNrP" - }, - "href": "https://api.spotify.com/v1/tracks/66W3clk73gnkw3E1aflNrP", - "id": "66W3clk73gnkw3E1aflNrP", - "type": "track", - "uri": "spotify:track:66W3clk73gnkw3E1aflNrP" - }, - "name": "New Day", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:3V3zCg3kqfeag16CRxyOOs", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 209106, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" - }, - "href": "https://api.spotify.com/v1/tracks/38Uy1sMppejotYXJUqPUYq", - "id": "38Uy1sMppejotYXJUqPUYq", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1F0ZBh5thKn3aL8oEk0eyJ" - }, - "href": "https://api.spotify.com/v1/tracks/1F0ZBh5thKn3aL8oEk0eyJ", - "id": "1F0ZBh5thKn3aL8oEk0eyJ", - "type": "track", - "uri": "spotify:track:1F0ZBh5thKn3aL8oEk0eyJ" - }, - "name": "Lucky Stars", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:38Uy1sMppejotYXJUqPUYq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 233906, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" - }, - "href": "https://api.spotify.com/v1/tracks/7437sm1u9zsNAtFmH1ZE16", - "id": "7437sm1u9zsNAtFmH1ZE16", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2T2S4nzIZLr9wSiFbEntsW" - }, - "href": "https://api.spotify.com/v1/tracks/2T2S4nzIZLr9wSiFbEntsW", - "id": "2T2S4nzIZLr9wSiFbEntsW", - "type": "track", - "uri": "spotify:track:2T2S4nzIZLr9wSiFbEntsW" - }, - "name": "And The Band Plays", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:7437sm1u9zsNAtFmH1ZE16", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 194106, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" - }, - "href": "https://api.spotify.com/v1/tracks/2kIqgQtq2yHCwkTKS4Vs36", - "id": "2kIqgQtq2yHCwkTKS4Vs36", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4hIimoY7T2xMWkVIlBzE9i" - }, - "href": "https://api.spotify.com/v1/tracks/4hIimoY7T2xMWkVIlBzE9i", - "id": "4hIimoY7T2xMWkVIlBzE9i", - "type": "track", - "uri": "spotify:track:4hIimoY7T2xMWkVIlBzE9i" - }, - "name": "Superstar", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:2kIqgQtq2yHCwkTKS4Vs36", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 224800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" - }, - "href": "https://api.spotify.com/v1/tracks/1T5CW62fLSdOLsRT0BUir8", - "id": "1T5CW62fLSdOLsRT0BUir8", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5JTQ4h07j2UwgL32YFvkLf" - }, - "href": "https://api.spotify.com/v1/tracks/5JTQ4h07j2UwgL32YFvkLf", - "id": "5JTQ4h07j2UwgL32YFvkLf", - "type": "track", - "uri": "spotify:track:5JTQ4h07j2UwgL32YFvkLf" - }, - "name": "Hope", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:1T5CW62fLSdOLsRT0BUir8", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 175040, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" - }, - "href": "https://api.spotify.com/v1/tracks/51jxNWFFT5WUXIErQzwiUY", - "id": "51jxNWFFT5WUXIErQzwiUY", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1stKEQ8sgdcYGlasyTNFRx" - }, - "href": "https://api.spotify.com/v1/tracks/1stKEQ8sgdcYGlasyTNFRx", - "id": "1stKEQ8sgdcYGlasyTNFRx", - "type": "track", - "uri": "spotify:track:1stKEQ8sgdcYGlasyTNFRx" - }, - "name": "River", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:51jxNWFFT5WUXIErQzwiUY", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 196453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" - }, - "href": "https://api.spotify.com/v1/tracks/018jJKmcAvODfvyNuBfcjm", - "id": "018jJKmcAvODfvyNuBfcjm", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4Agh7A8QEcK6ojtTTKONFK" - }, - "href": "https://api.spotify.com/v1/tracks/4Agh7A8QEcK6ojtTTKONFK", - "id": "4Agh7A8QEcK6ojtTTKONFK", - "type": "track", - "uri": "spotify:track:4Agh7A8QEcK6ojtTTKONFK" - }, - "name": "The Last Poet", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:018jJKmcAvODfvyNuBfcjm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 252760, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" - }, - "href": "https://api.spotify.com/v1/tracks/6RxdVdQS85HYIpXwJw1j6J", - "id": "6RxdVdQS85HYIpXwJw1j6J", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0EiDO4qFMDbaKe4ETIz0ur" - }, - "href": "https://api.spotify.com/v1/tracks/0EiDO4qFMDbaKe4ETIz0ur", - "id": "0EiDO4qFMDbaKe4ETIz0ur", - "type": "track", - "uri": "spotify:track:0EiDO4qFMDbaKe4ETIz0ur" - }, - "name": "Every Revolution", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:6RxdVdQS85HYIpXwJw1j6J", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 269466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" - }, - "href": "https://api.spotify.com/v1/tracks/0ONIdjj0gIWoA8vOPlM9ST", - "id": "0ONIdjj0gIWoA8vOPlM9ST", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4Lx8xU5DQOmnNNCpMOOaoz" - }, - "href": "https://api.spotify.com/v1/tracks/4Lx8xU5DQOmnNNCpMOOaoz", - "id": "4Lx8xU5DQOmnNNCpMOOaoz", - "type": "track", - "uri": "spotify:track:4Lx8xU5DQOmnNNCpMOOaoz" - }, - "name": "It's All For You", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:0ONIdjj0gIWoA8vOPlM9ST", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 199386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" - }, - "href": "https://api.spotify.com/v1/tracks/3eldJOi7FuF7LXoWRneab9", - "id": "3eldJOi7FuF7LXoWRneab9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Ucqe7Z74UP1DyNcGLiiEH" - }, - "href": "https://api.spotify.com/v1/tracks/0Ucqe7Z74UP1DyNcGLiiEH", - "id": "0Ucqe7Z74UP1DyNcGLiiEH", - "type": "track", - "uri": "spotify:track:0Ucqe7Z74UP1DyNcGLiiEH" - }, - "name": "Don't Give Up On Me", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:3eldJOi7FuF7LXoWRneab9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 269733, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" - }, - "href": "https://api.spotify.com/v1/tracks/6yH5jYImETi3IZwAZY1gva", - "id": "6yH5jYImETi3IZwAZY1gva", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1yu6lK4SPpvv1b9OtUZ50V" - }, - "href": "https://api.spotify.com/v1/tracks/1yu6lK4SPpvv1b9OtUZ50V", - "id": "1yu6lK4SPpvv1b9OtUZ50V", - "type": "track", - "uri": "spotify:track:1yu6lK4SPpvv1b9OtUZ50V" - }, - "name": "Up", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:6yH5jYImETi3IZwAZY1gva", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 261440, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" - }, - "href": "https://api.spotify.com/v1/tracks/0qStm2vt5sMGgzbp68dADd", - "id": "0qStm2vt5sMGgzbp68dADd", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5cgPKFbHlpiC7OwNgRFp19" - }, - "href": "https://api.spotify.com/v1/tracks/5cgPKFbHlpiC7OwNgRFp19", - "id": "5cgPKFbHlpiC7OwNgRFp19", - "type": "track", - "uri": "spotify:track:5cgPKFbHlpiC7OwNgRFp19" - }, - "name": "Come On Love", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:0qStm2vt5sMGgzbp68dADd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/01pKrlgPJhm5dB4lneYAqS" - }, - "href": "https://api.spotify.com/v1/artists/01pKrlgPJhm5dB4lneYAqS", - "id": "01pKrlgPJhm5dB4lneYAqS", - "name": "Sigma", - "type": "artist", - "uri": "spotify:artist:01pKrlgPJhm5dB4lneYAqS" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1XgFuvRd7r5g0h844A5ZUQ" - }, - "href": "https://api.spotify.com/v1/artists/1XgFuvRd7r5g0h844A5ZUQ", - "id": "1XgFuvRd7r5g0h844A5ZUQ", - "name": "Take That", - "type": "artist", - "uri": "spotify:artist:1XgFuvRd7r5g0h844A5ZUQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 197453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" - }, - "href": "https://api.spotify.com/v1/tracks/2ddfMbBXPXgq2gjWBe0Mth", - "id": "2ddfMbBXPXgq2gjWBe0Mth", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4zJIKsSumCbZgcbWz1UNPL" - }, - "href": "https://api.spotify.com/v1/tracks/4zJIKsSumCbZgcbWz1UNPL", - "id": "4zJIKsSumCbZgcbWz1UNPL", - "type": "track", - "uri": "spotify:track:4zJIKsSumCbZgcbWz1UNPL" - }, - "name": "Cry", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:2ddfMbBXPXgq2gjWBe0Mth", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/4zJIKsSumCbZgcbWz1UNPL", + "id": "4zJIKsSumCbZgcbWz1UNPL", + "type": "track", + "uri": "spotify:track:4zJIKsSumCbZgcbWz1UNPL" + }, + "name": "Cry", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:2ddfMbBXPXgq2gjWBe0Mth", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "\u00a9 2017 Polydor Ltd. (UK)", "type": "C" }, + { "text": "\u2117 2017 Polydor Ltd. (UK)", "type": "P" } + ], + "external_ids": { "upc": "00602557441154" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2017-08-26T22:34:42Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0fMJhuTXyqcPEP0B864j8T" + }, + "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T", + "id": "0fMJhuTXyqcPEP0B864j8T", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22", + "height": 64, + "width": 64 + } + ], + "name": "Here With You", + "release_date": "2017-06-30", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0fMJhuTXyqcPEP0B864j8T", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" + }, + "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", + "id": "7f5Zgnp2spUuuzKplmRkt7", + "name": "Lost Frequencies", + "type": "artist", + "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" + }, + "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", + "id": "5TgQ66WuWkoQ2xYxaSTnVP", + "name": "Netsky", + "type": "artist", + "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" + }, + "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", + "id": "7f5Zgnp2spUuuzKplmRkt7", + "name": "Lost Frequencies", + "type": "artist", + "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" }, - "copyrights": [ - { "text": "\u00a9 2017 Polydor Ltd. (UK)", "type": "C" }, - { "text": "\u2117 2017 Polydor Ltd. (UK)", "type": "P" } - ], - "external_ids": { "upc": "00602557441154" }, - "genres": [], - "label": "Universal Music Group", - "popularity": 0 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" + }, + "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", + "id": "5TgQ66WuWkoQ2xYxaSTnVP", + "name": "Netsky", + "type": "artist", + "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 159023, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F" + }, + "href": "https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F", + "id": "0u6KLyKbuqAe3aiol9UV8F", + "name": "Here With You", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0u6KLyKbuqAe3aiol9UV8F", + "is_local": false } + ] }, - { - "added_at": "2017-08-26T22:34:42Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "copyrights": [ + { + "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", + "type": "C" + }, + { + "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", + "type": "P" + } + ], + "external_ids": { "upc": "8718522152665" }, + "genres": [], + "label": "Armada Music", + "popularity": 17 + } + }, + { + "added_at": "2017-08-11T16:48:33Z", + "album": { + "album_type": "single", + "total_tracks": 6, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/6LaLU27ZPXimJIbpbiOahr" + }, + "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr", + "id": "6LaLU27ZPXimJIbpbiOahr", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27330800bfbfff51ddb031d9bd7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0230800bfbfff51ddb031d9bd7", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485130800bfbfff51ddb031d9bd7", + "height": 64, + "width": 64 + } + ], + "name": "AV\u012aCI (01)", + "release_date": "2017-08-10", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6LaLU27ZPXimJIbpbiOahr", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 6, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2fVW2ix4ANKiofDZIsy1XR" + }, + "href": "https://api.spotify.com/v1/artists/2fVW2ix4ANKiofDZIsy1XR", + "id": "2fVW2ix4ANKiofDZIsy1XR", + "name": "Vargas & Lagola", + "type": "artist", + "uri": "spotify:artist:2fVW2ix4ANKiofDZIsy1XR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 159863, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" + }, + "href": "https://api.spotify.com/v1/tracks/79UX8fkSsowWI1HOd8VoYt", + "id": "79UX8fkSsowWI1HOd8VoYt", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0fMJhuTXyqcPEP0B864j8T" + "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" }, - "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T", - "id": "0fMJhuTXyqcPEP0B864j8T", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273d1686e9f897c253c8d72cc22", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02d1686e9f897c253c8d72cc22", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851d1686e9f897c253c8d72cc22", - "height": 64, - "width": 64 - } - ], - "name": "Here With You", - "release_date": "2017-06-30", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0fMJhuTXyqcPEP0B864j8T", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" - }, - "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", - "id": "7f5Zgnp2spUuuzKplmRkt7", - "name": "Lost Frequencies", - "type": "artist", - "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" - }, - "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", - "id": "5TgQ66WuWkoQ2xYxaSTnVP", - "name": "Netsky", - "type": "artist", - "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0fMJhuTXyqcPEP0B864j8T/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7f5Zgnp2spUuuzKplmRkt7" - }, - "href": "https://api.spotify.com/v1/artists/7f5Zgnp2spUuuzKplmRkt7", - "id": "7f5Zgnp2spUuuzKplmRkt7", - "name": "Lost Frequencies", - "type": "artist", - "uri": "spotify:artist:7f5Zgnp2spUuuzKplmRkt7" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP" - }, - "href": "https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP", - "id": "5TgQ66WuWkoQ2xYxaSTnVP", - "name": "Netsky", - "type": "artist", - "uri": "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 159023, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0u6KLyKbuqAe3aiol9UV8F" - }, - "href": "https://api.spotify.com/v1/tracks/0u6KLyKbuqAe3aiol9UV8F", - "id": "0u6KLyKbuqAe3aiol9UV8F", - "name": "Here With You", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0u6KLyKbuqAe3aiol9UV8F", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/5wl32jJoBEyWUaDOtJVoMo", + "id": "5wl32jJoBEyWUaDOtJVoMo", + "type": "track", + "uri": "spotify:track:5wl32jJoBEyWUaDOtJVoMo" + }, + "name": "Friend Of Mine (feat. Vargas & Lagola)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:79UX8fkSsowWI1HOd8VoYt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" }, - "copyrights": [ - { - "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", - "type": "C" - }, - { - "text": "2017 Lost & Cie under exclusive license to Armada Music B.V.", - "type": "P" - } - ], - "external_ids": { "upc": "8718522152665" }, - "genres": [], - "label": "Armada Music", - "popularity": 17 - } - }, - { - "added_at": "2017-08-11T16:48:33Z", - "album": { - "album_type": "single", - "total_tracks": 6, - "available_markets": [], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5CCwRZC6euC8Odo6y9X8jr" + }, + "href": "https://api.spotify.com/v1/artists/5CCwRZC6euC8Odo6y9X8jr", + "id": "5CCwRZC6euC8Odo6y9X8jr", + "name": "Rita Ora", + "type": "artist", + "uri": "spotify:artist:5CCwRZC6euC8Odo6y9X8jr" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 181812, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" + }, + "href": "https://api.spotify.com/v1/tracks/75NhhYjHO43mvZgYtnXgti", + "id": "75NhhYjHO43mvZgYtnXgti", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6LaLU27ZPXimJIbpbiOahr" + "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" }, - "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr", - "id": "6LaLU27ZPXimJIbpbiOahr", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27330800bfbfff51ddb031d9bd7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0230800bfbfff51ddb031d9bd7", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485130800bfbfff51ddb031d9bd7", - "height": 64, - "width": 64 - } - ], - "name": "AV\u012aCI (01)", - "release_date": "2017-08-10", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6LaLU27ZPXimJIbpbiOahr", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6LaLU27ZPXimJIbpbiOahr/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 6, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2fVW2ix4ANKiofDZIsy1XR" - }, - "href": "https://api.spotify.com/v1/artists/2fVW2ix4ANKiofDZIsy1XR", - "id": "2fVW2ix4ANKiofDZIsy1XR", - "name": "Vargas & Lagola", - "type": "artist", - "uri": "spotify:artist:2fVW2ix4ANKiofDZIsy1XR" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 159863, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" - }, - "href": "https://api.spotify.com/v1/tracks/79UX8fkSsowWI1HOd8VoYt", - "id": "79UX8fkSsowWI1HOd8VoYt", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5wl32jJoBEyWUaDOtJVoMo" - }, - "href": "https://api.spotify.com/v1/tracks/5wl32jJoBEyWUaDOtJVoMo", - "id": "5wl32jJoBEyWUaDOtJVoMo", - "type": "track", - "uri": "spotify:track:5wl32jJoBEyWUaDOtJVoMo" - }, - "name": "Friend Of Mine (feat. Vargas & Lagola)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:79UX8fkSsowWI1HOd8VoYt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5CCwRZC6euC8Odo6y9X8jr" - }, - "href": "https://api.spotify.com/v1/artists/5CCwRZC6euC8Odo6y9X8jr", - "id": "5CCwRZC6euC8Odo6y9X8jr", - "name": "Rita Ora", - "type": "artist", - "uri": "spotify:artist:5CCwRZC6euC8Odo6y9X8jr" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 181812, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" - }, - "href": "https://api.spotify.com/v1/tracks/75NhhYjHO43mvZgYtnXgti", - "id": "75NhhYjHO43mvZgYtnXgti", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0" - }, - "href": "https://api.spotify.com/v1/tracks/7DoN0sCGIT9IcLrtBDm4f0", - "id": "7DoN0sCGIT9IcLrtBDm4f0", - "type": "track", - "uri": "spotify:track:7DoN0sCGIT9IcLrtBDm4f0" - }, - "name": "Lonely Together (feat. Rita Ora)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:75NhhYjHO43mvZgYtnXgti", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5gw5ANPCVcxU0maLiGRzzP" - }, - "href": "https://api.spotify.com/v1/artists/5gw5ANPCVcxU0maLiGRzzP", - "id": "5gw5ANPCVcxU0maLiGRzzP", - "name": "Billy Raffoul", - "type": "artist", - "uri": "spotify:artist:5gw5ANPCVcxU0maLiGRzzP" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 207545, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" - }, - "href": "https://api.spotify.com/v1/tracks/630svau24EHHzw1kNk0Bdq", - "id": "630svau24EHHzw1kNk0Bdq", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" - }, - "href": "https://api.spotify.com/v1/tracks/7GaiXtje26gnTVWE1iCcHl", - "id": "7GaiXtje26gnTVWE1iCcHl", - "type": "track", - "uri": "spotify:track:7GaiXtje26gnTVWE1iCcHl" - }, - "name": "You Be Love (feat. Billy Raffoul)", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:630svau24EHHzw1kNk0Bdq", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" - }, - "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", - "id": "5JYo7gm2dkyLLlWHjxS7Dy", - "name": "Sandro Cavazza", - "type": "artist", - "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 181672, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" - }, - "href": "https://api.spotify.com/v1/tracks/6Pgkp4qUoTmJIPn7ReaGxL", - "id": "6Pgkp4qUoTmJIPn7ReaGxL", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" - }, - "href": "https://api.spotify.com/v1/tracks/6WbADFqMvR8N5u0BvtsWQE", - "id": "6WbADFqMvR8N5u0BvtsWQE", - "type": "track", - "uri": "spotify:track:6WbADFqMvR8N5u0BvtsWQE" - }, - "name": "Without You (feat. Sandro Cavazza)", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6Pgkp4qUoTmJIPn7ReaGxL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2VAnyOxzJuSAj7XIuEOT38" - }, - "href": "https://api.spotify.com/v1/artists/2VAnyOxzJuSAj7XIuEOT38", - "id": "2VAnyOxzJuSAj7XIuEOT38", - "name": "AlunaGeorge", - "type": "artist", - "uri": "spotify:artist:2VAnyOxzJuSAj7XIuEOT38" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 185454, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" - }, - "href": "https://api.spotify.com/v1/tracks/1vkXc8Tz3dZGNZoU2WF3la", - "id": "1vkXc8Tz3dZGNZoU2WF3la", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" - }, - "href": "https://api.spotify.com/v1/tracks/4lwSYcFSDeyY8jdSedZH4j", - "id": "4lwSYcFSDeyY8jdSedZH4j", - "type": "track", - "uri": "spotify:track:4lwSYcFSDeyY8jdSedZH4j" - }, - "name": "What Would I Change It To (feat. AlunaGeorge)", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:1vkXc8Tz3dZGNZoU2WF3la", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" - }, - "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", - "id": "1vCWHaC5f2uS3yhpwWbIA6", - "name": "Avicii", - "type": "artist", - "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" - }, - "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", - "id": "5JYo7gm2dkyLLlWHjxS7Dy", - "name": "Sandro Cavazza", - "type": "artist", - "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 157152, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" - }, - "href": "https://api.spotify.com/v1/tracks/6i3WMnuvd8DtczaGIMJvwC", - "id": "6i3WMnuvd8DtczaGIMJvwC", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" - }, - "href": "https://api.spotify.com/v1/tracks/5VsJtruWxQBZ3DVD0LXPZn", - "id": "5VsJtruWxQBZ3DVD0LXPZn", - "type": "track", - "uri": "spotify:track:5VsJtruWxQBZ3DVD0LXPZn" - }, - "name": "So Much Better - Avicii Remix", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6i3WMnuvd8DtczaGIMJvwC", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/7DoN0sCGIT9IcLrtBDm4f0", + "id": "7DoN0sCGIT9IcLrtBDm4f0", + "type": "track", + "uri": "spotify:track:7DoN0sCGIT9IcLrtBDm4f0" + }, + "name": "Lonely Together (feat. Rita Ora)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:75NhhYjHO43mvZgYtnXgti", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" }, - "copyrights": [ - { - "text": "\u00a9 2017 Avicii Music AB, under exclusive license to Universal Music AB", - "type": "C" - }, - { - "text": "\u2117 2017 Avicii Music AB, under exclusive license to Universal Music AB", - "type": "P" - } - ], - "external_ids": { "upc": "00602557906585" }, - "genres": [], - "label": "Universal Music Group", - "popularity": 1 - } - }, - { - "added_at": "2017-05-23T10:38:32Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5gw5ANPCVcxU0maLiGRzzP" + }, + "href": "https://api.spotify.com/v1/artists/5gw5ANPCVcxU0maLiGRzzP", + "id": "5gw5ANPCVcxU0maLiGRzzP", + "name": "Billy Raffoul", + "type": "artist", + "uri": "spotify:artist:5gw5ANPCVcxU0maLiGRzzP" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 207545, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" + }, + "href": "https://api.spotify.com/v1/tracks/630svau24EHHzw1kNk0Bdq", + "id": "630svau24EHHzw1kNk0Bdq", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0gIYOk2pcLnZONGE0N9X5p" + "spotify": "https://open.spotify.com/track/7GaiXtje26gnTVWE1iCcHl" }, - "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p", - "id": "0gIYOk2pcLnZONGE0N9X5p", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273cfb930f506a0243b1f498a1a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02cfb930f506a0243b1f498a1a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851cfb930f506a0243b1f498a1a", - "height": 64, - "width": 64 - } - ], - "name": "Up Till Dawn (On The Move)", - "release_date": "2017-04-28", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0gIYOk2pcLnZONGE0N9X5p", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" - }, - "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", - "id": "5wwneIFdawNgQ7GvKK29Z3", - "name": "Lucas & Steve", - "type": "artist", - "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" - }, - "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", - "id": "5wwneIFdawNgQ7GvKK29Z3", - "name": "Lucas & Steve", - "type": "artist", - "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 186405, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" - }, - "href": "https://api.spotify.com/v1/tracks/6wefD5q8rXOg3xHTUZjyio", - "id": "6wefD5q8rXOg3xHTUZjyio", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" - }, - "href": "https://api.spotify.com/v1/tracks/6kZP5MRp51KZJYovS1xIVD", - "id": "6kZP5MRp51KZJYovS1xIVD", - "type": "track", - "uri": "spotify:track:6kZP5MRp51KZJYovS1xIVD" - }, - "name": "Up Till Dawn (On The Move)", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6wefD5q8rXOg3xHTUZjyio", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/7GaiXtje26gnTVWE1iCcHl", + "id": "7GaiXtje26gnTVWE1iCcHl", + "type": "track", + "uri": "spotify:track:7GaiXtje26gnTVWE1iCcHl" + }, + "name": "You Be Love (feat. Billy Raffoul)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:630svau24EHHzw1kNk0Bdq", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" }, - "copyrights": [ - { "text": "2017 SpinninRecords.com", "type": "C" }, - { "text": "2017 SpinninRecords.com", "type": "P" } - ], - "external_ids": { "upc": "8712944555196" }, - "genres": [], - "label": "Spinnin' Records", - "popularity": 0 - } - }, - { - "added_at": "2017-02-06T18:22:32Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" + }, + "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", + "id": "5JYo7gm2dkyLLlWHjxS7Dy", + "name": "Sandro Cavazza", + "type": "artist", + "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 181672, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" + }, + "href": "https://api.spotify.com/v1/tracks/6Pgkp4qUoTmJIPn7ReaGxL", + "id": "6Pgkp4qUoTmJIPn7ReaGxL", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/3KzCJaaRVza9FnSsqtAFeO" + "spotify": "https://open.spotify.com/track/6WbADFqMvR8N5u0BvtsWQE" }, - "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO", - "id": "3KzCJaaRVza9FnSsqtAFeO", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273156aeddf54ed40b1d9d30c9f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02156aeddf54ed40b1d9d30c9f", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851156aeddf54ed40b1d9d30c9f", - "height": 64, - "width": 64 - } - ], - "name": "Believer", - "release_date": "2017-01-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:3KzCJaaRVza9FnSsqtAFeO", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" - }, - "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", - "id": "53XhwfbYqKCa1cC15pYq2q", - "name": "Imagine Dragons", - "type": "artist", - "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" - }, - "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", - "id": "53XhwfbYqKCa1cC15pYq2q", - "name": "Imagine Dragons", - "type": "artist", - "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 203782, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" - }, - "href": "https://api.spotify.com/v1/tracks/0pqnGHJpmpxLKifKRmU6WP", - "id": "0pqnGHJpmpxLKifKRmU6WP", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" - }, - "href": "https://api.spotify.com/v1/tracks/6VRghJeP6I0w1KxkdWFfIh", - "id": "6VRghJeP6I0w1KxkdWFfIh", - "type": "track", - "uri": "spotify:track:6VRghJeP6I0w1KxkdWFfIh" - }, - "name": "Believer", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0pqnGHJpmpxLKifKRmU6WP", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/6WbADFqMvR8N5u0BvtsWQE", + "id": "6WbADFqMvR8N5u0BvtsWQE", + "type": "track", + "uri": "spotify:track:6WbADFqMvR8N5u0BvtsWQE" + }, + "name": "Without You (feat. Sandro Cavazza)", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6Pgkp4qUoTmJIPn7ReaGxL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" }, - "copyrights": [ - { - "text": "\u00a9 2017 KIDinaKORNER/Interscope Records", - "type": "C" - }, - { - "text": "\u2117 2017 KIDinaKORNER/Interscope Records", - "type": "P" - } - ], - "external_ids": { "upc": "00602557443325" }, - "genres": [], - "label": "Universal Music Group", - "popularity": 0 - } - }, - { - "added_at": "2017-01-19T12:31:37Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2VAnyOxzJuSAj7XIuEOT38" + }, + "href": "https://api.spotify.com/v1/artists/2VAnyOxzJuSAj7XIuEOT38", + "id": "2VAnyOxzJuSAj7XIuEOT38", + "name": "AlunaGeorge", + "type": "artist", + "uri": "spotify:artist:2VAnyOxzJuSAj7XIuEOT38" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 185454, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" + }, + "href": "https://api.spotify.com/v1/tracks/1vkXc8Tz3dZGNZoU2WF3la", + "id": "1vkXc8Tz3dZGNZoU2WF3la", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/64vx3cUb97lQGlgt8zozWL" + "spotify": "https://open.spotify.com/track/4lwSYcFSDeyY8jdSedZH4j" }, - "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL", - "id": "64vx3cUb97lQGlgt8zozWL", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273e9cb236aa581ad999b3a73b7", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02e9cb236aa581ad999b3a73b7", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851e9cb236aa581ad999b3a73b7", - "height": 64, - "width": 64 - } - ], - "name": "Paris", - "release_date": "2017-01-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:64vx3cUb97lQGlgt8zozWL", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" - }, - "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", - "id": "69GGBxA162lTqCwzJG5jLp", - "name": "The Chainsmokers", - "type": "artist", - "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" - }, - "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", - "id": "69GGBxA162lTqCwzJG5jLp", - "name": "The Chainsmokers", - "type": "artist", - "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221509, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/15vzANxN8G9wWfwAJLLMCg" - }, - "href": "https://api.spotify.com/v1/tracks/15vzANxN8G9wWfwAJLLMCg", - "id": "15vzANxN8G9wWfwAJLLMCg", - "name": "Paris", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:15vzANxN8G9wWfwAJLLMCg", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/4lwSYcFSDeyY8jdSedZH4j", + "id": "4lwSYcFSDeyY8jdSedZH4j", + "type": "track", + "uri": "spotify:track:4lwSYcFSDeyY8jdSedZH4j" + }, + "name": "What Would I Change It To (feat. AlunaGeorge)", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:1vkXc8Tz3dZGNZoU2WF3la", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6" + }, + "href": "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6", + "id": "1vCWHaC5f2uS3yhpwWbIA6", + "name": "Avicii", + "type": "artist", + "uri": "spotify:artist:1vCWHaC5f2uS3yhpwWbIA6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5JYo7gm2dkyLLlWHjxS7Dy" + }, + "href": "https://api.spotify.com/v1/artists/5JYo7gm2dkyLLlWHjxS7Dy", + "id": "5JYo7gm2dkyLLlWHjxS7Dy", + "name": "Sandro Cavazza", + "type": "artist", + "uri": "spotify:artist:5JYo7gm2dkyLLlWHjxS7Dy" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 157152, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" + }, + "href": "https://api.spotify.com/v1/tracks/6i3WMnuvd8DtczaGIMJvwC", + "id": "6i3WMnuvd8DtczaGIMJvwC", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5VsJtruWxQBZ3DVD0LXPZn" }, - "copyrights": [ - { - "text": "(P) 2017 Disruptor Records/Columbia Records", - "type": "P" - } - ], - "external_ids": { "upc": "886446299686" }, - "genres": [], - "label": "Disruptor Records/Columbia", - "popularity": 52 + "href": "https://api.spotify.com/v1/tracks/5VsJtruWxQBZ3DVD0LXPZn", + "id": "5VsJtruWxQBZ3DVD0LXPZn", + "type": "track", + "uri": "spotify:track:5VsJtruWxQBZ3DVD0LXPZn" + }, + "name": "So Much Better - Avicii Remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6i3WMnuvd8DtczaGIMJvwC", + "is_local": false } + ] }, - { - "added_at": "2017-01-17T19:01:16Z", - "album": { - "album_type": "single", - "total_tracks": 6, - "available_markets": [], + "copyrights": [ + { + "text": "\u00a9 2017 Avicii Music AB, under exclusive license to Universal Music AB", + "type": "C" + }, + { + "text": "\u2117 2017 Avicii Music AB, under exclusive license to Universal Music AB", + "type": "P" + } + ], + "external_ids": { "upc": "00602557906585" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 1 + } + }, + { + "added_at": "2017-05-23T10:38:32Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/0gIYOk2pcLnZONGE0N9X5p" + }, + "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p", + "id": "0gIYOk2pcLnZONGE0N9X5p", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273cfb930f506a0243b1f498a1a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02cfb930f506a0243b1f498a1a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851cfb930f506a0243b1f498a1a", + "height": 64, + "width": 64 + } + ], + "name": "Up Till Dawn (On The Move)", + "release_date": "2017-04-28", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0gIYOk2pcLnZONGE0N9X5p", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" + }, + "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", + "id": "5wwneIFdawNgQ7GvKK29Z3", + "name": "Lucas & Steve", + "type": "artist", + "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0gIYOk2pcLnZONGE0N9X5p/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5wwneIFdawNgQ7GvKK29Z3" + }, + "href": "https://api.spotify.com/v1/artists/5wwneIFdawNgQ7GvKK29Z3", + "id": "5wwneIFdawNgQ7GvKK29Z3", + "name": "Lucas & Steve", + "type": "artist", + "uri": "spotify:artist:5wwneIFdawNgQ7GvKK29Z3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 186405, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" + }, + "href": "https://api.spotify.com/v1/tracks/6wefD5q8rXOg3xHTUZjyio", + "id": "6wefD5q8rXOg3xHTUZjyio", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/0of0qWNbNmUck9ODJzBPA3" - }, - "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3", - "id": "0of0qWNbNmUck9ODJzBPA3", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2731997f03aceb5147e33e550f8", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e021997f03aceb5147e33e550f8", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048511997f03aceb5147e33e550f8", - "height": 64, - "width": 64 - } - ], - "name": "Nerds by Nature - EP", - "release_date": "2017-01-13", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:0of0qWNbNmUck9ODJzBPA3", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 6, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 249979, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" - }, - "href": "https://api.spotify.com/v1/tracks/6MXPrUXjd3i67WYsNmq61D", - "id": "6MXPrUXjd3i67WYsNmq61D", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" - }, - "href": "https://api.spotify.com/v1/tracks/2XRmB8LdCrvO0aCNcSxhHc", - "id": "2XRmB8LdCrvO0aCNcSxhHc", - "type": "track", - "uri": "spotify:track:2XRmB8LdCrvO0aCNcSxhHc" - }, - "name": "Speed of Light", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6MXPrUXjd3i67WYsNmq61D", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1BeMe0yy4Sqo29rnqkZ1tc" - }, - "href": "https://api.spotify.com/v1/artists/1BeMe0yy4Sqo29rnqkZ1tc", - "id": "1BeMe0yy4Sqo29rnqkZ1tc", - "name": "Desir\u00e9e Dawson", - "type": "artist", - "uri": "spotify:artist:1BeMe0yy4Sqo29rnqkZ1tc" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 236198, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" - }, - "href": "https://api.spotify.com/v1/tracks/3ypAa7Vkji9z5GsoXaT5ic", - "id": "3ypAa7Vkji9z5GsoXaT5ic", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" - }, - "href": "https://api.spotify.com/v1/tracks/6x0GHgv2iCpXf8w9VsrZCi", - "id": "6x0GHgv2iCpXf8w9VsrZCi", - "type": "track", - "uri": "spotify:track:6x0GHgv2iCpXf8w9VsrZCi" - }, - "name": "Talk About It (feat. Desir\u00e9e Dawson)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3ypAa7Vkji9z5GsoXaT5ic", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 191349, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" - }, - "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", - "id": "6tfMPcat5tsLjiKt3wfM97", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" - }, - "href": "https://api.spotify.com/v1/tracks/3hQ6oIGy3YyFdtYf8mpIGp", - "id": "3hQ6oIGy3YyFdtYf8mpIGp", - "type": "track", - "uri": "spotify:track:3hQ6oIGy3YyFdtYf8mpIGp" - }, - "name": "Melodymania", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0MYmMGmRg8CFZPNZBAdjm1" - }, - "href": "https://api.spotify.com/v1/artists/0MYmMGmRg8CFZPNZBAdjm1", - "id": "0MYmMGmRg8CFZPNZBAdjm1", - "name": "Quiet Disorder", - "type": "artist", - "uri": "spotify:artist:0MYmMGmRg8CFZPNZBAdjm1" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 207871, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" - }, - "href": "https://api.spotify.com/v1/tracks/5i4d6fgqkt0rKvkyj8J48F", - "id": "5i4d6fgqkt0rKvkyj8J48F", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" - }, - "href": "https://api.spotify.com/v1/tracks/0lsxdqZj5sVGWIKse0xETh", - "id": "0lsxdqZj5sVGWIKse0xETh", - "type": "track", - "uri": "spotify:track:0lsxdqZj5sVGWIKse0xETh" - }, - "name": "Go Berzerk", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5i4d6fgqkt0rKvkyj8J48F", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 239004, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" - }, - "href": "https://api.spotify.com/v1/tracks/73nWSc3002fGRPrnFDev8x", - "id": "73nWSc3002fGRPrnFDev8x", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" - }, - "href": "https://api.spotify.com/v1/tracks/0aSbmMTb9p7OaBcOYqVksr", - "id": "0aSbmMTb9p7OaBcOYqVksr", - "type": "track", - "uri": "spotify:track:0aSbmMTb9p7OaBcOYqVksr" - }, - "name": "BAMF", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:73nWSc3002fGRPrnFDev8x", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 212323, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" - }, - "href": "https://api.spotify.com/v1/tracks/1rjMexUleyOewga9qRrEqb", - "id": "1rjMexUleyOewga9qRrEqb", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" - }, - "href": "https://api.spotify.com/v1/tracks/2oxbgAkN0nJhSz9ngSSXRL", - "id": "2oxbgAkN0nJhSz9ngSSXRL", - "type": "track", - "uri": "spotify:track:2oxbgAkN0nJhSz9ngSSXRL" - }, - "name": "Blackout", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:1rjMexUleyOewga9qRrEqb", - "is_local": false - } - ] + "spotify": "https://open.spotify.com/track/6kZP5MRp51KZJYovS1xIVD" }, - "copyrights": [ - { "text": "2017 Monstercat", "type": "C" }, - { "text": "2017 Monstercat", "type": "P" } - ], - "external_ids": { "upc": "859718752356" }, - "genres": [], - "label": "Monstercat", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/6kZP5MRp51KZJYovS1xIVD", + "id": "6kZP5MRp51KZJYovS1xIVD", + "type": "track", + "uri": "spotify:track:6kZP5MRp51KZJYovS1xIVD" + }, + "name": "Up Till Dawn (On The Move)", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6wefD5q8rXOg3xHTUZjyio", + "is_local": false } + ] }, - { - "added_at": "2016-12-25T00:26:44Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], + "copyrights": [ + { "text": "2017 SpinninRecords.com", "type": "C" }, + { "text": "2017 SpinninRecords.com", "type": "P" } + ], + "external_ids": { "upc": "8712944555196" }, + "genres": [], + "label": "Spinnin' Records", + "popularity": 0 + } + }, + { + "added_at": "2017-02-06T18:22:32Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3KzCJaaRVza9FnSsqtAFeO" + }, + "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO", + "id": "3KzCJaaRVza9FnSsqtAFeO", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273156aeddf54ed40b1d9d30c9f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02156aeddf54ed40b1d9d30c9f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851156aeddf54ed40b1d9d30c9f", + "height": 64, + "width": 64 + } + ], + "name": "Believer", + "release_date": "2017-01-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:3KzCJaaRVza9FnSsqtAFeO", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" + }, + "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", + "id": "53XhwfbYqKCa1cC15pYq2q", + "name": "Imagine Dragons", + "type": "artist", + "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/3KzCJaaRVza9FnSsqtAFeO/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q" + }, + "href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q", + "id": "53XhwfbYqKCa1cC15pYq2q", + "name": "Imagine Dragons", + "type": "artist", + "uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 203782, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" + }, + "href": "https://api.spotify.com/v1/tracks/0pqnGHJpmpxLKifKRmU6WP", + "id": "0pqnGHJpmpxLKifKRmU6WP", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/5TOcXQ3t05FyNZPdWOWAn4" - }, - "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4", - "id": "5TOcXQ3t05FyNZPdWOWAn4", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2736f555a58589dfb4504a320de", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e026f555a58589dfb4504a320de", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048516f555a58589dfb4504a320de", - "height": 64, - "width": 64 - } - ], - "name": "Brand New Friend at Christmas Time", - "release_date": "2017-01-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:5TOcXQ3t05FyNZPdWOWAn4", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" - }, - "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", - "id": "2kQ4uyd7WPQI9xcmeZbI0G", - "name": "The Yogscast", - "type": "artist", - "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" - }, - "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", - "id": "2kQ4uyd7WPQI9xcmeZbI0G", - "name": "The Yogscast", - "type": "artist", - "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 187499, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/4lsqZRyqmntgpilnjdd6gm" - }, - "href": "https://api.spotify.com/v1/tracks/4lsqZRyqmntgpilnjdd6gm", - "id": "4lsqZRyqmntgpilnjdd6gm", - "name": "Brand New Friend at Christmas Time", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4lsqZRyqmntgpilnjdd6gm", - "is_local": false - } - ] + "spotify": "https://open.spotify.com/track/6VRghJeP6I0w1KxkdWFfIh" }, - "copyrights": [ - { "text": "2017 YOGSCAST STUDIOS", "type": "C" }, - { "text": "2017 YOGSCAST STUDIOS", "type": "P" } - ], - "external_ids": { "upc": "5060330600436" }, - "genres": [], - "label": "YOGSCAST STUDIOS", - "popularity": 7 + "href": "https://api.spotify.com/v1/tracks/6VRghJeP6I0w1KxkdWFfIh", + "id": "6VRghJeP6I0w1KxkdWFfIh", + "type": "track", + "uri": "spotify:track:6VRghJeP6I0w1KxkdWFfIh" + }, + "name": "Believer", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0pqnGHJpmpxLKifKRmU6WP", + "is_local": false } + ] + }, + "copyrights": [ + { + "text": "\u00a9 2017 KIDinaKORNER/Interscope Records", + "type": "C" + }, + { + "text": "\u2117 2017 KIDinaKORNER/Interscope Records", + "type": "P" + } + ], + "external_ids": { "upc": "00602557443325" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2017-01-19T12:31:37Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/64vx3cUb97lQGlgt8zozWL" + }, + "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL", + "id": "64vx3cUb97lQGlgt8zozWL", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273e9cb236aa581ad999b3a73b7", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02e9cb236aa581ad999b3a73b7", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851e9cb236aa581ad999b3a73b7", + "height": 64, + "width": 64 + } + ], + "name": "Paris", + "release_date": "2017-01-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:64vx3cUb97lQGlgt8zozWL", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" + }, + "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", + "id": "69GGBxA162lTqCwzJG5jLp", + "name": "The Chainsmokers", + "type": "artist", + "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/64vx3cUb97lQGlgt8zozWL/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/69GGBxA162lTqCwzJG5jLp" + }, + "href": "https://api.spotify.com/v1/artists/69GGBxA162lTqCwzJG5jLp", + "id": "69GGBxA162lTqCwzJG5jLp", + "name": "The Chainsmokers", + "type": "artist", + "uri": "spotify:artist:69GGBxA162lTqCwzJG5jLp" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221509, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15vzANxN8G9wWfwAJLLMCg" + }, + "href": "https://api.spotify.com/v1/tracks/15vzANxN8G9wWfwAJLLMCg", + "id": "15vzANxN8G9wWfwAJLLMCg", + "name": "Paris", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:15vzANxN8G9wWfwAJLLMCg", + "is_local": false + } + ] + }, + "copyrights": [ + { + "text": "(P) 2017 Disruptor Records/Columbia Records", + "type": "P" + } + ], + "external_ids": { "upc": "886446299686" }, + "genres": [], + "label": "Disruptor Records/Columbia", + "popularity": 52 + } + }, + { + "added_at": "2017-01-17T19:01:16Z", + "album": { + "album_type": "single", + "total_tracks": 6, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/0of0qWNbNmUck9ODJzBPA3" }, - { - "added_at": "2016-12-08T18:00:51Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3", + "id": "0of0qWNbNmUck9ODJzBPA3", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2731997f03aceb5147e33e550f8", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e021997f03aceb5147e33e550f8", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048511997f03aceb5147e33e550f8", + "height": 64, + "width": 64 + } + ], + "name": "Nerds by Nature - EP", + "release_date": "2017-01-13", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:0of0qWNbNmUck9ODJzBPA3", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/0of0qWNbNmUck9ODJzBPA3/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 6, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 249979, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" + }, + "href": "https://api.spotify.com/v1/tracks/6MXPrUXjd3i67WYsNmq61D", + "id": "6MXPrUXjd3i67WYsNmq61D", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/4ALxbRHMIs5DBtnUaE3hBG" + "spotify": "https://open.spotify.com/track/2XRmB8LdCrvO0aCNcSxhHc" }, - "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG", - "id": "4ALxbRHMIs5DBtnUaE3hBG", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27311ce9419e0e9ac0a3c5b8fcf", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0211ce9419e0e9ac0a3c5b8fcf", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485111ce9419e0e9ac0a3c5b8fcf", - "height": 64, - "width": 64 - } - ], - "name": "Melodymania", - "release_date": "2016-12-05", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:4ALxbRHMIs5DBtnUaE3hBG", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "name": "Pegboard Nerds", - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 191349, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" - }, - "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", - "id": "6tfMPcat5tsLjiKt3wfM97", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" - }, - "href": "https://api.spotify.com/v1/tracks/6Cyc1MlJ85UKlEE1WYWmcF", - "id": "6Cyc1MlJ85UKlEE1WYWmcF", - "type": "track", - "uri": "spotify:track:6Cyc1MlJ85UKlEE1WYWmcF" - }, - "name": "Melodymania", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/2XRmB8LdCrvO0aCNcSxhHc", + "id": "2XRmB8LdCrvO0aCNcSxhHc", + "type": "track", + "uri": "spotify:track:2XRmB8LdCrvO0aCNcSxhHc" + }, + "name": "Speed of Light", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6MXPrUXjd3i67WYsNmq61D", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" }, - "copyrights": [ - { "text": "2016 Monstercat", "type": "C" }, - { "text": "2016 Monstercat", "type": "P" } - ], - "external_ids": { "upc": "859718914372" }, - "genres": [], - "label": "Monstercat", - "popularity": 0 - } - }, - { - "added_at": "2015-03-02T17:21:06Z", - "album": { - "album_type": "album", - "total_tracks": 10, - "available_markets": [], + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1BeMe0yy4Sqo29rnqkZ1tc" + }, + "href": "https://api.spotify.com/v1/artists/1BeMe0yy4Sqo29rnqkZ1tc", + "id": "1BeMe0yy4Sqo29rnqkZ1tc", + "name": "Desir\u00e9e Dawson", + "type": "artist", + "uri": "spotify:artist:1BeMe0yy4Sqo29rnqkZ1tc" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 236198, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" + }, + "href": "https://api.spotify.com/v1/tracks/3ypAa7Vkji9z5GsoXaT5ic", + "id": "3ypAa7Vkji9z5GsoXaT5ic", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6x0GHgv2iCpXf8w9VsrZCi" + }, + "href": "https://api.spotify.com/v1/tracks/6x0GHgv2iCpXf8w9VsrZCi", + "id": "6x0GHgv2iCpXf8w9VsrZCi", + "type": "track", + "uri": "spotify:track:6x0GHgv2iCpXf8w9VsrZCi" + }, + "name": "Talk About It (feat. Desir\u00e9e Dawson)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3ypAa7Vkji9z5GsoXaT5ic", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 191349, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" + }, + "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", + "id": "6tfMPcat5tsLjiKt3wfM97", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3hQ6oIGy3YyFdtYf8mpIGp" + }, + "href": "https://api.spotify.com/v1/tracks/3hQ6oIGy3YyFdtYf8mpIGp", + "id": "3hQ6oIGy3YyFdtYf8mpIGp", + "type": "track", + "uri": "spotify:track:3hQ6oIGy3YyFdtYf8mpIGp" + }, + "name": "Melodymania", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0MYmMGmRg8CFZPNZBAdjm1" + }, + "href": "https://api.spotify.com/v1/artists/0MYmMGmRg8CFZPNZBAdjm1", + "id": "0MYmMGmRg8CFZPNZBAdjm1", + "name": "Quiet Disorder", + "type": "artist", + "uri": "spotify:artist:0MYmMGmRg8CFZPNZBAdjm1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 207871, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" + }, + "href": "https://api.spotify.com/v1/tracks/5i4d6fgqkt0rKvkyj8J48F", + "id": "5i4d6fgqkt0rKvkyj8J48F", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0lsxdqZj5sVGWIKse0xETh" + }, + "href": "https://api.spotify.com/v1/tracks/0lsxdqZj5sVGWIKse0xETh", + "id": "0lsxdqZj5sVGWIKse0xETh", + "type": "track", + "uri": "spotify:track:0lsxdqZj5sVGWIKse0xETh" + }, + "name": "Go Berzerk", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5i4d6fgqkt0rKvkyj8J48F", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 239004, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" + }, + "href": "https://api.spotify.com/v1/tracks/73nWSc3002fGRPrnFDev8x", + "id": "73nWSc3002fGRPrnFDev8x", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/7MKwNQ5mBmm3GAYRZI6Zxe" + "spotify": "https://open.spotify.com/track/0aSbmMTb9p7OaBcOYqVksr" }, - "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe", - "id": "7MKwNQ5mBmm3GAYRZI6Zxe", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273dd85489b03fc971554fad163", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02dd85489b03fc971554fad163", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851dd85489b03fc971554fad163", - "height": 64, - "width": 64 - } - ], - "name": "Rise Of A Digital Nation", - "release_date": "2012-01-01", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7MKwNQ5mBmm3GAYRZI6Zxe", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 10, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 294026, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" - }, - "href": "https://api.spotify.com/v1/tracks/5jAuvjSuxiZkuHIC06tcht", - "id": "5jAuvjSuxiZkuHIC06tcht", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" - }, - "href": "https://api.spotify.com/v1/tracks/1K4If2cg7WI8dUW8fDZxFT", - "id": "1K4If2cg7WI8dUW8fDZxFT", - "type": "track", - "uri": "spotify:track:1K4If2cg7WI8dUW8fDZxFT" - }, - "name": "All Of My Angels", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5jAuvjSuxiZkuHIC06tcht", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 246706, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" - }, - "href": "https://api.spotify.com/v1/tracks/7y8U4mJI4LLxwE2Sw1wmwu", - "id": "7y8U4mJI4LLxwE2Sw1wmwu", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" - }, - "href": "https://api.spotify.com/v1/tracks/1xea5ZLbyQI7nvZlceYDPs", - "id": "1xea5ZLbyQI7nvZlceYDPs", - "type": "track", - "uri": "spotify:track:1xea5ZLbyQI7nvZlceYDPs" - }, - "name": "Laser Speed Force", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:7y8U4mJI4LLxwE2Sw1wmwu", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 248520, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" - }, - "href": "https://api.spotify.com/v1/tracks/64AEiTYzHycNe3CDI3rDWp", - "id": "64AEiTYzHycNe3CDI3rDWp", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" - }, - "href": "https://api.spotify.com/v1/tracks/2t18dmaytbJaEiqaeCFSnp", - "id": "2t18dmaytbJaEiqaeCFSnp", - "type": "track", - "uri": "spotify:track:2t18dmaytbJaEiqaeCFSnp" - }, - "name": "Transgenic", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:64AEiTYzHycNe3CDI3rDWp", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 247600, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" - }, - "href": "https://api.spotify.com/v1/tracks/6dW047Jdz5KJIFKijonoYV", - "id": "6dW047Jdz5KJIFKijonoYV", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" - }, - "href": "https://api.spotify.com/v1/tracks/5oRngkDPsoILRp4S1eVPDj", - "id": "5oRngkDPsoILRp4S1eVPDj", - "type": "track", - "uri": "spotify:track:5oRngkDPsoILRp4S1eVPDj" - }, - "name": "Rise Of A Digital Nation", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6dW047Jdz5KJIFKijonoYV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 256120, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" - }, - "href": "https://api.spotify.com/v1/tracks/54GRGBhoT1E9bY4VFmCG02", - "id": "54GRGBhoT1E9bY4VFmCG02", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" - }, - "href": "https://api.spotify.com/v1/tracks/635esdfKGba2fGmfhz42Mo", - "id": "635esdfKGba2fGmfhz42Mo", - "type": "track", - "uri": "spotify:track:635esdfKGba2fGmfhz42Mo" - }, - "name": "Pieces", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:54GRGBhoT1E9bY4VFmCG02", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 86080, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" - }, - "href": "https://api.spotify.com/v1/tracks/6lB2UMmpjL8BlXEtR7JLP6", - "id": "6lB2UMmpjL8BlXEtR7JLP6", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" - }, - "href": "https://api.spotify.com/v1/tracks/4uqGHMeB12sAXw9RxIHHK2", - "id": "4uqGHMeB12sAXw9RxIHHK2", - "type": "track", - "uri": "spotify:track:4uqGHMeB12sAXw9RxIHHK2" - }, - "name": "Cyber Warfare", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6lB2UMmpjL8BlXEtR7JLP6", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 253760, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" - }, - "href": "https://api.spotify.com/v1/tracks/2jgAMjoVW1T2BGgextCquW", - "id": "2jgAMjoVW1T2BGgextCquW", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" - }, - "href": "https://api.spotify.com/v1/tracks/1A59adkyVl8oQFOtqgEYa0", - "id": "1A59adkyVl8oQFOtqgEYa0", - "type": "track", - "uri": "spotify:track:1A59adkyVl8oQFOtqgEYa0" - }, - "name": "Republic Of Gamers", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2jgAMjoVW1T2BGgextCquW", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 255920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" - }, - "href": "https://api.spotify.com/v1/tracks/5kLPMs5samTF1KHSCaubbw", - "id": "5kLPMs5samTF1KHSCaubbw", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" - }, - "href": "https://api.spotify.com/v1/tracks/0Sxfvfx8q4zm1dzU0cLVPs", - "id": "0Sxfvfx8q4zm1dzU0cLVPs", - "type": "track", - "uri": "spotify:track:0Sxfvfx8q4zm1dzU0cLVPs" - }, - "name": "Battlecry", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:5kLPMs5samTF1KHSCaubbw", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 325880, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" - }, - "href": "https://api.spotify.com/v1/tracks/2WRZHrs3PykkeNxSYYKtdy", - "id": "2WRZHrs3PykkeNxSYYKtdy", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" - }, - "href": "https://api.spotify.com/v1/tracks/1vI1NUDpscwiJaAkGXJT5M", - "id": "1vI1NUDpscwiJaAkGXJT5M", - "type": "track", - "uri": "spotify:track:1vI1NUDpscwiJaAkGXJT5M" - }, - "name": "99", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2WRZHrs3PykkeNxSYYKtdy", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 323680, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" - }, - "href": "https://api.spotify.com/v1/tracks/54DNZAJaVrE0foL1dAZHRJ", - "id": "54DNZAJaVrE0foL1dAZHRJ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" - }, - "href": "https://api.spotify.com/v1/tracks/0SPL2TapEUaVsCikoLo8J2", - "id": "0SPL2TapEUaVsCikoLo8J2", - "type": "track", - "uri": "spotify:track:0SPL2TapEUaVsCikoLo8J2" - }, - "name": "Hero", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:54DNZAJaVrE0foL1dAZHRJ", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/0aSbmMTb9p7OaBcOYqVksr", + "id": "0aSbmMTb9p7OaBcOYqVksr", + "type": "track", + "uri": "spotify:track:0aSbmMTb9p7OaBcOYqVksr" + }, + "name": "BAMF", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:73nWSc3002fGRPrnFDev8x", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 212323, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" + }, + "href": "https://api.spotify.com/v1/tracks/1rjMexUleyOewga9qRrEqb", + "id": "1rjMexUleyOewga9qRrEqb", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2oxbgAkN0nJhSz9ngSSXRL" }, - "copyrights": [ - { "text": "(C) 2012 Spin-Farm Oy", "type": "C" }, - { "text": "(P) 2012 Spin-Farm Oy", "type": "P" } - ], - "external_ids": { "upc": "00602537172634" }, - "genres": [], - "label": "Universal Music Group", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/2oxbgAkN0nJhSz9ngSSXRL", + "id": "2oxbgAkN0nJhSz9ngSSXRL", + "type": "track", + "uri": "spotify:track:2oxbgAkN0nJhSz9ngSSXRL" + }, + "name": "Blackout", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:1rjMexUleyOewga9qRrEqb", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2017 Monstercat", "type": "C" }, + { "text": "2017 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "859718752356" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 + } + }, + { + "added_at": "2016-12-25T00:26:44Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5TOcXQ3t05FyNZPdWOWAn4" + }, + "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4", + "id": "5TOcXQ3t05FyNZPdWOWAn4", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2736f555a58589dfb4504a320de", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e026f555a58589dfb4504a320de", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048516f555a58589dfb4504a320de", + "height": 64, + "width": 64 + } + ], + "name": "Brand New Friend at Christmas Time", + "release_date": "2017-01-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:5TOcXQ3t05FyNZPdWOWAn4", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" + }, + "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", + "id": "2kQ4uyd7WPQI9xcmeZbI0G", + "name": "The Yogscast", + "type": "artist", + "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/5TOcXQ3t05FyNZPdWOWAn4/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2kQ4uyd7WPQI9xcmeZbI0G" + }, + "href": "https://api.spotify.com/v1/artists/2kQ4uyd7WPQI9xcmeZbI0G", + "id": "2kQ4uyd7WPQI9xcmeZbI0G", + "name": "The Yogscast", + "type": "artist", + "uri": "spotify:artist:2kQ4uyd7WPQI9xcmeZbI0G" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 187499, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/4lsqZRyqmntgpilnjdd6gm" + }, + "href": "https://api.spotify.com/v1/tracks/4lsqZRyqmntgpilnjdd6gm", + "id": "4lsqZRyqmntgpilnjdd6gm", + "name": "Brand New Friend at Christmas Time", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4lsqZRyqmntgpilnjdd6gm", + "is_local": false } + ] + }, + "copyrights": [ + { "text": "2017 YOGSCAST STUDIOS", "type": "C" }, + { "text": "2017 YOGSCAST STUDIOS", "type": "P" } + ], + "external_ids": { "upc": "5060330600436" }, + "genres": [], + "label": "YOGSCAST STUDIOS", + "popularity": 7 + } + }, + { + "added_at": "2016-12-08T18:00:51Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/4ALxbRHMIs5DBtnUaE3hBG" }, - { - "added_at": "2015-01-27T17:23:11Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], + "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG", + "id": "4ALxbRHMIs5DBtnUaE3hBG", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27311ce9419e0e9ac0a3c5b8fcf", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0211ce9419e0e9ac0a3c5b8fcf", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485111ce9419e0e9ac0a3c5b8fcf", + "height": 64, + "width": 64 + } + ], + "name": "Melodymania", + "release_date": "2016-12-05", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:4ALxbRHMIs5DBtnUaE3hBG", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/4ALxbRHMIs5DBtnUaE3hBG/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "name": "Pegboard Nerds", + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 191349, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" + }, + "href": "https://api.spotify.com/v1/tracks/6tfMPcat5tsLjiKt3wfM97", + "id": "6tfMPcat5tsLjiKt3wfM97", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/6kqOHnshP4RMTUWKrhm6Sy" + "spotify": "https://open.spotify.com/track/6Cyc1MlJ85UKlEE1WYWmcF" }, - "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy", - "id": "6kqOHnshP4RMTUWKrhm6Sy", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b2732bc58e4de7c41e84aeacee40", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e022bc58e4de7c41e84aeacee40", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d000048512bc58e4de7c41e84aeacee40", - "height": 64, - "width": 64 - } - ], - "name": "Listen", - "release_date": "2014-01-01", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:6kqOHnshP4RMTUWKrhm6Sy", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 250692, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/36pHJ5lqNQTLLzGTy8G7xV" - }, - "href": "https://api.spotify.com/v1/tracks/36pHJ5lqNQTLLzGTy8G7xV", - "id": "36pHJ5lqNQTLLzGTy8G7xV", - "name": "Around Town", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:36pHJ5lqNQTLLzGTy8G7xV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 237248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2xxMXbsjhqPzTYAclUOQlI" - }, - "href": "https://api.spotify.com/v1/tracks/2xxMXbsjhqPzTYAclUOQlI", - "id": "2xxMXbsjhqPzTYAclUOQlI", - "name": "Forgive & Forget", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:2xxMXbsjhqPzTYAclUOQlI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 210193, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5BtyHl1eRqip2PkHhFYzHG" - }, - "href": "https://api.spotify.com/v1/tracks/5BtyHl1eRqip2PkHhFYzHG", - "id": "5BtyHl1eRqip2PkHhFYzHG", - "name": "Westside", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:5BtyHl1eRqip2PkHhFYzHG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 181026, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5iRNKJoGqjD8RG7RNwOWYb" - }, - "href": "https://api.spotify.com/v1/tracks/5iRNKJoGqjD8RG7RNwOWYb", - "id": "5iRNKJoGqjD8RG7RNwOWYb", - "name": "See Me Now", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5iRNKJoGqjD8RG7RNwOWYb", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 193293, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6FeAfj1h12aakG9KqK7u3u" - }, - "href": "https://api.spotify.com/v1/tracks/6FeAfj1h12aakG9KqK7u3u", - "id": "6FeAfj1h12aakG9KqK7u3u", - "name": "It Was London", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6FeAfj1h12aakG9KqK7u3u", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 221413, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3huV7eiNpaQlCB3LbZi9bB" - }, - "href": "https://api.spotify.com/v1/tracks/3huV7eiNpaQlCB3LbZi9bB", - "id": "3huV7eiNpaQlCB3LbZi9bB", - "name": "Bad Habit", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3huV7eiNpaQlCB3LbZi9bB", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 163733, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0mkxwzF6TYJh8xIJ1MCpy1" - }, - "href": "https://api.spotify.com/v1/tracks/0mkxwzF6TYJh8xIJ1MCpy1", - "id": "0mkxwzF6TYJh8xIJ1MCpy1", - "name": "Down", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:0mkxwzF6TYJh8xIJ1MCpy1", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 180773, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4PTEa5uZirN5C86dvq7vWt" - }, - "href": "https://api.spotify.com/v1/tracks/4PTEa5uZirN5C86dvq7vWt", - "id": "4PTEa5uZirN5C86dvq7vWt", - "name": "Dreams", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:4PTEa5uZirN5C86dvq7vWt", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 246106, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/52xzfQXzhRFTcuXVIAdI7H" - }, - "href": "https://api.spotify.com/v1/tracks/52xzfQXzhRFTcuXVIAdI7H", - "id": "52xzfQXzhRFTcuXVIAdI7H", - "name": "Are We Electric", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:52xzfQXzhRFTcuXVIAdI7H", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 194613, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/15aMD4JcaPzoM9QKDYF42m" - }, - "href": "https://api.spotify.com/v1/tracks/15aMD4JcaPzoM9QKDYF42m", - "id": "15aMD4JcaPzoM9QKDYF42m", - "name": "Sunrise", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:15aMD4JcaPzoM9QKDYF42m", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" - }, - "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", - "id": "1GLtl8uqKmnyCWxHmw9tL4", - "name": "The Kooks", - "type": "artist", - "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GD", - "GW", - "GY", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 308569, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0hIGUS1PQbv5NIrHIf6Fza" - }, - "href": "https://api.spotify.com/v1/tracks/0hIGUS1PQbv5NIrHIf6Fza", - "id": "0hIGUS1PQbv5NIrHIf6Fza", - "name": "Sweet Emotion", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:0hIGUS1PQbv5NIrHIf6Fza", - "is_local": false - } - ] - }, - "copyrights": [ - { - "text": "\u00a9 2014 Virgin Records Limited", - "type": "C" - }, - { - "text": "\u2117 2014 Virgin Records Limited", - "type": "P" - } - ], - "external_ids": { "upc": "00602537833573" }, - "genres": [], - "label": "Virgin Records Ltd", - "popularity": 57 + "href": "https://api.spotify.com/v1/tracks/6Cyc1MlJ85UKlEE1WYWmcF", + "id": "6Cyc1MlJ85UKlEE1WYWmcF", + "type": "track", + "uri": "spotify:track:6Cyc1MlJ85UKlEE1WYWmcF" + }, + "name": "Melodymania", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6tfMPcat5tsLjiKt3wfM97", + "is_local": false } + ] + }, + "copyrights": [ + { "text": "2016 Monstercat", "type": "C" }, + { "text": "2016 Monstercat", "type": "P" } + ], + "external_ids": { "upc": "859718914372" }, + "genres": [], + "label": "Monstercat", + "popularity": 0 + } + }, + { + "added_at": "2015-03-02T17:21:06Z", + "album": { + "album_type": "album", + "total_tracks": 10, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/7MKwNQ5mBmm3GAYRZI6Zxe" }, - { - "added_at": "2015-01-22T17:24:49Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe", + "id": "7MKwNQ5mBmm3GAYRZI6Zxe", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273dd85489b03fc971554fad163", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02dd85489b03fc971554fad163", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851dd85489b03fc971554fad163", + "height": 64, + "width": 64 + } + ], + "name": "Rise Of A Digital Nation", + "release_date": "2012-01-01", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7MKwNQ5mBmm3GAYRZI6Zxe", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7MKwNQ5mBmm3GAYRZI6Zxe/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 10, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 294026, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" + }, + "href": "https://api.spotify.com/v1/tracks/5jAuvjSuxiZkuHIC06tcht", + "id": "5jAuvjSuxiZkuHIC06tcht", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1K4If2cg7WI8dUW8fDZxFT" + }, + "href": "https://api.spotify.com/v1/tracks/1K4If2cg7WI8dUW8fDZxFT", + "id": "1K4If2cg7WI8dUW8fDZxFT", + "type": "track", + "uri": "spotify:track:1K4If2cg7WI8dUW8fDZxFT" + }, + "name": "All Of My Angels", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5jAuvjSuxiZkuHIC06tcht", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246706, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" + }, + "href": "https://api.spotify.com/v1/tracks/7y8U4mJI4LLxwE2Sw1wmwu", + "id": "7y8U4mJI4LLxwE2Sw1wmwu", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1xea5ZLbyQI7nvZlceYDPs" + }, + "href": "https://api.spotify.com/v1/tracks/1xea5ZLbyQI7nvZlceYDPs", + "id": "1xea5ZLbyQI7nvZlceYDPs", + "type": "track", + "uri": "spotify:track:1xea5ZLbyQI7nvZlceYDPs" + }, + "name": "Laser Speed Force", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7y8U4mJI4LLxwE2Sw1wmwu", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 248520, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" + }, + "href": "https://api.spotify.com/v1/tracks/64AEiTYzHycNe3CDI3rDWp", + "id": "64AEiTYzHycNe3CDI3rDWp", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2t18dmaytbJaEiqaeCFSnp" + }, + "href": "https://api.spotify.com/v1/tracks/2t18dmaytbJaEiqaeCFSnp", + "id": "2t18dmaytbJaEiqaeCFSnp", + "type": "track", + "uri": "spotify:track:2t18dmaytbJaEiqaeCFSnp" + }, + "name": "Transgenic", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:64AEiTYzHycNe3CDI3rDWp", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 247600, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" + }, + "href": "https://api.spotify.com/v1/tracks/6dW047Jdz5KJIFKijonoYV", + "id": "6dW047Jdz5KJIFKijonoYV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5oRngkDPsoILRp4S1eVPDj" + }, + "href": "https://api.spotify.com/v1/tracks/5oRngkDPsoILRp4S1eVPDj", + "id": "5oRngkDPsoILRp4S1eVPDj", + "type": "track", + "uri": "spotify:track:5oRngkDPsoILRp4S1eVPDj" + }, + "name": "Rise Of A Digital Nation", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6dW047Jdz5KJIFKijonoYV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 256120, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" + }, + "href": "https://api.spotify.com/v1/tracks/54GRGBhoT1E9bY4VFmCG02", + "id": "54GRGBhoT1E9bY4VFmCG02", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1nLeRbHToiAF8icVAgzke6" + "spotify": "https://open.spotify.com/track/635esdfKGba2fGmfhz42Mo" }, - "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6", - "id": "1nLeRbHToiAF8icVAgzke6", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f1a22ddc7a2b07c8e006e623", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f1a22ddc7a2b07c8e006e623", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f1a22ddc7a2b07c8e006e623", - "height": 64, - "width": 64 - } - ], - "name": "Rains Of Fire", - "release_date": "2014-11-17", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1nLeRbHToiAF8icVAgzke6", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" - }, - "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", - "id": "7momuad2Twkv5O7MY3dODa", - "name": "Frontliner", - "type": "artist", - "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" - }, - "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", - "id": "320fB6pkVQ7vp95y2N9qkC", - "name": "SERi", - "type": "artist", - "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" - }, - "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", - "id": "7momuad2Twkv5O7MY3dODa", - "name": "Frontliner", - "type": "artist", - "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" - }, - "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", - "id": "320fB6pkVQ7vp95y2N9qkC", - "name": "SERi", - "type": "artist", - "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 277960, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" - }, - "href": "https://api.spotify.com/v1/tracks/7skiHghGcwtlFqaLMfiOuz", - "id": "7skiHghGcwtlFqaLMfiOuz", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" - }, - "href": "https://api.spotify.com/v1/tracks/1uUVtLpPVj5drd4b2mJgHs", - "id": "1uUVtLpPVj5drd4b2mJgHs", - "type": "track", - "uri": "spotify:track:1uUVtLpPVj5drd4b2mJgHs" - }, - "name": "Rains Of Fire", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7skiHghGcwtlFqaLMfiOuz", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/635esdfKGba2fGmfhz42Mo", + "id": "635esdfKGba2fGmfhz42Mo", + "type": "track", + "uri": "spotify:track:635esdfKGba2fGmfhz42Mo" + }, + "name": "Pieces", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:54GRGBhoT1E9bY4VFmCG02", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 86080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" + }, + "href": "https://api.spotify.com/v1/tracks/6lB2UMmpjL8BlXEtR7JLP6", + "id": "6lB2UMmpjL8BlXEtR7JLP6", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4uqGHMeB12sAXw9RxIHHK2" + }, + "href": "https://api.spotify.com/v1/tracks/4uqGHMeB12sAXw9RxIHHK2", + "id": "4uqGHMeB12sAXw9RxIHHK2", + "type": "track", + "uri": "spotify:track:4uqGHMeB12sAXw9RxIHHK2" + }, + "name": "Cyber Warfare", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6lB2UMmpjL8BlXEtR7JLP6", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 253760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" + }, + "href": "https://api.spotify.com/v1/tracks/2jgAMjoVW1T2BGgextCquW", + "id": "2jgAMjoVW1T2BGgextCquW", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1A59adkyVl8oQFOtqgEYa0" + }, + "href": "https://api.spotify.com/v1/tracks/1A59adkyVl8oQFOtqgEYa0", + "id": "1A59adkyVl8oQFOtqgEYa0", + "type": "track", + "uri": "spotify:track:1A59adkyVl8oQFOtqgEYa0" + }, + "name": "Republic Of Gamers", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2jgAMjoVW1T2BGgextCquW", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 255920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" + }, + "href": "https://api.spotify.com/v1/tracks/5kLPMs5samTF1KHSCaubbw", + "id": "5kLPMs5samTF1KHSCaubbw", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Sxfvfx8q4zm1dzU0cLVPs" + }, + "href": "https://api.spotify.com/v1/tracks/0Sxfvfx8q4zm1dzU0cLVPs", + "id": "0Sxfvfx8q4zm1dzU0cLVPs", + "type": "track", + "uri": "spotify:track:0Sxfvfx8q4zm1dzU0cLVPs" + }, + "name": "Battlecry", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:5kLPMs5samTF1KHSCaubbw", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 325880, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" + }, + "href": "https://api.spotify.com/v1/tracks/2WRZHrs3PykkeNxSYYKtdy", + "id": "2WRZHrs3PykkeNxSYYKtdy", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1vI1NUDpscwiJaAkGXJT5M" + }, + "href": "https://api.spotify.com/v1/tracks/1vI1NUDpscwiJaAkGXJT5M", + "id": "1vI1NUDpscwiJaAkGXJT5M", + "type": "track", + "uri": "spotify:track:1vI1NUDpscwiJaAkGXJT5M" + }, + "name": "99", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2WRZHrs3PykkeNxSYYKtdy", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 323680, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" + }, + "href": "https://api.spotify.com/v1/tracks/54DNZAJaVrE0foL1dAZHRJ", + "id": "54DNZAJaVrE0foL1dAZHRJ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0SPL2TapEUaVsCikoLo8J2" }, - "copyrights": [ - { "text": "2014 Be Yourself Catalogue B.V.", "type": "C" }, - { "text": "2014 Keep It Up", "type": "P" } - ], - "external_ids": { "upc": "8715576156083" }, - "genres": [], - "label": "Keep It Up Music", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/0SPL2TapEUaVsCikoLo8J2", + "id": "0SPL2TapEUaVsCikoLo8J2", + "type": "track", + "uri": "spotify:track:0SPL2TapEUaVsCikoLo8J2" + }, + "name": "Hero", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:54DNZAJaVrE0foL1dAZHRJ", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "(C) 2012 Spin-Farm Oy", "type": "C" }, + { "text": "(P) 2012 Spin-Farm Oy", "type": "P" } + ], + "external_ids": { "upc": "00602537172634" }, + "genres": [], + "label": "Universal Music Group", + "popularity": 0 + } + }, + { + "added_at": "2015-01-27T17:23:11Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6kqOHnshP4RMTUWKrhm6Sy" + }, + "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy", + "id": "6kqOHnshP4RMTUWKrhm6Sy", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b2732bc58e4de7c41e84aeacee40", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e022bc58e4de7c41e84aeacee40", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d000048512bc58e4de7c41e84aeacee40", + "height": 64, + "width": 64 + } + ], + "name": "Listen", + "release_date": "2014-01-01", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:6kqOHnshP4RMTUWKrhm6Sy", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/6kqOHnshP4RMTUWKrhm6Sy/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 250692, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/36pHJ5lqNQTLLzGTy8G7xV" + }, + "href": "https://api.spotify.com/v1/tracks/36pHJ5lqNQTLLzGTy8G7xV", + "id": "36pHJ5lqNQTLLzGTy8G7xV", + "name": "Around Town", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:36pHJ5lqNQTLLzGTy8G7xV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 237248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2xxMXbsjhqPzTYAclUOQlI" + }, + "href": "https://api.spotify.com/v1/tracks/2xxMXbsjhqPzTYAclUOQlI", + "id": "2xxMXbsjhqPzTYAclUOQlI", + "name": "Forgive & Forget", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:2xxMXbsjhqPzTYAclUOQlI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 210193, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5BtyHl1eRqip2PkHhFYzHG" + }, + "href": "https://api.spotify.com/v1/tracks/5BtyHl1eRqip2PkHhFYzHG", + "id": "5BtyHl1eRqip2PkHhFYzHG", + "name": "Westside", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:5BtyHl1eRqip2PkHhFYzHG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 181026, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5iRNKJoGqjD8RG7RNwOWYb" + }, + "href": "https://api.spotify.com/v1/tracks/5iRNKJoGqjD8RG7RNwOWYb", + "id": "5iRNKJoGqjD8RG7RNwOWYb", + "name": "See Me Now", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5iRNKJoGqjD8RG7RNwOWYb", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 193293, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6FeAfj1h12aakG9KqK7u3u" + }, + "href": "https://api.spotify.com/v1/tracks/6FeAfj1h12aakG9KqK7u3u", + "id": "6FeAfj1h12aakG9KqK7u3u", + "name": "It Was London", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6FeAfj1h12aakG9KqK7u3u", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 221413, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3huV7eiNpaQlCB3LbZi9bB" + }, + "href": "https://api.spotify.com/v1/tracks/3huV7eiNpaQlCB3LbZi9bB", + "id": "3huV7eiNpaQlCB3LbZi9bB", + "name": "Bad Habit", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3huV7eiNpaQlCB3LbZi9bB", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 163733, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0mkxwzF6TYJh8xIJ1MCpy1" + }, + "href": "https://api.spotify.com/v1/tracks/0mkxwzF6TYJh8xIJ1MCpy1", + "id": "0mkxwzF6TYJh8xIJ1MCpy1", + "name": "Down", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:0mkxwzF6TYJh8xIJ1MCpy1", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 180773, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PTEa5uZirN5C86dvq7vWt" + }, + "href": "https://api.spotify.com/v1/tracks/4PTEa5uZirN5C86dvq7vWt", + "id": "4PTEa5uZirN5C86dvq7vWt", + "name": "Dreams", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:4PTEa5uZirN5C86dvq7vWt", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 246106, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/52xzfQXzhRFTcuXVIAdI7H" + }, + "href": "https://api.spotify.com/v1/tracks/52xzfQXzhRFTcuXVIAdI7H", + "id": "52xzfQXzhRFTcuXVIAdI7H", + "name": "Are We Electric", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:52xzfQXzhRFTcuXVIAdI7H", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 194613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/15aMD4JcaPzoM9QKDYF42m" + }, + "href": "https://api.spotify.com/v1/tracks/15aMD4JcaPzoM9QKDYF42m", + "id": "15aMD4JcaPzoM9QKDYF42m", + "name": "Sunrise", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:15aMD4JcaPzoM9QKDYF42m", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1GLtl8uqKmnyCWxHmw9tL4" + }, + "href": "https://api.spotify.com/v1/artists/1GLtl8uqKmnyCWxHmw9tL4", + "id": "1GLtl8uqKmnyCWxHmw9tL4", + "name": "The Kooks", + "type": "artist", + "uri": "spotify:artist:1GLtl8uqKmnyCWxHmw9tL4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GD", + "GW", + "GY", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 308569, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0hIGUS1PQbv5NIrHIf6Fza" + }, + "href": "https://api.spotify.com/v1/tracks/0hIGUS1PQbv5NIrHIf6Fza", + "id": "0hIGUS1PQbv5NIrHIf6Fza", + "name": "Sweet Emotion", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:0hIGUS1PQbv5NIrHIf6Fza", + "is_local": false } + ] }, - { - "added_at": "2015-01-08T16:58:36Z", - "album": { - "album_type": "single", - "total_tracks": 1, - "available_markets": [], + "copyrights": [ + { + "text": "\u00a9 2014 Virgin Records Limited", + "type": "C" + }, + { + "text": "\u2117 2014 Virgin Records Limited", + "type": "P" + } + ], + "external_ids": { "upc": "00602537833573" }, + "genres": [], + "label": "Virgin Records Ltd", + "popularity": 57 + } + }, + { + "added_at": "2015-01-22T17:24:49Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1nLeRbHToiAF8icVAgzke6" + }, + "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6", + "id": "1nLeRbHToiAF8icVAgzke6", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f1a22ddc7a2b07c8e006e623", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f1a22ddc7a2b07c8e006e623", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f1a22ddc7a2b07c8e006e623", + "height": 64, + "width": 64 + } + ], + "name": "Rains Of Fire", + "release_date": "2014-11-17", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1nLeRbHToiAF8icVAgzke6", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" + }, + "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", + "id": "7momuad2Twkv5O7MY3dODa", + "name": "Frontliner", + "type": "artist", + "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" + }, + "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", + "id": "320fB6pkVQ7vp95y2N9qkC", + "name": "SERi", + "type": "artist", + "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1nLeRbHToiAF8icVAgzke6/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7momuad2Twkv5O7MY3dODa" + }, + "href": "https://api.spotify.com/v1/artists/7momuad2Twkv5O7MY3dODa", + "id": "7momuad2Twkv5O7MY3dODa", + "name": "Frontliner", + "type": "artist", + "uri": "spotify:artist:7momuad2Twkv5O7MY3dODa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/320fB6pkVQ7vp95y2N9qkC" + }, + "href": "https://api.spotify.com/v1/artists/320fB6pkVQ7vp95y2N9qkC", + "id": "320fB6pkVQ7vp95y2N9qkC", + "name": "SERi", + "type": "artist", + "uri": "spotify:artist:320fB6pkVQ7vp95y2N9qkC" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 277960, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" + }, + "href": "https://api.spotify.com/v1/tracks/7skiHghGcwtlFqaLMfiOuz", + "id": "7skiHghGcwtlFqaLMfiOuz", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1zzigYZU8igjHhCG24wBkm" + "spotify": "https://open.spotify.com/track/1uUVtLpPVj5drd4b2mJgHs" }, - "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm", - "id": "1zzigYZU8igjHhCG24wBkm", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273b4b49b8dc3853e01eb8cecef", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02b4b49b8dc3853e01eb8cecef", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851b4b49b8dc3853e01eb8cecef", - "height": 64, - "width": 64 - } - ], - "name": "Centuries", - "release_date": "2014-09-09", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1zzigYZU8igjHhCG24wBkm", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" - }, - "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", - "id": "4UXqAaa6dQYAk18Lv7PEgX", - "name": "Fall Out Boy", - "type": "artist", - "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 1, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" - }, - "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", - "id": "4UXqAaa6dQYAk18Lv7PEgX", - "name": "Fall Out Boy", - "type": "artist", - "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 231813, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" - }, - "href": "https://api.spotify.com/v1/tracks/04aAxqtGp5pv12UXAg4pkq", - "id": "04aAxqtGp5pv12UXAg4pkq", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" - }, - "href": "https://api.spotify.com/v1/tracks/3r0NMcEl7lxAHkSlDk8b7U", - "id": "3r0NMcEl7lxAHkSlDk8b7U", - "type": "track", - "uri": "spotify:track:3r0NMcEl7lxAHkSlDk8b7U" - }, - "name": "Centuries", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:04aAxqtGp5pv12UXAg4pkq", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/1uUVtLpPVj5drd4b2mJgHs", + "id": "1uUVtLpPVj5drd4b2mJgHs", + "type": "track", + "uri": "spotify:track:1uUVtLpPVj5drd4b2mJgHs" + }, + "name": "Rains Of Fire", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7skiHghGcwtlFqaLMfiOuz", + "is_local": false + } + ] + }, + "copyrights": [ + { "text": "2014 Be Yourself Catalogue B.V.", "type": "C" }, + { "text": "2014 Keep It Up", "type": "P" } + ], + "external_ids": { "upc": "8715576156083" }, + "genres": [], + "label": "Keep It Up Music", + "popularity": 0 + } + }, + { + "added_at": "2015-01-08T16:58:36Z", + "album": { + "album_type": "single", + "total_tracks": 1, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1zzigYZU8igjHhCG24wBkm" + }, + "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm", + "id": "1zzigYZU8igjHhCG24wBkm", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273b4b49b8dc3853e01eb8cecef", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02b4b49b8dc3853e01eb8cecef", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851b4b49b8dc3853e01eb8cecef", + "height": 64, + "width": 64 + } + ], + "name": "Centuries", + "release_date": "2014-09-09", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1zzigYZU8igjHhCG24wBkm", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" + }, + "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", + "id": "4UXqAaa6dQYAk18Lv7PEgX", + "name": "Fall Out Boy", + "type": "artist", + "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1zzigYZU8igjHhCG24wBkm/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 1, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4UXqAaa6dQYAk18Lv7PEgX" + }, + "href": "https://api.spotify.com/v1/artists/4UXqAaa6dQYAk18Lv7PEgX", + "id": "4UXqAaa6dQYAk18Lv7PEgX", + "name": "Fall Out Boy", + "type": "artist", + "uri": "spotify:artist:4UXqAaa6dQYAk18Lv7PEgX" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 231813, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" + }, + "href": "https://api.spotify.com/v1/tracks/04aAxqtGp5pv12UXAg4pkq", + "id": "04aAxqtGp5pv12UXAg4pkq", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3r0NMcEl7lxAHkSlDk8b7U" }, - "copyrights": [ - { - "text": "(C) 2014 Island Records, a division of UMG Recordings, Inc.", - "type": "C" - }, - { - "text": "(P) 2014 Island Records, a division of UMG Recordings, Inc.", - "type": "P" - } - ], - "external_ids": { "upc": "00602547026392" }, - "genres": [], - "label": "Universal Music Ltd.", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/3r0NMcEl7lxAHkSlDk8b7U", + "id": "3r0NMcEl7lxAHkSlDk8b7U", + "type": "track", + "uri": "spotify:track:3r0NMcEl7lxAHkSlDk8b7U" + }, + "name": "Centuries", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:04aAxqtGp5pv12UXAg4pkq", + "is_local": false } + ] }, - { - "added_at": "2015-01-07T15:51:45Z", - "album": { - "album_type": "single", - "total_tracks": 3, - "available_markets": [], + "copyrights": [ + { + "text": "(C) 2014 Island Records, a division of UMG Recordings, Inc.", + "type": "C" + }, + { + "text": "(P) 2014 Island Records, a division of UMG Recordings, Inc.", + "type": "P" + } + ], + "external_ids": { "upc": "00602547026392" }, + "genres": [], + "label": "Universal Music Ltd.", + "popularity": 0 + } + }, + { + "added_at": "2015-01-07T15:51:45Z", + "album": { + "album_type": "single", + "total_tracks": 3, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/2zdCtvku47tZOXv6WYt5az" + }, + "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az", + "id": "2zdCtvku47tZOXv6WYt5az", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b27323203f03e8f921b62c7037cc", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e0223203f03e8f921b62c7037cc", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d0000485123203f03e8f921b62c7037cc", + "height": 64, + "width": 64 + } + ], + "name": "Underline", + "release_date": "2014-11-03", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:2zdCtvku47tZOXv6WYt5az", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 3, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 223346, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" + }, + "href": "https://api.spotify.com/v1/tracks/6uM8rQRRzPmRZNKGYqpEkd", + "id": "6uM8rQRRzPmRZNKGYqpEkd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" + }, + "href": "https://api.spotify.com/v1/tracks/0ejmqbo6mUuLT0DgCmj5kD", + "id": "0ejmqbo6mUuLT0DgCmj5kD", + "type": "track", + "uri": "spotify:track:0ejmqbo6mUuLT0DgCmj5kD" + }, + "name": "Are You Listening?", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6uM8rQRRzPmRZNKGYqpEkd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 279240, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" + }, + "href": "https://api.spotify.com/v1/tracks/5B2U6awRptWQ3l4OpjZdBG", + "id": "5B2U6awRptWQ3l4OpjZdBG", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/2zdCtvku47tZOXv6WYt5az" + "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" }, - "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az", - "id": "2zdCtvku47tZOXv6WYt5az", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b27323203f03e8f921b62c7037cc", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e0223203f03e8f921b62c7037cc", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d0000485123203f03e8f921b62c7037cc", - "height": 64, - "width": 64 - } - ], - "name": "Underline", - "release_date": "2014-11-03", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:2zdCtvku47tZOXv6WYt5az", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/2zdCtvku47tZOXv6WYt5az/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 3, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 223346, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" - }, - "href": "https://api.spotify.com/v1/tracks/6uM8rQRRzPmRZNKGYqpEkd", - "id": "6uM8rQRRzPmRZNKGYqpEkd", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0ejmqbo6mUuLT0DgCmj5kD" - }, - "href": "https://api.spotify.com/v1/tracks/0ejmqbo6mUuLT0DgCmj5kD", - "id": "0ejmqbo6mUuLT0DgCmj5kD", - "type": "track", - "uri": "spotify:track:0ejmqbo6mUuLT0DgCmj5kD" - }, - "name": "Are You Listening?", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6uM8rQRRzPmRZNKGYqpEkd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 279240, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" - }, - "href": "https://api.spotify.com/v1/tracks/5B2U6awRptWQ3l4OpjZdBG", - "id": "5B2U6awRptWQ3l4OpjZdBG", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3aO3XTdXMSjDSiG6vPxL7A" - }, - "href": "https://api.spotify.com/v1/tracks/3aO3XTdXMSjDSiG6vPxL7A", - "id": "3aO3XTdXMSjDSiG6vPxL7A", - "type": "track", - "uri": "spotify:track:3aO3XTdXMSjDSiG6vPxL7A" - }, - "name": "In the Blind", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:5B2U6awRptWQ3l4OpjZdBG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 263466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" - }, - "href": "https://api.spotify.com/v1/tracks/3rftx1PF0BezDK29VE125h", - "id": "3rftx1PF0BezDK29VE125h", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" - }, - "href": "https://api.spotify.com/v1/tracks/7kWtci6hVeA31xTGtpBhWG", - "id": "7kWtci6hVeA31xTGtpBhWG", - "type": "track", - "uri": "spotify:track:7kWtci6hVeA31xTGtpBhWG" - }, - "name": "Override (A)", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:3rftx1PF0BezDK29VE125h", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/3aO3XTdXMSjDSiG6vPxL7A", + "id": "3aO3XTdXMSjDSiG6vPxL7A", + "type": "track", + "uri": "spotify:track:3aO3XTdXMSjDSiG6vPxL7A" + }, + "name": "In the Blind", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5B2U6awRptWQ3l4OpjZdBG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 263466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" + }, + "href": "https://api.spotify.com/v1/tracks/3rftx1PF0BezDK29VE125h", + "id": "3rftx1PF0BezDK29VE125h", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7kWtci6hVeA31xTGtpBhWG" }, - "copyrights": [ - { "text": "2014 Smihilism Records", "type": "C" }, - { "text": "2014 Smihilism Records", "type": "P" } - ], - "external_ids": { "upc": "5060416600008" }, - "genres": [], - "label": "Smihilism Records", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/7kWtci6hVeA31xTGtpBhWG", + "id": "7kWtci6hVeA31xTGtpBhWG", + "type": "track", + "uri": "spotify:track:7kWtci6hVeA31xTGtpBhWG" + }, + "name": "Override (A)", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:3rftx1PF0BezDK29VE125h", + "is_local": false } + ] }, - { - "added_at": "2015-01-03T12:49:56Z", - "album": { - "album_type": "album", - "total_tracks": 11, - "available_markets": [], + "copyrights": [ + { "text": "2014 Smihilism Records", "type": "C" }, + { "text": "2014 Smihilism Records", "type": "P" } + ], + "external_ids": { "upc": "5060416600008" }, + "genres": [], + "label": "Smihilism Records", + "popularity": 0 + } + }, + { + "added_at": "2015-01-03T12:49:56Z", + "album": { + "album_type": "album", + "total_tracks": 11, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/7H1iZSYcbOjGCjR8eW9Kx3" + }, + "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3", + "id": "7H1iZSYcbOjGCjR8eW9Kx3", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f50a1c8e82b7be0090914bb2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f50a1c8e82b7be0090914bb2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f50a1c8e82b7be0090914bb2", + "height": 64, + "width": 64 + } + ], + "name": "All the Lights in the Sky", + "release_date": "2013-01-31", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:7H1iZSYcbOjGCjR8eW9Kx3", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 11, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 64213, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" + }, + "href": "https://api.spotify.com/v1/tracks/1Wn8W35A0VW3Tk2O1t3BNd", + "id": "1Wn8W35A0VW3Tk2O1t3BNd", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" + }, + "href": "https://api.spotify.com/v1/tracks/1zuKsDdNRtcRyD7FtCLGHL", + "id": "1zuKsDdNRtcRyD7FtCLGHL", + "type": "track", + "uri": "spotify:track:1zuKsDdNRtcRyD7FtCLGHL" + }, + "name": "System;Start", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1Wn8W35A0VW3Tk2O1t3BNd", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286200, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/5gUhgCZwqSyspR7alzGTmL" + }, + "href": "https://api.spotify.com/v1/tracks/5gUhgCZwqSyspR7alzGTmL", + "id": "5gUhgCZwqSyspR7alzGTmL", + "restrictions": { "reason": "market" }, + "name": "Vectors", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5gUhgCZwqSyspR7alzGTmL", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 220920, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0A8gZrdgGCar7LYflX8R0h" + }, + "href": "https://api.spotify.com/v1/tracks/0A8gZrdgGCar7LYflX8R0h", + "id": "0A8gZrdgGCar7LYflX8R0h", + "restrictions": { "reason": "market" }, + "name": "Euphemia", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0A8gZrdgGCar7LYflX8R0h", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 204866, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" + }, + "href": "https://api.spotify.com/v1/tracks/7ICQJPECy8842wCa6AfwCK", + "id": "7ICQJPECy8842wCa6AfwCK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" + }, + "href": "https://api.spotify.com/v1/tracks/3YIYKUPQEs5r6DmDB6gkgw", + "id": "3YIYKUPQEs5r6DmDB6gkgw", + "type": "track", + "uri": "spotify:track:3YIYKUPQEs5r6DmDB6gkgw" + }, + "name": "Knightmare/Frame", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:7ICQJPECy8842wCa6AfwCK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 262493, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" + }, + "href": "https://api.spotify.com/v1/tracks/7cSMDMR2URe6p3qKcACXnm", + "id": "7cSMDMR2URe6p3qKcACXnm", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" + }, + "href": "https://api.spotify.com/v1/tracks/6p8GKeZPgHwTLr1IObpyzU", + "id": "6p8GKeZPgHwTLr1IObpyzU", + "type": "track", + "uri": "spotify:track:6p8GKeZPgHwTLr1IObpyzU" + }, + "name": "Tokyo House Party", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7cSMDMR2URe6p3qKcACXnm", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/292ZlwqNqc8lbEvzYN82Ey" + }, + "href": "https://api.spotify.com/v1/artists/292ZlwqNqc8lbEvzYN82Ey", + "id": "292ZlwqNqc8lbEvzYN82Ey", + "name": "Beckii Cruel", + "type": "artist", + "uri": "spotify:artist:292ZlwqNqc8lbEvzYN82Ey" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" + }, + "href": "https://api.spotify.com/v1/tracks/028eHoODO39uXKd2UGYq4t", + "id": "028eHoODO39uXKd2UGYq4t", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" + }, + "href": "https://api.spotify.com/v1/tracks/50AN1KTNvK17fBMY4AX3jb", + "id": "50AN1KTNvK17fBMY4AX3jb", + "type": "track", + "uri": "spotify:track:50AN1KTNvK17fBMY4AX3jb" + }, + "name": "Shi No Barado (feat. Beckii Cruel)", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:028eHoODO39uXKd2UGYq4t", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 201626, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" + }, + "href": "https://api.spotify.com/v1/tracks/77L7IkqBv11gA6HNtY6Cka", + "id": "77L7IkqBv11gA6HNtY6Cka", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/7H1iZSYcbOjGCjR8eW9Kx3" + "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" }, - "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3", - "id": "7H1iZSYcbOjGCjR8eW9Kx3", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f50a1c8e82b7be0090914bb2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f50a1c8e82b7be0090914bb2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f50a1c8e82b7be0090914bb2", - "height": 64, - "width": 64 - } - ], - "name": "All the Lights in the Sky", - "release_date": "2013-01-31", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:7H1iZSYcbOjGCjR8eW9Kx3", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/7H1iZSYcbOjGCjR8eW9Kx3/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 11, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 64213, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" - }, - "href": "https://api.spotify.com/v1/tracks/1Wn8W35A0VW3Tk2O1t3BNd", - "id": "1Wn8W35A0VW3Tk2O1t3BNd", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1zuKsDdNRtcRyD7FtCLGHL" - }, - "href": "https://api.spotify.com/v1/tracks/1zuKsDdNRtcRyD7FtCLGHL", - "id": "1zuKsDdNRtcRyD7FtCLGHL", - "type": "track", - "uri": "spotify:track:1zuKsDdNRtcRyD7FtCLGHL" - }, - "name": "System;Start", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1Wn8W35A0VW3Tk2O1t3BNd", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 286200, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/5gUhgCZwqSyspR7alzGTmL" - }, - "href": "https://api.spotify.com/v1/tracks/5gUhgCZwqSyspR7alzGTmL", - "id": "5gUhgCZwqSyspR7alzGTmL", - "restrictions": { "reason": "market" }, - "name": "Vectors", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:5gUhgCZwqSyspR7alzGTmL", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 220920, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0A8gZrdgGCar7LYflX8R0h" - }, - "href": "https://api.spotify.com/v1/tracks/0A8gZrdgGCar7LYflX8R0h", - "id": "0A8gZrdgGCar7LYflX8R0h", - "restrictions": { "reason": "market" }, - "name": "Euphemia", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0A8gZrdgGCar7LYflX8R0h", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 204866, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" - }, - "href": "https://api.spotify.com/v1/tracks/7ICQJPECy8842wCa6AfwCK", - "id": "7ICQJPECy8842wCa6AfwCK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3YIYKUPQEs5r6DmDB6gkgw" - }, - "href": "https://api.spotify.com/v1/tracks/3YIYKUPQEs5r6DmDB6gkgw", - "id": "3YIYKUPQEs5r6DmDB6gkgw", - "type": "track", - "uri": "spotify:track:3YIYKUPQEs5r6DmDB6gkgw" - }, - "name": "Knightmare/Frame", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:7ICQJPECy8842wCa6AfwCK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 262493, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" - }, - "href": "https://api.spotify.com/v1/tracks/7cSMDMR2URe6p3qKcACXnm", - "id": "7cSMDMR2URe6p3qKcACXnm", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6p8GKeZPgHwTLr1IObpyzU" - }, - "href": "https://api.spotify.com/v1/tracks/6p8GKeZPgHwTLr1IObpyzU", - "id": "6p8GKeZPgHwTLr1IObpyzU", - "type": "track", - "uri": "spotify:track:6p8GKeZPgHwTLr1IObpyzU" - }, - "name": "Tokyo House Party", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:7cSMDMR2URe6p3qKcACXnm", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/292ZlwqNqc8lbEvzYN82Ey" - }, - "href": "https://api.spotify.com/v1/artists/292ZlwqNqc8lbEvzYN82Ey", - "id": "292ZlwqNqc8lbEvzYN82Ey", - "name": "Beckii Cruel", - "type": "artist", - "uri": "spotify:artist:292ZlwqNqc8lbEvzYN82Ey" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 319386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" - }, - "href": "https://api.spotify.com/v1/tracks/028eHoODO39uXKd2UGYq4t", - "id": "028eHoODO39uXKd2UGYq4t", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/50AN1KTNvK17fBMY4AX3jb" - }, - "href": "https://api.spotify.com/v1/tracks/50AN1KTNvK17fBMY4AX3jb", - "id": "50AN1KTNvK17fBMY4AX3jb", - "type": "track", - "uri": "spotify:track:50AN1KTNvK17fBMY4AX3jb" - }, - "name": "Shi No Barado (feat. Beckii Cruel)", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:028eHoODO39uXKd2UGYq4t", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 201626, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" - }, - "href": "https://api.spotify.com/v1/tracks/77L7IkqBv11gA6HNtY6Cka", - "id": "77L7IkqBv11gA6HNtY6Cka", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3ODBw0ljBRz0XPEgfSweVs" - }, - "href": "https://api.spotify.com/v1/tracks/3ODBw0ljBRz0XPEgfSweVs", - "id": "3ODBw0ljBRz0XPEgfSweVs", - "type": "track", - "uri": "spotify:track:3ODBw0ljBRz0XPEgfSweVs" - }, - "name": "Cassandra (Pt II)", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:77L7IkqBv11gA6HNtY6Cka", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 274133, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" - }, - "href": "https://api.spotify.com/v1/tracks/0f6m0HRlcGLGveWg3de4zG", - "id": "0f6m0HRlcGLGveWg3de4zG", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" - }, - "href": "https://api.spotify.com/v1/tracks/0167vnxjkbw6iLSHJYU5a0", - "id": "0167vnxjkbw6iLSHJYU5a0", - "type": "track", - "uri": "spotify:track:0167vnxjkbw6iLSHJYU5a0" - }, - "name": "The Strays", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:0f6m0HRlcGLGveWg3de4zG", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 234080, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" - }, - "href": "https://api.spotify.com/v1/tracks/0BmV8OlrvNbLbu9ZmIpdvg", - "id": "0BmV8OlrvNbLbu9ZmIpdvg", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" - }, - "href": "https://api.spotify.com/v1/tracks/2C0rKaUDiqWiLkyuGwZGsE", - "id": "2C0rKaUDiqWiLkyuGwZGsE", - "type": "track", - "uri": "spotify:track:2C0rKaUDiqWiLkyuGwZGsE" - }, - "name": "Dream & Reality", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:0BmV8OlrvNbLbu9ZmIpdvg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 258613, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" - }, - "href": "https://api.spotify.com/v1/tracks/2eG2Ey9FdvvVpinePpIlCV", - "id": "2eG2Ey9FdvvVpinePpIlCV", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" - }, - "href": "https://api.spotify.com/v1/tracks/2pXDScNtImSgumK0gTJcaj", - "id": "2pXDScNtImSgumK0gTJcaj", - "type": "track", - "uri": "spotify:track:2pXDScNtImSgumK0gTJcaj" - }, - "name": "Heaven-Piercing Giga Drill", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:2eG2Ey9FdvvVpinePpIlCV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 671160, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" - }, - "href": "https://api.spotify.com/v1/tracks/52vB77kTjHlxHc6utDMIMI", - "id": "52vB77kTjHlxHc6utDMIMI", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" - }, - "href": "https://api.spotify.com/v1/tracks/2BurnsChUeXYkJnmrpEcPN", - "id": "2BurnsChUeXYkJnmrpEcPN", - "type": "track", - "uri": "spotify:track:2BurnsChUeXYkJnmrpEcPN" - }, - "name": "B\u014ds\u014dzoku Symphonic", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:52vB77kTjHlxHc6utDMIMI", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/3ODBw0ljBRz0XPEgfSweVs", + "id": "3ODBw0ljBRz0XPEgfSweVs", + "type": "track", + "uri": "spotify:track:3ODBw0ljBRz0XPEgfSweVs" + }, + "name": "Cassandra (Pt II)", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:77L7IkqBv11gA6HNtY6Cka", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274133, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" + }, + "href": "https://api.spotify.com/v1/tracks/0f6m0HRlcGLGveWg3de4zG", + "id": "0f6m0HRlcGLGveWg3de4zG", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0167vnxjkbw6iLSHJYU5a0" + }, + "href": "https://api.spotify.com/v1/tracks/0167vnxjkbw6iLSHJYU5a0", + "id": "0167vnxjkbw6iLSHJYU5a0", + "type": "track", + "uri": "spotify:track:0167vnxjkbw6iLSHJYU5a0" + }, + "name": "The Strays", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:0f6m0HRlcGLGveWg3de4zG", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 234080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" + }, + "href": "https://api.spotify.com/v1/tracks/0BmV8OlrvNbLbu9ZmIpdvg", + "id": "0BmV8OlrvNbLbu9ZmIpdvg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2C0rKaUDiqWiLkyuGwZGsE" + }, + "href": "https://api.spotify.com/v1/tracks/2C0rKaUDiqWiLkyuGwZGsE", + "id": "2C0rKaUDiqWiLkyuGwZGsE", + "type": "track", + "uri": "spotify:track:2C0rKaUDiqWiLkyuGwZGsE" + }, + "name": "Dream & Reality", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0BmV8OlrvNbLbu9ZmIpdvg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 258613, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" + }, + "href": "https://api.spotify.com/v1/tracks/2eG2Ey9FdvvVpinePpIlCV", + "id": "2eG2Ey9FdvvVpinePpIlCV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2pXDScNtImSgumK0gTJcaj" + }, + "href": "https://api.spotify.com/v1/tracks/2pXDScNtImSgumK0gTJcaj", + "id": "2pXDScNtImSgumK0gTJcaj", + "type": "track", + "uri": "spotify:track:2pXDScNtImSgumK0gTJcaj" + }, + "name": "Heaven-Piercing Giga Drill", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:2eG2Ey9FdvvVpinePpIlCV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 671160, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" + }, + "href": "https://api.spotify.com/v1/tracks/52vB77kTjHlxHc6utDMIMI", + "id": "52vB77kTjHlxHc6utDMIMI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2BurnsChUeXYkJnmrpEcPN" }, - "copyrights": [ - { "text": "2013 Yogscast Studios", "type": "C" }, - { "text": "2013 Yogscast Studios", "type": "P" } - ], - "external_ids": { "upc": "5060330600030" }, - "genres": [], - "label": "Yogscast Studios", - "popularity": 0 + "href": "https://api.spotify.com/v1/tracks/2BurnsChUeXYkJnmrpEcPN", + "id": "2BurnsChUeXYkJnmrpEcPN", + "type": "track", + "uri": "spotify:track:2BurnsChUeXYkJnmrpEcPN" + }, + "name": "B\u014ds\u014dzoku Symphonic", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:52vB77kTjHlxHc6utDMIMI", + "is_local": false } + ] + }, + "copyrights": [ + { "text": "2013 Yogscast Studios", "type": "C" }, + { "text": "2013 Yogscast Studios", "type": "P" } + ], + "external_ids": { "upc": "5060330600030" }, + "genres": [], + "label": "Yogscast Studios", + "popularity": 0 + } + }, + { + "added_at": "1998-01-25T15:47:12Z", + "album": { + "album_type": "album", + "total_tracks": 18, + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/1sSoDKCPSMPQ8CMAWYUabB" }, - { - "added_at": "1998-01-25T15:47:12Z", - "album": { - "album_type": "album", - "total_tracks": 18, - "available_markets": [], + "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB", + "id": "1sSoDKCPSMPQ8CMAWYUabB", + "images": [ + { + "url": "https://i.scdn.co/image/ab67616d0000b273f21eb2f7f39a49ade2daca2c", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67616d00001e02f21eb2f7f39a49ade2daca2c", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab67616d00004851f21eb2f7f39a49ade2daca2c", + "height": 64, + "width": 64 + } + ], + "name": "USB", + "release_date": "2022-01-18", + "release_date_precision": "day", + "type": "album", + "uri": "spotify:album:1sSoDKCPSMPQ8CMAWYUabB", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "tracks": { + "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB/tracks?offset=0&limit=50", + "limit": 50, + "next": null, + "offset": 0, + "previous": null, + "total": 18, + "items": [ + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 165857, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" + }, + "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", + "id": "1lbNgoJ5iMrMluCyhI4OQP", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" + }, + "href": "https://api.spotify.com/v1/tracks/1RraBERwdsmLqzrbXkGM0n", + "id": "1RraBERwdsmLqzrbXkGM0n", + "type": "track", + "uri": "spotify:track:1RraBERwdsmLqzrbXkGM0n" + }, + "name": "Victory Lap", + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" + }, + "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", + "id": "0aIpJqqTLf683ojWREc5lg", + "name": "Joy Orbison", + "type": "artist", + "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" + }, + "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", + "id": "699OTQXzgjhIYAHMy9RyPD", + "name": "Playboi Carti", + "type": "artist", + "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 246909, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" + }, + "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", + "id": "7qpZh0yIXeZzXZk3mE6Fj9", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" + }, + "href": "https://api.spotify.com/v1/tracks/0sit6qzsa9l2ZQFCnwQiEj", + "id": "0sit6qzsa9l2ZQFCnwQiEj", + "type": "track", + "uri": "spotify:track:0sit6qzsa9l2ZQFCnwQiEj" + }, + "name": "flex fm (freddit)", + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" + }, + "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", + "id": "4VsVLz3Uw6d0fdM6gFtLfo", + "name": "MESSIE", + "type": "artist", + "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219310, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" + }, + "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", + "id": "73s1r3Jfn8pqXJv9ahKfNV", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" + }, + "href": "https://api.spotify.com/v1/tracks/5e1uNQl4SoXGR5ynUKbxre", + "id": "5e1uNQl4SoXGR5ynUKbxre", + "type": "track", + "uri": "spotify:track:5e1uNQl4SoXGR5ynUKbxre" + }, + "name": "places to be - MESSIE remix", + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" + }, + "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", + "id": "1fDV6gCETmlkCUugBxq59g", + "name": "Duoteque", + "type": "artist", + "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" + }, + "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", + "id": "2efrqekWSHlvhATD50AG3m", + "name": "Orion Sun", + "type": "artist", + "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 327508, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" + }, + "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", + "id": "2la8LWSxedRoulmz0UHE7o", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" + }, + "href": "https://api.spotify.com/v1/tracks/6Zg23hhTXwGszV8On0iA2v", + "id": "6Zg23hhTXwGszV8On0iA2v", + "type": "track", + "uri": "spotify:track:6Zg23hhTXwGszV8On0iA2v" + }, + "name": "ItsNotREEAALLLLLLLL", + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" + }, + "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", + "id": "5zatdvej2AxogC5pbu2msR", + "name": "BERWYN", + "type": "artist", + "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 123607, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" + }, + "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", + "id": "59DFl0vh8FoBmmD43ruznv", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" + }, + "href": "https://api.spotify.com/v1/tracks/2tlq1Yt4OMFUVpxJS0hbVr", + "id": "2tlq1Yt4OMFUVpxJS0hbVr", + "type": "track", + "uri": "spotify:track:2tlq1Yt4OMFUVpxJS0hbVr" + }, + "name": "BerwynGesaffNeighbours", + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" + }, + "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", + "id": "3jK9MiCrA42lLAdMGUZpwa", + "name": "Anderson .Paak", + "type": "artist", + "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" + }, + "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", + "id": "6UtYvUtXnmg5EtllDFlWp8", + "name": "CHIKA", + "type": "artist", + "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" + }, + "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", + "id": "6b0TSaLAeLXilOPoId8udE", + "name": "CLIPZ", + "type": "artist", + "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 184827, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" + }, + "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", + "id": "4n4VUdx6tr7MylOySvDhPK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" + }, + "href": "https://api.spotify.com/v1/tracks/09EP4gcskOhFSTwpwordKY", + "id": "09EP4gcskOhFSTwpwordKY", + "type": "track", + "uri": "spotify:track:09EP4gcskOhFSTwpwordKY" + }, + "name": "places to be - CLIPZ remix", + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" + }, + "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", + "id": "6icQOAFXDZKsumw3YXyusw", + "name": "Lil Yachty", + "type": "artist", + "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" + }, + "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", + "id": "01PnN11ovfen6xUOHfNpn3", + "name": "Overmono", + "type": "artist", + "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 274925, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" + }, + "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", + "id": "2iUMh8RrpUiakMnneanOPj", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" + }, + "href": "https://api.spotify.com/v1/tracks/3sXMf88N6T9JbpYPYUFYc5", + "id": "3sXMf88N6T9JbpYPYUFYc5", + "type": "track", + "uri": "spotify:track:3sXMf88N6T9JbpYPYUFYc5" + }, + "name": "stayinit", + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222784, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", + "id": "2tSP95IyUkPv5Wj83xWh1c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "href": "https://api.spotify.com/v1/tracks/2vOjCXKZ5kcbmzOJ1ylT1h", + "id": "2vOjCXKZ5kcbmzOJ1ylT1h", + "type": "track", + "uri": "spotify:track:2vOjCXKZ5kcbmzOJ1ylT1h" + }, + "name": "leavemealone", + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" + }, + "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", + "id": "7Eu1txygG6nJttLHbZdQOh", + "name": "Four Tet", + "type": "artist", + "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 319963, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" + }, + "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", + "id": "6EpIDF3GW1dRBujSp4bJxI", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" + }, + "href": "https://api.spotify.com/v1/tracks/0Urc7TcTnxzy6Aw8mx0lLD", + "id": "0Urc7TcTnxzy6Aw8mx0lLD", + "type": "track", + "uri": "spotify:track:0Urc7TcTnxzy6Aw8mx0lLD" + }, + "name": "Baby again..", + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" + }, + "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", + "id": "5he5w2lnU9x7JFhnwcekXX", + "name": "Skrillex", + "type": "artist", + "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" + }, + "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", + "id": "07CimrZi5vs9iEao47TNQ4", + "name": "Flowdan", + "type": "artist", + "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 146571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" + }, + "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", + "id": "74fmYjFwt9CqEFAh8ybeBD", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" + }, + "href": "https://api.spotify.com/v1/tracks/4adcBRu6omRjtTmxVJngTV", + "id": "4adcBRu6omRjtTmxVJngTV", + "type": "track", + "uri": "spotify:track:4adcBRu6omRjtTmxVJngTV" + }, + "name": "Rumble", + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" + }, + "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", + "id": "1h6Cn3P4NGzXbaXidqURXs", + "name": "Swedish House Mafia", + "type": "artist", + "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" + }, + "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", + "id": "1RyvyyTE3xzB2ZywiAwp0i", + "name": "Future", + "type": "artist", + "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 267946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", + "id": "2E6peXBRbjUmGkkR3dUNGe", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "href": "https://api.spotify.com/v1/tracks/0iBtXMkVYuPxz8Nhc0Ckv1", + "id": "0iBtXMkVYuPxz8Nhc0Ckv1", + "type": "track", + "uri": "spotify:track:0iBtXMkVYuPxz8Nhc0Ckv1" + }, + "name": "Turn On The Lights again.. (feat. Future)", + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 198805, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" + }, + "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", + "id": "3BKkroNdTKfNijLG9oHW7c", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" + }, + "href": "https://api.spotify.com/v1/tracks/5euk4pkU8wnBruWyVkOjBy", + "id": "5euk4pkU8wnBruWyVkOjBy", + "type": "track", + "uri": "spotify:track:5euk4pkU8wnBruWyVkOjBy" + }, + "name": "Jungle", + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" + }, + "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", + "id": "5RMLpCv3ic2KtGnqJ7eMG4", + "name": "I. JORDAN", + "type": "artist", + "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 385074, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" + }, + "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", + "id": "7c0DlxLjlEEK2VKQJIIU1Z", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" + }, + "href": "https://api.spotify.com/v1/tracks/3p6raxOehdqXB2tq1yCC6a", + "id": "3p6raxOehdqXB2tq1yCC6a", + "type": "track", + "uri": "spotify:track:3p6raxOehdqXB2tq1yCC6a" + }, + "name": "Admit It (u dont want 2)", + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 288348, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" + }, + "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", + "id": "1RlBD9ays0WfNHSVzxHiKX", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" + }, + "href": "https://api.spotify.com/v1/tracks/001rjToxEiyZnMsZEVdu4R", + "id": "001rjToxEiyZnMsZEVdu4R", + "type": "track", + "uri": "spotify:track:001rjToxEiyZnMsZEVdu4R" + }, + "name": "Lights Out", + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" + }, + "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", + "id": "2p1fiYHYiXz9qi0JJyxBzN", + "name": "Skepta", + "type": "artist", + "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" + }, + "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", + "id": "79NDEw5QWlDC9KaIbogNhS", + "name": "Plaqueboymax", + "type": "artist", + "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" + }, + "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", + "id": "6fxyWrfmjcbj5d12gXeiNV", + "name": "Denzel Curry", + "type": "artist", + "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" + }, + "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", + "id": "4nVa6XlBFlIkF6msW57PHp", + "name": "Hanumankind", + "type": "artist", + "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" + }, + "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", + "id": "3BAgmPNIK5IJl7zMK1wvMA", + "name": "That Mexican OT", + "type": "artist", + "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" + }, + "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", + "id": "6bwkMlweHsBCpI2a0C5nnN", + "name": "D Double E", + "type": "artist", + "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" + }, + "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", + "id": "7xqIp1044Z2vd9v9ZphjLa", + "name": "LYNY", + "type": "artist", + "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 344571, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" + }, + "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", + "id": "3bsAYGy83D6sl1a5otGuUg", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" + }, + "href": "https://api.spotify.com/v1/tracks/7vV6MiU4BHLuNyu4P87z9k", + "id": "7vV6MiU4BHLuNyu4P87z9k", + "type": "track", + "uri": "spotify:track:7vV6MiU4BHLuNyu4P87z9k" + }, + "name": "Victory Lap Five", + "preview_url": null, + "track_number": 15, + "type": "track", + "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" + }, + "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", + "id": "5SXuuuRpukkTvsLuUknva1", + "name": "Baby Keem", + "type": "artist", + "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" + }, + "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", + "id": "7BMR0fwtEvzGtK4rNGdoiQ", + "name": "Nia Archives", + "type": "artist", + "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 179441, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" + }, + "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", + "id": "5u84pGbxFomiV66Uk2kOQK", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" + }, + "href": "https://api.spotify.com/v1/tracks/6ufPi34IYHXG7BYyJR5NX5", + "id": "6ufPi34IYHXG7BYyJR5NX5", + "type": "track", + "uri": "spotify:track:6ufPi34IYHXG7BYyJR5NX5" + }, + "name": "leavemealone - Nia Archives Remix", + "preview_url": null, + "track_number": 16, + "type": "track", + "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" + }, + "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", + "id": "2OaHYHb2XcFPvqL3VsyPzU", + "name": "Rico Nasty", + "type": "artist", + "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 213133, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" + }, + "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", + "id": "3ycgBFWvzxjLtY2YJuQMms", + "linked_from": { "external_urls": { - "spotify": "https://open.spotify.com/album/1sSoDKCPSMPQ8CMAWYUabB" + "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" }, - "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB", - "id": "1sSoDKCPSMPQ8CMAWYUabB", - "images": [ - { - "url": "https://i.scdn.co/image/ab67616d0000b273f21eb2f7f39a49ade2daca2c", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67616d00001e02f21eb2f7f39a49ade2daca2c", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab67616d00004851f21eb2f7f39a49ade2daca2c", - "height": 64, - "width": 64 - } - ], - "name": "USB", - "release_date": "2022-01-18", - "release_date_precision": "day", - "type": "album", - "uri": "spotify:album:1sSoDKCPSMPQ8CMAWYUabB", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "tracks": { - "href": "https://api.spotify.com/v1/albums/1sSoDKCPSMPQ8CMAWYUabB/tracks?offset=0&limit=50", - "limit": 50, - "next": null, - "offset": 0, - "previous": null, - "total": 18, - "items": [ - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" - }, - "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", - "id": "79NDEw5QWlDC9KaIbogNhS", - "name": "Plaqueboymax", - "type": "artist", - "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 165857, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" - }, - "href": "https://api.spotify.com/v1/tracks/1lbNgoJ5iMrMluCyhI4OQP", - "id": "1lbNgoJ5iMrMluCyhI4OQP", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/1RraBERwdsmLqzrbXkGM0n" - }, - "href": "https://api.spotify.com/v1/tracks/1RraBERwdsmLqzrbXkGM0n", - "id": "1RraBERwdsmLqzrbXkGM0n", - "type": "track", - "uri": "spotify:track:1RraBERwdsmLqzrbXkGM0n" - }, - "name": "Victory Lap", - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1lbNgoJ5iMrMluCyhI4OQP", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0aIpJqqTLf683ojWREc5lg" - }, - "href": "https://api.spotify.com/v1/artists/0aIpJqqTLf683ojWREc5lg", - "id": "0aIpJqqTLf683ojWREc5lg", - "name": "Joy Orbison", - "type": "artist", - "uri": "spotify:artist:0aIpJqqTLf683ojWREc5lg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" - }, - "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", - "id": "6icQOAFXDZKsumw3YXyusw", - "name": "Lil Yachty", - "type": "artist", - "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" - }, - "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", - "id": "1RyvyyTE3xzB2ZywiAwp0i", - "name": "Future", - "type": "artist", - "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/699OTQXzgjhIYAHMy9RyPD" - }, - "href": "https://api.spotify.com/v1/artists/699OTQXzgjhIYAHMy9RyPD", - "id": "699OTQXzgjhIYAHMy9RyPD", - "name": "Playboi Carti", - "type": "artist", - "uri": "spotify:artist:699OTQXzgjhIYAHMy9RyPD" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 246909, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" - }, - "href": "https://api.spotify.com/v1/tracks/7qpZh0yIXeZzXZk3mE6Fj9", - "id": "7qpZh0yIXeZzXZk3mE6Fj9", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0sit6qzsa9l2ZQFCnwQiEj" - }, - "href": "https://api.spotify.com/v1/tracks/0sit6qzsa9l2ZQFCnwQiEj", - "id": "0sit6qzsa9l2ZQFCnwQiEj", - "type": "track", - "uri": "spotify:track:0sit6qzsa9l2ZQFCnwQiEj" - }, - "name": "flex fm (freddit)", - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:7qpZh0yIXeZzXZk3mE6Fj9", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4VsVLz3Uw6d0fdM6gFtLfo" - }, - "href": "https://api.spotify.com/v1/artists/4VsVLz3Uw6d0fdM6gFtLfo", - "id": "4VsVLz3Uw6d0fdM6gFtLfo", - "name": "MESSIE", - "type": "artist", - "uri": "spotify:artist:4VsVLz3Uw6d0fdM6gFtLfo" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 219310, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" - }, - "href": "https://api.spotify.com/v1/tracks/73s1r3Jfn8pqXJv9ahKfNV", - "id": "73s1r3Jfn8pqXJv9ahKfNV", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5e1uNQl4SoXGR5ynUKbxre" - }, - "href": "https://api.spotify.com/v1/tracks/5e1uNQl4SoXGR5ynUKbxre", - "id": "5e1uNQl4SoXGR5ynUKbxre", - "type": "track", - "uri": "spotify:track:5e1uNQl4SoXGR5ynUKbxre" - }, - "name": "places to be - MESSIE remix", - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:73s1r3Jfn8pqXJv9ahKfNV", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1fDV6gCETmlkCUugBxq59g" - }, - "href": "https://api.spotify.com/v1/artists/1fDV6gCETmlkCUugBxq59g", - "id": "1fDV6gCETmlkCUugBxq59g", - "name": "Duoteque", - "type": "artist", - "uri": "spotify:artist:1fDV6gCETmlkCUugBxq59g" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2efrqekWSHlvhATD50AG3m" - }, - "href": "https://api.spotify.com/v1/artists/2efrqekWSHlvhATD50AG3m", - "id": "2efrqekWSHlvhATD50AG3m", - "name": "Orion Sun", - "type": "artist", - "uri": "spotify:artist:2efrqekWSHlvhATD50AG3m" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 327508, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" - }, - "href": "https://api.spotify.com/v1/tracks/2la8LWSxedRoulmz0UHE7o", - "id": "2la8LWSxedRoulmz0UHE7o", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6Zg23hhTXwGszV8On0iA2v" - }, - "href": "https://api.spotify.com/v1/tracks/6Zg23hhTXwGszV8On0iA2v", - "id": "6Zg23hhTXwGszV8On0iA2v", - "type": "track", - "uri": "spotify:track:6Zg23hhTXwGszV8On0iA2v" - }, - "name": "ItsNotREEAALLLLLLLL", - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:2la8LWSxedRoulmz0UHE7o", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5zatdvej2AxogC5pbu2msR" - }, - "href": "https://api.spotify.com/v1/artists/5zatdvej2AxogC5pbu2msR", - "id": "5zatdvej2AxogC5pbu2msR", - "name": "BERWYN", - "type": "artist", - "uri": "spotify:artist:5zatdvej2AxogC5pbu2msR" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 123607, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" - }, - "href": "https://api.spotify.com/v1/tracks/59DFl0vh8FoBmmD43ruznv", - "id": "59DFl0vh8FoBmmD43ruznv", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2tlq1Yt4OMFUVpxJS0hbVr" - }, - "href": "https://api.spotify.com/v1/tracks/2tlq1Yt4OMFUVpxJS0hbVr", - "id": "2tlq1Yt4OMFUVpxJS0hbVr", - "type": "track", - "uri": "spotify:track:2tlq1Yt4OMFUVpxJS0hbVr" - }, - "name": "BerwynGesaffNeighbours", - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:59DFl0vh8FoBmmD43ruznv", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jK9MiCrA42lLAdMGUZpwa" - }, - "href": "https://api.spotify.com/v1/artists/3jK9MiCrA42lLAdMGUZpwa", - "id": "3jK9MiCrA42lLAdMGUZpwa", - "name": "Anderson .Paak", - "type": "artist", - "uri": "spotify:artist:3jK9MiCrA42lLAdMGUZpwa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6UtYvUtXnmg5EtllDFlWp8" - }, - "href": "https://api.spotify.com/v1/artists/6UtYvUtXnmg5EtllDFlWp8", - "id": "6UtYvUtXnmg5EtllDFlWp8", - "name": "CHIKA", - "type": "artist", - "uri": "spotify:artist:6UtYvUtXnmg5EtllDFlWp8" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6b0TSaLAeLXilOPoId8udE" - }, - "href": "https://api.spotify.com/v1/artists/6b0TSaLAeLXilOPoId8udE", - "id": "6b0TSaLAeLXilOPoId8udE", - "name": "CLIPZ", - "type": "artist", - "uri": "spotify:artist:6b0TSaLAeLXilOPoId8udE" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 184827, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" - }, - "href": "https://api.spotify.com/v1/tracks/4n4VUdx6tr7MylOySvDhPK", - "id": "4n4VUdx6tr7MylOySvDhPK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/09EP4gcskOhFSTwpwordKY" - }, - "href": "https://api.spotify.com/v1/tracks/09EP4gcskOhFSTwpwordKY", - "id": "09EP4gcskOhFSTwpwordKY", - "type": "track", - "uri": "spotify:track:09EP4gcskOhFSTwpwordKY" - }, - "name": "places to be - CLIPZ remix", - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:4n4VUdx6tr7MylOySvDhPK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw" - }, - "href": "https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw", - "id": "6icQOAFXDZKsumw3YXyusw", - "name": "Lil Yachty", - "type": "artist", - "uri": "spotify:artist:6icQOAFXDZKsumw3YXyusw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/01PnN11ovfen6xUOHfNpn3" - }, - "href": "https://api.spotify.com/v1/artists/01PnN11ovfen6xUOHfNpn3", - "id": "01PnN11ovfen6xUOHfNpn3", - "name": "Overmono", - "type": "artist", - "uri": "spotify:artist:01PnN11ovfen6xUOHfNpn3" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 274925, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" - }, - "href": "https://api.spotify.com/v1/tracks/2iUMh8RrpUiakMnneanOPj", - "id": "2iUMh8RrpUiakMnneanOPj", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3sXMf88N6T9JbpYPYUFYc5" - }, - "href": "https://api.spotify.com/v1/tracks/3sXMf88N6T9JbpYPYUFYc5", - "id": "3sXMf88N6T9JbpYPYUFYc5", - "type": "track", - "uri": "spotify:track:3sXMf88N6T9JbpYPYUFYc5" - }, - "name": "stayinit", - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:2iUMh8RrpUiakMnneanOPj", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" - }, - "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", - "id": "5SXuuuRpukkTvsLuUknva1", - "name": "Baby Keem", - "type": "artist", - "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 222784, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" - }, - "href": "https://api.spotify.com/v1/tracks/2tSP95IyUkPv5Wj83xWh1c", - "id": "2tSP95IyUkPv5Wj83xWh1c", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/2vOjCXKZ5kcbmzOJ1ylT1h" - }, - "href": "https://api.spotify.com/v1/tracks/2vOjCXKZ5kcbmzOJ1ylT1h", - "id": "2vOjCXKZ5kcbmzOJ1ylT1h", - "type": "track", - "uri": "spotify:track:2vOjCXKZ5kcbmzOJ1ylT1h" - }, - "name": "leavemealone", - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:2tSP95IyUkPv5Wj83xWh1c", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7Eu1txygG6nJttLHbZdQOh" - }, - "href": "https://api.spotify.com/v1/artists/7Eu1txygG6nJttLHbZdQOh", - "id": "7Eu1txygG6nJttLHbZdQOh", - "name": "Four Tet", - "type": "artist", - "uri": "spotify:artist:7Eu1txygG6nJttLHbZdQOh" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 319963, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" - }, - "href": "https://api.spotify.com/v1/tracks/6EpIDF3GW1dRBujSp4bJxI", - "id": "6EpIDF3GW1dRBujSp4bJxI", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0Urc7TcTnxzy6Aw8mx0lLD" - }, - "href": "https://api.spotify.com/v1/tracks/0Urc7TcTnxzy6Aw8mx0lLD", - "id": "0Urc7TcTnxzy6Aw8mx0lLD", - "type": "track", - "uri": "spotify:track:0Urc7TcTnxzy6Aw8mx0lLD" - }, - "name": "Baby again..", - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:6EpIDF3GW1dRBujSp4bJxI", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5he5w2lnU9x7JFhnwcekXX" - }, - "href": "https://api.spotify.com/v1/artists/5he5w2lnU9x7JFhnwcekXX", - "id": "5he5w2lnU9x7JFhnwcekXX", - "name": "Skrillex", - "type": "artist", - "uri": "spotify:artist:5he5w2lnU9x7JFhnwcekXX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/07CimrZi5vs9iEao47TNQ4" - }, - "href": "https://api.spotify.com/v1/artists/07CimrZi5vs9iEao47TNQ4", - "id": "07CimrZi5vs9iEao47TNQ4", - "name": "Flowdan", - "type": "artist", - "uri": "spotify:artist:07CimrZi5vs9iEao47TNQ4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 146571, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" - }, - "href": "https://api.spotify.com/v1/tracks/74fmYjFwt9CqEFAh8ybeBD", - "id": "74fmYjFwt9CqEFAh8ybeBD", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/4adcBRu6omRjtTmxVJngTV" - }, - "href": "https://api.spotify.com/v1/tracks/4adcBRu6omRjtTmxVJngTV", - "id": "4adcBRu6omRjtTmxVJngTV", - "type": "track", - "uri": "spotify:track:4adcBRu6omRjtTmxVJngTV" - }, - "name": "Rumble", - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:74fmYjFwt9CqEFAh8ybeBD", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1h6Cn3P4NGzXbaXidqURXs" - }, - "href": "https://api.spotify.com/v1/artists/1h6Cn3P4NGzXbaXidqURXs", - "id": "1h6Cn3P4NGzXbaXidqURXs", - "name": "Swedish House Mafia", - "type": "artist", - "uri": "spotify:artist:1h6Cn3P4NGzXbaXidqURXs" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1RyvyyTE3xzB2ZywiAwp0i" - }, - "href": "https://api.spotify.com/v1/artists/1RyvyyTE3xzB2ZywiAwp0i", - "id": "1RyvyyTE3xzB2ZywiAwp0i", - "name": "Future", - "type": "artist", - "uri": "spotify:artist:1RyvyyTE3xzB2ZywiAwp0i" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 267946, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" - }, - "href": "https://api.spotify.com/v1/tracks/2E6peXBRbjUmGkkR3dUNGe", - "id": "2E6peXBRbjUmGkkR3dUNGe", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/0iBtXMkVYuPxz8Nhc0Ckv1" - }, - "href": "https://api.spotify.com/v1/tracks/0iBtXMkVYuPxz8Nhc0Ckv1", - "id": "0iBtXMkVYuPxz8Nhc0Ckv1", - "type": "track", - "uri": "spotify:track:0iBtXMkVYuPxz8Nhc0Ckv1" - }, - "name": "Turn On The Lights again.. (feat. Future)", - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:2E6peXBRbjUmGkkR3dUNGe", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 198805, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" - }, - "href": "https://api.spotify.com/v1/tracks/3BKkroNdTKfNijLG9oHW7c", - "id": "3BKkroNdTKfNijLG9oHW7c", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/5euk4pkU8wnBruWyVkOjBy" - }, - "href": "https://api.spotify.com/v1/tracks/5euk4pkU8wnBruWyVkOjBy", - "id": "5euk4pkU8wnBruWyVkOjBy", - "type": "track", - "uri": "spotify:track:5euk4pkU8wnBruWyVkOjBy" - }, - "name": "Jungle", - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:3BKkroNdTKfNijLG9oHW7c", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5RMLpCv3ic2KtGnqJ7eMG4" - }, - "href": "https://api.spotify.com/v1/artists/5RMLpCv3ic2KtGnqJ7eMG4", - "id": "5RMLpCv3ic2KtGnqJ7eMG4", - "name": "I. JORDAN", - "type": "artist", - "uri": "spotify:artist:5RMLpCv3ic2KtGnqJ7eMG4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 385074, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" - }, - "href": "https://api.spotify.com/v1/tracks/7c0DlxLjlEEK2VKQJIIU1Z", - "id": "7c0DlxLjlEEK2VKQJIIU1Z", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/3p6raxOehdqXB2tq1yCC6a" - }, - "href": "https://api.spotify.com/v1/tracks/3p6raxOehdqXB2tq1yCC6a", - "id": "3p6raxOehdqXB2tq1yCC6a", - "type": "track", - "uri": "spotify:track:3p6raxOehdqXB2tq1yCC6a" - }, - "name": "Admit It (u dont want 2)", - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:7c0DlxLjlEEK2VKQJIIU1Z", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" - }, - "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", - "id": "0pkLgeB9j465x1QB2kRoy4", - "name": "HAAi", - "type": "artist", - "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 288348, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" - }, - "href": "https://api.spotify.com/v1/tracks/1RlBD9ays0WfNHSVzxHiKX", - "id": "1RlBD9ays0WfNHSVzxHiKX", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/001rjToxEiyZnMsZEVdu4R" - }, - "href": "https://api.spotify.com/v1/tracks/001rjToxEiyZnMsZEVdu4R", - "id": "001rjToxEiyZnMsZEVdu4R", - "type": "track", - "uri": "spotify:track:001rjToxEiyZnMsZEVdu4R" - }, - "name": "Lights Out", - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:1RlBD9ays0WfNHSVzxHiKX", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2p1fiYHYiXz9qi0JJyxBzN" - }, - "href": "https://api.spotify.com/v1/artists/2p1fiYHYiXz9qi0JJyxBzN", - "id": "2p1fiYHYiXz9qi0JJyxBzN", - "name": "Skepta", - "type": "artist", - "uri": "spotify:artist:2p1fiYHYiXz9qi0JJyxBzN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/79NDEw5QWlDC9KaIbogNhS" - }, - "href": "https://api.spotify.com/v1/artists/79NDEw5QWlDC9KaIbogNhS", - "id": "79NDEw5QWlDC9KaIbogNhS", - "name": "Plaqueboymax", - "type": "artist", - "uri": "spotify:artist:79NDEw5QWlDC9KaIbogNhS" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6fxyWrfmjcbj5d12gXeiNV" - }, - "href": "https://api.spotify.com/v1/artists/6fxyWrfmjcbj5d12gXeiNV", - "id": "6fxyWrfmjcbj5d12gXeiNV", - "name": "Denzel Curry", - "type": "artist", - "uri": "spotify:artist:6fxyWrfmjcbj5d12gXeiNV" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4nVa6XlBFlIkF6msW57PHp" - }, - "href": "https://api.spotify.com/v1/artists/4nVa6XlBFlIkF6msW57PHp", - "id": "4nVa6XlBFlIkF6msW57PHp", - "name": "Hanumankind", - "type": "artist", - "uri": "spotify:artist:4nVa6XlBFlIkF6msW57PHp" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3BAgmPNIK5IJl7zMK1wvMA" - }, - "href": "https://api.spotify.com/v1/artists/3BAgmPNIK5IJl7zMK1wvMA", - "id": "3BAgmPNIK5IJl7zMK1wvMA", - "name": "That Mexican OT", - "type": "artist", - "uri": "spotify:artist:3BAgmPNIK5IJl7zMK1wvMA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6bwkMlweHsBCpI2a0C5nnN" - }, - "href": "https://api.spotify.com/v1/artists/6bwkMlweHsBCpI2a0C5nnN", - "id": "6bwkMlweHsBCpI2a0C5nnN", - "name": "D Double E", - "type": "artist", - "uri": "spotify:artist:6bwkMlweHsBCpI2a0C5nnN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7xqIp1044Z2vd9v9ZphjLa" - }, - "href": "https://api.spotify.com/v1/artists/7xqIp1044Z2vd9v9ZphjLa", - "id": "7xqIp1044Z2vd9v9ZphjLa", - "name": "LYNY", - "type": "artist", - "uri": "spotify:artist:7xqIp1044Z2vd9v9ZphjLa" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 344571, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" - }, - "href": "https://api.spotify.com/v1/tracks/3bsAYGy83D6sl1a5otGuUg", - "id": "3bsAYGy83D6sl1a5otGuUg", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/7vV6MiU4BHLuNyu4P87z9k" - }, - "href": "https://api.spotify.com/v1/tracks/7vV6MiU4BHLuNyu4P87z9k", - "id": "7vV6MiU4BHLuNyu4P87z9k", - "type": "track", - "uri": "spotify:track:7vV6MiU4BHLuNyu4P87z9k" - }, - "name": "Victory Lap Five", - "preview_url": null, - "track_number": 15, - "type": "track", - "uri": "spotify:track:3bsAYGy83D6sl1a5otGuUg", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5SXuuuRpukkTvsLuUknva1" - }, - "href": "https://api.spotify.com/v1/artists/5SXuuuRpukkTvsLuUknva1", - "id": "5SXuuuRpukkTvsLuUknva1", - "name": "Baby Keem", - "type": "artist", - "uri": "spotify:artist:5SXuuuRpukkTvsLuUknva1" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7BMR0fwtEvzGtK4rNGdoiQ" - }, - "href": "https://api.spotify.com/v1/artists/7BMR0fwtEvzGtK4rNGdoiQ", - "id": "7BMR0fwtEvzGtK4rNGdoiQ", - "name": "Nia Archives", - "type": "artist", - "uri": "spotify:artist:7BMR0fwtEvzGtK4rNGdoiQ" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 179441, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" - }, - "href": "https://api.spotify.com/v1/tracks/5u84pGbxFomiV66Uk2kOQK", - "id": "5u84pGbxFomiV66Uk2kOQK", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6ufPi34IYHXG7BYyJR5NX5" - }, - "href": "https://api.spotify.com/v1/tracks/6ufPi34IYHXG7BYyJR5NX5", - "id": "6ufPi34IYHXG7BYyJR5NX5", - "type": "track", - "uri": "spotify:track:6ufPi34IYHXG7BYyJR5NX5" - }, - "name": "leavemealone - Nia Archives Remix", - "preview_url": null, - "track_number": 16, - "type": "track", - "uri": "spotify:track:5u84pGbxFomiV66Uk2kOQK", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2OaHYHb2XcFPvqL3VsyPzU" - }, - "href": "https://api.spotify.com/v1/artists/2OaHYHb2XcFPvqL3VsyPzU", - "id": "2OaHYHb2XcFPvqL3VsyPzU", - "name": "Rico Nasty", - "type": "artist", - "uri": "spotify:artist:2OaHYHb2XcFPvqL3VsyPzU" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 213133, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" - }, - "href": "https://api.spotify.com/v1/tracks/3ycgBFWvzxjLtY2YJuQMms", - "id": "3ycgBFWvzxjLtY2YJuQMms", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/51ZdiAjVcjhGGHO83nyYwv" - }, - "href": "https://api.spotify.com/v1/tracks/51ZdiAjVcjhGGHO83nyYwv", - "id": "51ZdiAjVcjhGGHO83nyYwv", - "type": "track", - "uri": "spotify:track:51ZdiAjVcjhGGHO83nyYwv" - }, - "name": "Jungle - Rico Nasty Remix", - "preview_url": null, - "track_number": 17, - "type": "track", - "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", - "is_local": false - }, - { - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" - }, - "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", - "id": "3X2DdnmoANw8Rg8luHyZQb", - "name": "Romy", - "type": "artist", - "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" - }, - "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", - "id": "0pkLgeB9j465x1QB2kRoy4", - "name": "HAAi", - "type": "artist", - "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 375087, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" - }, - "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", - "id": "5HZJuJphtUWc6wuTHt50oQ", - "linked_from": { - "external_urls": { - "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" - }, - "href": "https://api.spotify.com/v1/tracks/6998iKJwFYA9DyAC53Y8sA", - "id": "6998iKJwFYA9DyAC53Y8sA", - "type": "track", - "uri": "spotify:track:6998iKJwFYA9DyAC53Y8sA" - }, - "name": "Lights Out (feat. Fred again..) - HAAi Remix", - "preview_url": null, - "track_number": 18, - "type": "track", - "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", - "is_local": false - } - ] + "href": "https://api.spotify.com/v1/tracks/51ZdiAjVcjhGGHO83nyYwv", + "id": "51ZdiAjVcjhGGHO83nyYwv", + "type": "track", + "uri": "spotify:track:51ZdiAjVcjhGGHO83nyYwv" + }, + "name": "Jungle - Rico Nasty Remix", + "preview_url": null, + "track_number": 17, + "type": "track", + "uri": "spotify:track:3ycgBFWvzxjLtY2YJuQMms", + "is_local": false + }, + { + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3X2DdnmoANw8Rg8luHyZQb" + }, + "href": "https://api.spotify.com/v1/artists/3X2DdnmoANw8Rg8luHyZQb", + "id": "3X2DdnmoANw8Rg8luHyZQb", + "name": "Romy", + "type": "artist", + "uri": "spotify:artist:3X2DdnmoANw8Rg8luHyZQb" }, - "copyrights": [ - { - "text": "An Atlantic Records UK, \u00a9 2024 Warner Music UK Limited", - "type": "C" - }, - { - "text": "An Atlantic Records UK release Bar Track 1, 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2024 Warner Music UK Limited", - "type": "P" - } - ], - "external_ids": { "upc": "5021732887962" }, - "genres": [], - "label": "Atlantic Records UK", - "popularity": 20 + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0pkLgeB9j465x1QB2kRoy4" + }, + "href": "https://api.spotify.com/v1/artists/0pkLgeB9j465x1QB2kRoy4", + "id": "0pkLgeB9j465x1QB2kRoy4", + "name": "HAAi", + "type": "artist", + "uri": "spotify:artist:0pkLgeB9j465x1QB2kRoy4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 375087, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" + }, + "href": "https://api.spotify.com/v1/tracks/5HZJuJphtUWc6wuTHt50oQ", + "id": "5HZJuJphtUWc6wuTHt50oQ", + "linked_from": { + "external_urls": { + "spotify": "https://open.spotify.com/track/6998iKJwFYA9DyAC53Y8sA" + }, + "href": "https://api.spotify.com/v1/tracks/6998iKJwFYA9DyAC53Y8sA", + "id": "6998iKJwFYA9DyAC53Y8sA", + "type": "track", + "uri": "spotify:track:6998iKJwFYA9DyAC53Y8sA" + }, + "name": "Lights Out (feat. Fred again..) - HAAi Remix", + "preview_url": null, + "track_number": 18, + "type": "track", + "uri": "spotify:track:5HZJuJphtUWc6wuTHt50oQ", + "is_local": false } - } - ], - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 45 + ] + }, + "copyrights": [ + { + "text": "An Atlantic Records UK, \u00a9 2024 Warner Music UK Limited", + "type": "C" + }, + { + "text": "An Atlantic Records UK release Bar Track 1, 2024 Hinge Finger under license to Atlantic Records from XL Recordings Ltd, \u2117 2024 Warner Music UK Limited", + "type": "P" + } + ], + "external_ids": { "upc": "5021732887962" }, + "genres": [], + "label": "Atlantic Records UK", + "popularity": 20 + } + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 45 } diff --git a/tests/fixtures/saved_audiobooks.json b/tests/fixtures/saved_audiobooks.json index 2339348..bf4f4e8 100644 --- a/tests/fixtures/saved_audiobooks.json +++ b/tests/fixtures/saved_audiobooks.json @@ -1,496 +1,496 @@ { - "href": "https://api.spotify.com/v1/me/audiobooks?offset=0&limit=48", - "items": [ + "href": "https://api.spotify.com/v1/me/audiobooks?offset=0&limit=48", + "items": [ + { + "authors": [ { - "authors": [ - { - "name": "Anya Niewierra" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["nl"], - "media_type": "audio", - "name": "De nomade", - "narrators": [ - { - "name": "Nienke Brinkhuis" - }, - { - "name": "Cees van Ede" - }, - { - "name": "Mattijn Hartemink" - } - ], - "publisher": "Anya Niewierra", - "type": "audiobook", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV", - "total_chapters": 49 + "name": "Anya Niewierra" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" + }, + "href": "https://api.spotify.com/v1/audiobooks/58cFIY8IT7yGqR3kHnKqzV", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "narrators": [ + { + "name": "Nienke Brinkhuis" + }, + { + "name": "Cees van Ede" + }, + { + "name": "Mattijn Hartemink" + } + ], + "publisher": "Anya Niewierra", + "type": "audiobook", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV", + "total_chapters": 49 + }, + { + "authors": [ + { + "name": "Frank Herbert" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "edition": "Unabridged", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" + }, + "href": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe", + "id": "7iHfbu1YPACw6oZPAFJtqe", + "images": [ + { + "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Dune: Book One in the Dune Chronicles", + "narrators": [ + { + "name": "Scott Brick" + }, + { + "name": "Orlagh Cassidy" + }, + { + "name": "Euan Morton" + }, + { + "name": "Ilyana Kadushin" }, { - "authors": [ - { - "name": "Frank Herbert" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", - "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", - "edition": "Unabridged", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" - }, - "href": "https://api.spotify.com/v1/audiobooks/7iHfbu1YPACw6oZPAFJtqe", - "id": "7iHfbu1YPACw6oZPAFJtqe", - "images": [ - { - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Dune: Book One in the Dune Chronicles", - "narrators": [ - { - "name": "Scott Brick" - }, - { - "name": "Orlagh Cassidy" - }, - { - "name": "Euan Morton" - }, - { - "name": "Ilyana Kadushin" - }, - { - "name": "Simon Vance" - } - ], - "publisher": "Frank Herbert", - "type": "audiobook", - "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe", - "total_chapters": 52 + "name": "Simon Vance" } - ], - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 2 + ], + "publisher": "Frank Herbert", + "type": "audiobook", + "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe", + "total_chapters": 52 + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 2 } diff --git a/tests/fixtures/saved_episodes.json b/tests/fixtures/saved_episodes.json index 7212961..033bc58 100644 --- a/tests/fixtures/saved_episodes.json +++ b/tests/fixtures/saved_episodes.json @@ -1,326 +1,326 @@ { - "href": "https://api.spotify.com/v1/me/episodes?offset=0&limit=48", - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 2, - "items": [ - { - "added_at": "2024-06-07T15:08:30Z", - "episode": { - "audio_preview_url": null, - "description": null, - "duration_ms": null, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/null" - }, - "href": "https://api.spotify.com/v1/episodes/null", - "html_description": null, - "id": null, - "images": [], - "is_externally_hosted": null, - "language": null, - "languages": [null], - "name": null, - "release_date": "0000", - "release_date_precision": "year", - "resume_point": { - "fully_played": false, - "resume_position_ms": null - }, - "show": { - "copyrights": null, - "description": null, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/null" - }, - "href": "https://api.spotify.com/v1/shows/null", - "html_description": null, - "id": null, - "images": [], - "is_externally_hosted": null, - "languages": [null], - "media_type": null, - "name": null, - "publisher": null, - "total_episodes": null, - "type": "show", - "uri": null - }, - "type": "episode", - "uri": null - } + "href": "https://api.spotify.com/v1/me/episodes?offset=0&limit=48", + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 2, + "items": [ + { + "added_at": "2024-06-07T15:08:30Z", + "episode": { + "audio_preview_url": null, + "description": null, + "duration_ms": null, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/null" + }, + "href": "https://api.spotify.com/v1/episodes/null", + "html_description": null, + "id": null, + "images": [], + "is_externally_hosted": null, + "language": null, + "languages": [null], + "name": null, + "release_date": "0000", + "release_date_precision": "year", + "resume_point": { + "fully_played": false, + "resume_position_ms": null + }, + "show": { + "copyrights": null, + "description": null, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/null" + }, + "href": "https://api.spotify.com/v1/shows/null", + "html_description": null, + "id": null, + "images": [], + "is_externally_hosted": null, + "languages": [null], + "media_type": null, + "name": null, + "publisher": null, + "total_episodes": null, + "type": "show", + "uri": null }, - { - "added_at": "2021-04-01T23:21:46Z", - "episode": { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3MPB6hmgIONz91Em6JfkAK/clip_0_60000.mp3", - "description": "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com\u00a0Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster\u00a0For all your Taskmaster goodies visit\u00a0www.taskmasterstore.com\u00a0\u00a0Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", - "duration_ms": 3724303, - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5" - }, - "href": "https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5", - "html_description": "

This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise.


You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.


Watch Taskmaster Bleeped on All 4


Get in touch with Ed and future guests:

taskmasterpodcast@gmail.com\u00a0


Visit the Taskmaster Youtube channel

www.youtube.com/taskmaster\u00a0


For all your Taskmaster goodies visit\u00a0

www.taskmasterstore.com\u00a0\u00a0


Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd

", - "id": "0x25dVaCtjWMmcjDJyuMM5", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en", - "languages": ["en"], - "name": "Ep 26. Katherine Parkinson - S11 Ep.3", - "release_date": "2021-04-01", - "release_date_precision": "day", - "resume_point": { - "fully_played": true, - "resume_position_ms": 20000 - }, - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" - }, - "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", - "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "id": "4BZc9sOdNilJJ8irsuOzdg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", - "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Taskmaster The Podcast", - "publisher": "Avalon ", - "total_episodes": 255, - "type": "show", - "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" - }, - "type": "episode", - "uri": "spotify:episode:0x25dVaCtjWMmcjDJyuMM5" + "type": "episode", + "uri": null + } + }, + { + "added_at": "2021-04-01T23:21:46Z", + "episode": { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3MPB6hmgIONz91Em6JfkAK/clip_0_60000.mp3", + "description": "This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise. You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.Watch Taskmaster Bleeped on All 4Get in touch with Ed and future guests:taskmasterpodcast@gmail.com\u00a0Visit the Taskmaster Youtube channelwww.youtube.com/taskmaster\u00a0For all your Taskmaster goodies visit\u00a0www.taskmasterstore.com\u00a0\u00a0Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd", + "duration_ms": 3724303, + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0x25dVaCtjWMmcjDJyuMM5" + }, + "href": "https://api.spotify.com/v1/episodes/0x25dVaCtjWMmcjDJyuMM5", + "html_description": "

This week on the podcast Ed is joined by actor, writer and Series 10 contestant, Katherine Parkinson. As well as discussing the new line up and this week's tasks they go back to Series 10 and talk about Katherine's time on the show - expect chat about clay masks, marble runs, spiders and THAT fart noise.


You can watch Series 11 of Taskmaster each Thursday on Channel 4 at 9pm.


Watch Taskmaster Bleeped on All 4


Get in touch with Ed and future guests:

taskmasterpodcast@gmail.com\u00a0


Visit the Taskmaster Youtube channel

www.youtube.com/taskmaster\u00a0


For all your Taskmaster goodies visit\u00a0

www.taskmasterstore.com\u00a0\u00a0


Taskmaster the podcast is produced by Daisy Knight for Avalon Television Ltd

", + "id": "0x25dVaCtjWMmcjDJyuMM5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aee2ef0ad038698401b200131", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fee2ef0ad038698401b200131", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dee2ef0ad038698401b200131", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en", + "languages": ["en"], + "name": "Ep 26. Katherine Parkinson - S11 Ep.3", + "release_date": "2021-04-01", + "release_date_precision": "day", + "resume_point": { + "fully_played": true, + "resume_position_ms": 20000 + }, + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" + }, + "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", + "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "id": "4BZc9sOdNilJJ8irsuOzdg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", + "width": 64 } - } - ] + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Taskmaster The Podcast", + "publisher": "Avalon ", + "total_episodes": 255, + "type": "show", + "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" + }, + "type": "episode", + "uri": "spotify:episode:0x25dVaCtjWMmcjDJyuMM5" + } + } + ] } diff --git a/tests/fixtures/saved_shows.json b/tests/fixtures/saved_shows.json index 76015c2..c2cdc24 100644 --- a/tests/fixtures/saved_shows.json +++ b/tests/fixtures/saved_shows.json @@ -1,2948 +1,2948 @@ { - "href": "https://api.spotify.com/v1/me/shows?offset=0&limit=48", - "items": [ - { - "added_at": "2025-05-07T18:05:23Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/21YVDAzO2H21WCndbowuRk" - }, - "href": "https://api.spotify.com/v1/shows/21YVDAzO2H21WCndbowuRk", - "html_description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", - "id": "21YVDAzO2H21WCndbowuRk", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d1e0cd69bb20b9b3dfe26b37d", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f1e0cd69bb20b9b3dfe26b37d", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a1e0cd69bb20b9b3dfe26b37d", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Open Source Stories", - "publisher": "Open Source Stories", - "total_episodes": 29, - "type": "show", - "uri": "spotify:show:21YVDAzO2H21WCndbowuRk" - } + "href": "https://api.spotify.com/v1/me/shows?offset=0&limit=48", + "items": [ + { + "added_at": "2025-05-07T18:05:23Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/21YVDAzO2H21WCndbowuRk" }, - { - "added_at": "2024-10-20T20:20:54Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" - }, - "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", - "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", - "id": "58cFIY8IT7yGqR3kHnKqzV", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["nl"], - "media_type": "audio", - "name": "De nomade", - "publisher": "Anya Niewierra", - "total_episodes": 49, - "type": "show", - "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" - } + "href": "https://api.spotify.com/v1/shows/21YVDAzO2H21WCndbowuRk", + "html_description": "The Open Source Stories project celebrates collaboration, communication, community and, more in open source by collecting narratives from creators, ors, and consumers alike.", + "id": "21YVDAzO2H21WCndbowuRk", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d1e0cd69bb20b9b3dfe26b37d", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f1e0cd69bb20b9b3dfe26b37d", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a1e0cd69bb20b9b3dfe26b37d", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Open Source Stories", + "publisher": "Open Source Stories", + "total_episodes": 29, + "type": "show", + "uri": "spotify:show:21YVDAzO2H21WCndbowuRk" + } + }, + { + "added_at": "2024-10-20T20:20:54Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Anya Niewierra Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/58cFIY8IT7yGqR3kHnKqzV" }, - { - "added_at": "2024-10-20T20:19:29Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" - }, - "href": "https://api.spotify.com/v1/shows/7iHfbu1YPACw6oZPAFJtqe", - "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", - "id": "7iHfbu1YPACw6oZPAFJtqe", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Dune: Book One in the Dune Chronicles", - "publisher": "Frank Herbert", - "total_episodes": 52, - "type": "show", - "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe" - } + "href": "https://api.spotify.com/v1/shows/58cFIY8IT7yGqR3kHnKqzV", + "html_description": "Author(s): Anya Niewierra
Narrator(s): Nienke Brinkhuis, Cees van Ede, Mattijn Hartemink
Na het succes van de bestsellers Het bloemenmeisje en De Camino komt Anya Niewierra met De nomade. Een aangrijpende thriller over vaderliefde en een verborgen verleden. De 37-jarige documentairemaker Olga Liebke woont met haar zonderlinge vader in het Harz-gebergte. Olga heeft een innige band met de inmiddels dementerende man. Haar moeder stierf in het kraambed en ze heeft verder geen familie. Tenminste, zo is het verhaal. Maar dan vertelt haar vader herinneringen die niet rijmen met de geschiedenis zoals zij die kent. Ze gaat twijfelen over haar achtergrond en ontdekt documenten uit de voormalige Sovjet-Unie. Olga reist naar de driehoek Polen, Litouwen en Belarus en stuit op een huiveringwekkend geheim. ‘Anya Niewierra heeft met De nomade weer een magnifiek boek afgeleverd, dat mogelijk nog indrukwekkender is dan De Camino.’ Heleen Spanjaard, Margriet ‘Verrassend, meeslepend en bloedstollend. De nomade is een waardige opvolger van De Camino.’ Rob Cobben, cultuurverslaggever Dagblad De Limburger", + "id": "58cFIY8IT7yGqR3kHnKqzV", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703bc7ae1b41440d0dfa0849e43e", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5bc7ae1b41440d0dfa0849e43e", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8c7ae1b41440d0dfa0849e43e", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "De nomade", + "publisher": "Anya Niewierra", + "total_episodes": 49, + "type": "show", + "uri": "spotify:show:58cFIY8IT7yGqR3kHnKqzV" + } + }, + { + "added_at": "2024-10-20T20:19:29Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Author(s): Frank Herbert Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/7iHfbu1YPACw6oZPAFJtqe" }, - { - "added_at": "2023-08-10T08:17:09Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.Join us everywhere: linktr.ee/ToniAndRyan Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" - }, - "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", - "html_description": "

We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Join us everywhere: linktr.ee/ToniAndRyan

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "5OzkclFjD6iAjtAuo7aIYt", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Toni and Ryan", - "publisher": "Toni Lodge and Ryan Jon", - "total_episodes": 1036, - "type": "show", - "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" - } + "href": "https://api.spotify.com/v1/shows/7iHfbu1YPACw6oZPAFJtqe", + "html_description": "Author(s): Frank Herbert
Narrator(s): Scott Brick, Orlagh Cassidy, Euan Morton, Ilyana Kadushin, Simon Vance
NOW A MAJOR MOTION PICTURE directed by Denis Villeneuve, starring Timothée Chalamet, Zendaya, Rebecca Ferguson, Javier Bardem, Josh Brolin, Austin Butler, Florence Pugh, Dave Bautista, Christopher Walken, Léa Seydoux, Stellan Skarsgård, and Charlotte Rampling Set on the desert planet Arrakis, Dune is the story of the boy Paul Atreides, who would become the mysterious man known as Muad'dib. He would avenge the traitorous plot against his noble family—and would bring to fruition humankind's most ancient and unattainable dream.A stunning blend of adventure and mysticism, environmentalism and politics, Dune won the first Nebula Award, shared the Hugo Award, and formed the basis of what is undoubtedly the grandest epic in science fiction. Frank Herbert's death in 1986 was a tragic loss, yet the astounding legacy of his visionary fiction will live forever. Long-listed, Audible.com Best of the Year, 2007 Long-listed, Audible.com 100 Audible Essentials, 2007 Audie Award winner, 2008", + "id": "7iHfbu1YPACw6oZPAFJtqe", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6766630000703b706d7d39148810e742cef314", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab6766630000db5b706d7d39148810e742cef314", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab676663000022a8706d7d39148810e742cef314", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Dune: Book One in the Dune Chronicles", + "publisher": "Frank Herbert", + "total_episodes": 52, + "type": "show", + "uri": "spotify:show:7iHfbu1YPACw6oZPAFJtqe" + } + }, + { + "added_at": "2023-08-10T08:17:09Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.Join us everywhere: linktr.ee/ToniAndRyan Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/5OzkclFjD6iAjtAuo7aIYt" }, - { - "added_at": "2022-09-15T23:48:23Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2" - }, - "href": "https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2", - "html_description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.

Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", - "id": "6XYRres0KZtnTqKcLavWR2", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "BLAST Push To Talk", - "publisher": "BLAST Premier", - "total_episodes": 19, - "type": "show", - "uri": "spotify:show:6XYRres0KZtnTqKcLavWR2" - } + "href": "https://api.spotify.com/v1/shows/5OzkclFjD6iAjtAuo7aIYt", + "html_description": "

We’ll all giggle along at naughty jokes, your dating horror stories and give questionable recommendations on movies, food and relationships. This podcast is hot, fun garbage and we (Toni Lodge and Ryan Jon here in Melbourne, Australia) would love you to climb aboard and be our friends.

Join us everywhere: linktr.ee/ToniAndRyan

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "5OzkclFjD6iAjtAuo7aIYt", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db5f65a943ef4f707bf79949b", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb5f65a943ef4f707bf79949b", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab5f65a943ef4f707bf79949b", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Toni and Ryan", + "publisher": "Toni Lodge and Ryan Jon", + "total_episodes": 1036, + "type": "show", + "uri": "spotify:show:5OzkclFjD6iAjtAuo7aIYt" + } + }, + { + "added_at": "2022-09-15T23:48:23Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6XYRres0KZtnTqKcLavWR2" }, - { - "added_at": "2022-08-14T11:59:06Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.Get awesome rewards & support the show: patreon.com/falloutlorecastWatch live at youtube.com/c/robotsradioCheck out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zEAdvertise with us & business inquiries: robotsnetwork@gmail.com", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db" - }, - "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db", - "html_description": "

Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!

In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.

Get awesome rewards & support the show: patreon.com/falloutlorecast

Watch live at youtube.com/c/robotsradio

Check out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zE

Advertise with us & business inquiries: robotsnetwork@gmail.com

", - "id": "0e30iIgSffe6xJhFKe35Db", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d29e54f611da80fb306bf5321", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f29e54f611da80fb306bf5321", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a29e54f611da80fb306bf5321", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en-US"], - "media_type": "audio", - "name": "Fallout Lorecast - The Fallout Video Game & TV Lore Podcast", - "publisher": "Robots Radio", - "total_episodes": 395, - "type": "show", - "uri": "spotify:show:0e30iIgSffe6xJhFKe35Db" - } + "href": "https://api.spotify.com/v1/shows/6XYRres0KZtnTqKcLavWR2", + "html_description": "Welcome to BLAST Push To Talk, Counter-Strike like you’ve never heard it before.

Join our host Moses and our field reporters Scrawny and Launders as they interview pro players, share their hot takes on the latest and greatest news in the CS world courtesy of EPOS.", + "id": "6XYRres0KZtnTqKcLavWR2", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5fccb05c5685c081d5c2ad9c", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5fccb05c5685c081d5c2ad9c", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5fccb05c5685c081d5c2ad9c", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "BLAST Push To Talk", + "publisher": "BLAST Premier", + "total_episodes": 19, + "type": "show", + "uri": "spotify:show:6XYRres0KZtnTqKcLavWR2" + } + }, + { + "added_at": "2022-08-14T11:59:06Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.Get awesome rewards & support the show: patreon.com/falloutlorecastWatch live at youtube.com/c/robotsradioCheck out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zEAdvertise with us & business inquiries: robotsnetwork@gmail.com", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/0e30iIgSffe6xJhFKe35Db" }, - { - "added_at": "2021-03-07T14:12:29Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" - }, - "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", - "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", - "id": "4BZc9sOdNilJJ8irsuOzdg", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Taskmaster The Podcast", - "publisher": "Avalon ", - "total_episodes": 255, - "type": "show", - "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" - } + "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db", + "html_description": "

Fallout TV Season 2 Breakdown starts at Episode 384 with a breakdown of every major and minor detail, Easter Eggs, and predictions. Check it out!

In the top 0.5% of podcasts globally and the most popular Fallout podcast, this series fills in all the details about the Fallout world beginning with the Great War in 2077 and progressing through major world events, factions, creatures, technology, and each vault. We'll explore what we know, and speculate about what might be. This show begins as a solo production, detailing specific topics, and grows into so much more.

Get awesome rewards & support the show: patreon.com/falloutlorecast

Watch live at youtube.com/c/robotsradio

Check out my new show, RETRO RECALL: https://youtu.be/Ur6qFVBA9zE

Advertise with us & business inquiries: robotsnetwork@gmail.com

", + "id": "0e30iIgSffe6xJhFKe35Db", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d29e54f611da80fb306bf5321", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f29e54f611da80fb306bf5321", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a29e54f611da80fb306bf5321", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Fallout Lorecast - The Fallout Video Game & TV Lore Podcast", + "publisher": "Robots Radio", + "total_episodes": 395, + "type": "show", + "uri": "spotify:show:0e30iIgSffe6xJhFKe35Db" + } + }, + { + "added_at": "2021-03-07T14:12:29Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/4BZc9sOdNilJJ8irsuOzdg" }, - { - "added_at": "2021-03-06T00:14:09Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq" - }, - "href": "https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq", - "html_description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu.

Hosted on Acast. See acast.com/privacy for more information.

", - "id": "0azMejb7zrmAqctVsUSAdq", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Off Menu with Ed Gamble and James Acaster", - "publisher": "Plosive", - "total_episodes": 368, - "type": "show", - "uri": "spotify:show:0azMejb7zrmAqctVsUSAdq" - } + "href": "https://api.spotify.com/v1/shows/4BZc9sOdNilJJ8irsuOzdg", + "html_description": "This is the official Taskmaster podcast, hosted by former champion and chickpea lover, Ed Gamble. Each week, released straight after the show is broadcast on Channel 4, Ed will be joined by a special guest to dissect and discuss the latest episode. Past contestants, little Alex Horne, and even the Taskmaster himself will feature in this brand-new podcast from the producers of the BAFTA-winning comedy show.", + "id": "4BZc9sOdNilJJ8irsuOzdg", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d940dfd502920d407436baca2", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f940dfd502920d407436baca2", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a940dfd502920d407436baca2", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Taskmaster The Podcast", + "publisher": "Avalon ", + "total_episodes": 255, + "type": "show", + "uri": "spotify:show:4BZc9sOdNilJJ8irsuOzdg" + } + }, + { + "added_at": "2021-03-06T00:14:09Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu. Hosted on Acast. See acast.com/privacy for more information.", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/0azMejb7zrmAqctVsUSAdq" }, - { - "added_at": "2021-03-06T00:13:55Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV" - }, - "href": "https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV", - "html_description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really.
It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience.
But it’s better than it sounds.", - "id": "4CNsZjGkK371UAnyQgX9jV", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "Ed Gamble & Matthew Crosby on Radio X", - "publisher": "Global", - "total_episodes": 358, - "type": "show", - "uri": "spotify:show:4CNsZjGkK371UAnyQgX9jV" - } + "href": "https://api.spotify.com/v1/shows/0azMejb7zrmAqctVsUSAdq", + "html_description": "Comedians Ed Gamble and James Acaster invite special guests into their magical restaurant to each choose their favourite starter, main course, side dish, dessert and drink. Ever wanted to eat your dream meal? It's time to order Off Menu.

Hosted on Acast. See acast.com/privacy for more information.

", + "id": "0azMejb7zrmAqctVsUSAdq", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d35641b80c9d83f6717c2452c", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f35641b80c9d83f6717c2452c", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a35641b80c9d83f6717c2452c", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Off Menu with Ed Gamble and James Acaster", + "publisher": "Plosive", + "total_episodes": 368, + "type": "show", + "uri": "spotify:show:0azMejb7zrmAqctVsUSAdq" + } + }, + { + "added_at": "2021-03-06T00:13:55Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really. It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience. But it’s better than it sounds.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/4CNsZjGkK371UAnyQgX9jV" }, - { - "added_at": "2020-12-29T01:21:38Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ" - }, - "href": "https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ", - "html_description": "

We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!

", - "id": "6xglolTDhKYA8OKyM8IgZQ", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d59da2a4ed5cd8a5809f6904b", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f59da2a4ed5cd8a5809f6904b", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a59da2a4ed5cd8a5809f6904b", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "audio", - "name": "You Can Sit With Us", - "publisher": "The Try Guys & Ramble", - "total_episodes": 284, - "type": "show", - "uri": "spotify:show:6xglolTDhKYA8OKyM8IgZQ" - } + "href": "https://api.spotify.com/v1/shows/4CNsZjGkK371UAnyQgX9jV", + "html_description": "Ed & Matthew (aka Crunch & Crumble) are bringing top quality comedy to your Sunday mornings (8am - 11am). Tune in for film reviews, sports news, phone-ins, excuses, puns, quizzes, facts about catfish, and an education in heavy metal. No, really.
It’s like a proper weekend breakfast show, but presented by two comedians with relatively little radio experience.
But it’s better than it sounds.", + "id": "4CNsZjGkK371UAnyQgX9jV", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a9c9d9ffd893edf7a43c758", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a9c9d9ffd893edf7a43c758", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a9c9d9ffd893edf7a43c758", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "Ed Gamble & Matthew Crosby on Radio X", + "publisher": "Global", + "total_episodes": 358, + "type": "show", + "uri": "spotify:show:4CNsZjGkK371UAnyQgX9jV" + } + }, + { + "added_at": "2020-12-29T01:21:38Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6xglolTDhKYA8OKyM8IgZQ" }, - { - "added_at": "2020-12-29T01:21:21Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ" - }, - "href": "https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ", - "html_description": "

The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!

", - "id": "3qCNuzujMoeNsMHp8c79dJ", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d403fd54e9434b88f53bddab3", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f403fd54e9434b88f53bddab3", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a403fd54e9434b88f53bddab3", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en"], - "media_type": "mixed", - "name": "The TryPod", - "publisher": "The Try Guys", - "total_episodes": 353, - "type": "show", - "uri": "spotify:show:3qCNuzujMoeNsMHp8c79dJ" - } + "href": "https://api.spotify.com/v1/shows/6xglolTDhKYA8OKyM8IgZQ", + "html_description": "

We're your new best friends. In our weekly podcast we dive into female friendships, current events, and what's going on in our lives. Come sit with us, and enjoy!

", + "id": "6xglolTDhKYA8OKyM8IgZQ", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d59da2a4ed5cd8a5809f6904b", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f59da2a4ed5cd8a5809f6904b", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a59da2a4ed5cd8a5809f6904b", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "audio", + "name": "You Can Sit With Us", + "publisher": "The Try Guys & Ramble", + "total_episodes": 284, + "type": "show", + "uri": "spotify:show:6xglolTDhKYA8OKyM8IgZQ" + } + }, + { + "added_at": "2020-12-29T01:21:21Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/3qCNuzujMoeNsMHp8c79dJ" }, - { - "added_at": "2020-11-06T13:38:49Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA" - }, - "href": "https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA", - "html_description": "

The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.

", - "id": "3OHCFs84lqizjkL4C9bNTA", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dd106b2a18dc9fa6f52fef9b1", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fd106b2a18dc9fa6f52fef9b1", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ad106b2a18dc9fa6f52fef9b1", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["en-US"], - "media_type": "audio", - "name": "Office Ladies", - "publisher": "Audacy & Jenna Fischer and Angela Kinsey", - "total_episodes": 423, - "type": "show", - "uri": "spotify:show:3OHCFs84lqizjkL4C9bNTA" - } + "href": "https://api.spotify.com/v1/shows/3qCNuzujMoeNsMHp8c79dJ", + "html_description": "

The Try Guys have swam with sharks, survived in the wild, shocked themselves with birthing simulators, and so much more. Now they're here to chat about their lives in between the videos on their Webby-award-winning podcast, The TryPod. Now with video versions on Spotify!

", + "id": "3qCNuzujMoeNsMHp8c79dJ", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d403fd54e9434b88f53bddab3", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f403fd54e9434b88f53bddab3", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a403fd54e9434b88f53bddab3", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en"], + "media_type": "mixed", + "name": "The TryPod", + "publisher": "The Try Guys", + "total_episodes": 353, + "type": "show", + "uri": "spotify:show:3qCNuzujMoeNsMHp8c79dJ" + } + }, + { + "added_at": "2020-11-06T13:38:49Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/3OHCFs84lqizjkL4C9bNTA" }, - { - "added_at": "2020-08-20T06:52:51Z", - "show": { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.", - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI" - }, - "href": "https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI", - "html_description": "

Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.

", - "id": "6AeemTu3AwFDGkM50OtnbI", - "images": [ - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d16a7cc88bc0bbef0aed05f4f", - "width": 64 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f16a7cc88bc0bbef0aed05f4f", - "width": 300 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a16a7cc88bc0bbef0aed05f4f", - "width": 640 - } - ], - "is_externally_hosted": false, - "languages": ["nl"], - "media_type": "audio", - "name": "Wat een Week!", - "publisher": "Maxim Hartman & Willem Treur", - "total_episodes": 477, - "type": "show", - "uri": "spotify:show:6AeemTu3AwFDGkM50OtnbI" - } - } - ], - "limit": 48, - "next": null, - "offset": 0, - "previous": null, - "total": 13 + "href": "https://api.spotify.com/v1/shows/3OHCFs84lqizjkL4C9bNTA", + "html_description": "

The Office co-stars and best friends, Jenna Fischer and Angela Kinsey, are doing the ultimate The Office re-watch podcast for you. Each week Jenna and Angela will break down an episode of The Office and give exclusive behind the scene stories that only two people who were there, can tell you.

", + "id": "3OHCFs84lqizjkL4C9bNTA", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dd106b2a18dc9fa6f52fef9b1", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fd106b2a18dc9fa6f52fef9b1", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ad106b2a18dc9fa6f52fef9b1", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Office Ladies", + "publisher": "Audacy & Jenna Fischer and Angela Kinsey", + "total_episodes": 423, + "type": "show", + "uri": "spotify:show:3OHCFs84lqizjkL4C9bNTA" + } + }, + { + "added_at": "2020-08-20T06:52:51Z", + "show": { + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.", + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/show/6AeemTu3AwFDGkM50OtnbI" + }, + "href": "https://api.spotify.com/v1/shows/6AeemTu3AwFDGkM50OtnbI", + "html_description": "

Welkom bij Wat een week, de podcast van Maxim Hartman en Willem Treur. Hier posten we iedere donderdag een nieuwe aflevering, om je te helpen om het nieuws van afgelopen week te verteren, zonder er aan onderdoor te gaan. In samenwerking met Dag en Nacht Media.

", + "id": "6AeemTu3AwFDGkM50OtnbI", + "images": [ + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d16a7cc88bc0bbef0aed05f4f", + "width": 64 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f16a7cc88bc0bbef0aed05f4f", + "width": 300 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a16a7cc88bc0bbef0aed05f4f", + "width": 640 + } + ], + "is_externally_hosted": false, + "languages": ["nl"], + "media_type": "audio", + "name": "Wat een Week!", + "publisher": "Maxim Hartman & Willem Treur", + "total_episodes": 477, + "type": "show", + "uri": "spotify:show:6AeemTu3AwFDGkM50OtnbI" + } + } + ], + "limit": 48, + "next": null, + "offset": 0, + "previous": null, + "total": 13 } diff --git a/tests/fixtures/saved_tracks.json b/tests/fixtures/saved_tracks.json index 16414b0..bf8e266 100644 --- a/tests/fixtures/saved_tracks.json +++ b/tests/fixtures/saved_tracks.json @@ -1,21824 +1,21824 @@ { - "href": "https://api.spotify.com/v1/me/tracks?offset=0&limit=48", - "items": [ - { - "added_at": "2026-02-23T13:28:26Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" - }, - "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", - "id": "1X0ak6iQZOYqdVXzj8Tfbz", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d" - } - ], - "is_playable": true, - "name": "Cold Silver", - "release_date": "2025-10-08", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222242, - "explicit": true, - "external_ids": { "isrc": "USYFZ2565101" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" - }, - "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", - "id": "0Y0PdrwwWtYTFhCY5Kj0iv", - "is_local": false, - "is_playable": true, - "name": "Cold Silver", - "popularity": 36, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" + "href": "https://api.spotify.com/v1/me/tracks?offset=0&limit=48", + "items": [ + { + "added_at": "2026-02-23T13:28:26Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" + }, + "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", + "id": "1X0ak6iQZOYqdVXzj8Tfbz", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d" + } + ], + "is_playable": true, + "name": "Cold Silver", + "release_date": "2025-10-08", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222242, + "explicit": true, + "external_ids": { "isrc": "USYFZ2565101" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" }, - { - "added_at": "2026-02-18T23:33:21Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" - }, - "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", - "id": "2GgySUiN0AJwFJLdZCE9Ce", - "name": "Lolita KompleX", - "type": "artist", - "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6voJTR0ZT84lekqx3gyZ2M" - }, - "href": "https://api.spotify.com/v1/albums/6voJTR0ZT84lekqx3gyZ2M", - "id": "6voJTR0ZT84lekqx3gyZ2M", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737be5c309088b465e688dd4e5" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027be5c309088b465e688dd4e5" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048517be5c309088b465e688dd4e5" - } - ], - "is_playable": true, - "name": "Escapism", - "release_date": "2019-07-05", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:6voJTR0ZT84lekqx3gyZ2M" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" - }, - "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", - "id": "2GgySUiN0AJwFJLdZCE9Ce", - "name": "Lolita KompleX", - "type": "artist", - "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 181039, - "explicit": false, - "external_ids": { "isrc": "FR2X41948396" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3TaqQSf0dmZNLen5ogqUH7" - }, - "href": "https://api.spotify.com/v1/tracks/3TaqQSf0dmZNLen5ogqUH7", - "id": "3TaqQSf0dmZNLen5ogqUH7", - "is_local": false, - "is_playable": true, - "name": "Dystopia", - "popularity": 21, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:3TaqQSf0dmZNLen5ogqUH7" + "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", + "id": "0Y0PdrwwWtYTFhCY5Kj0iv", + "is_local": false, + "is_playable": true, + "name": "Cold Silver", + "popularity": 36, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" + } + }, + { + "added_at": "2026-02-18T23:33:21Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" + }, + "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", + "id": "2GgySUiN0AJwFJLdZCE9Ce", + "name": "Lolita KompleX", + "type": "artist", + "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6voJTR0ZT84lekqx3gyZ2M" + }, + "href": "https://api.spotify.com/v1/albums/6voJTR0ZT84lekqx3gyZ2M", + "id": "6voJTR0ZT84lekqx3gyZ2M", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737be5c309088b465e688dd4e5" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027be5c309088b465e688dd4e5" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517be5c309088b465e688dd4e5" + } + ], + "is_playable": true, + "name": "Escapism", + "release_date": "2019-07-05", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6voJTR0ZT84lekqx3gyZ2M" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2GgySUiN0AJwFJLdZCE9Ce" + }, + "href": "https://api.spotify.com/v1/artists/2GgySUiN0AJwFJLdZCE9Ce", + "id": "2GgySUiN0AJwFJLdZCE9Ce", + "name": "Lolita KompleX", + "type": "artist", + "uri": "spotify:artist:2GgySUiN0AJwFJLdZCE9Ce" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 181039, + "explicit": false, + "external_ids": { "isrc": "FR2X41948396" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3TaqQSf0dmZNLen5ogqUH7" }, - { - "added_at": "2026-02-17T11:44:29Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" - }, - "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", - "id": "3CjlHNtplJyTf9npxaPl5w", - "name": "CHVRCHES", - "type": "artist", - "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3Qabstvdx4TfWujTzy5Gee" - }, - "href": "https://api.spotify.com/v1/albums/3Qabstvdx4TfWujTzy5Gee", - "id": "3Qabstvdx4TfWujTzy5Gee", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a425e7a03d90b49694716fba" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a425e7a03d90b49694716fba" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a425e7a03d90b49694716fba" - } - ], - "is_playable": true, - "name": "Such Great Heights [From \"Tell Me Lies (Season 3)\"]", - "release_date": "2026-02-17", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:3Qabstvdx4TfWujTzy5Gee" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" - }, - "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", - "id": "3CjlHNtplJyTf9npxaPl5w", - "name": "CHVRCHES", - "type": "artist", - "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267976, - "explicit": false, - "external_ids": { "isrc": "USHR12552506" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2UJ5jlXlRkBx4dyVGIEGc0" - }, - "href": "https://api.spotify.com/v1/tracks/2UJ5jlXlRkBx4dyVGIEGc0", - "id": "2UJ5jlXlRkBx4dyVGIEGc0", - "is_local": false, - "is_playable": true, - "name": "Such Great Heights - From \"Tell Me Lies (Season 3)\"", - "popularity": 54, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2UJ5jlXlRkBx4dyVGIEGc0" + "href": "https://api.spotify.com/v1/tracks/3TaqQSf0dmZNLen5ogqUH7", + "id": "3TaqQSf0dmZNLen5ogqUH7", + "is_local": false, + "is_playable": true, + "name": "Dystopia", + "popularity": 21, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:3TaqQSf0dmZNLen5ogqUH7" + } + }, + { + "added_at": "2026-02-17T11:44:29Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" + }, + "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", + "id": "3CjlHNtplJyTf9npxaPl5w", + "name": "CHVRCHES", + "type": "artist", + "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Qabstvdx4TfWujTzy5Gee" + }, + "href": "https://api.spotify.com/v1/albums/3Qabstvdx4TfWujTzy5Gee", + "id": "3Qabstvdx4TfWujTzy5Gee", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a425e7a03d90b49694716fba" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a425e7a03d90b49694716fba" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a425e7a03d90b49694716fba" + } + ], + "is_playable": true, + "name": "Such Great Heights [From \"Tell Me Lies (Season 3)\"]", + "release_date": "2026-02-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3Qabstvdx4TfWujTzy5Gee" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3CjlHNtplJyTf9npxaPl5w" + }, + "href": "https://api.spotify.com/v1/artists/3CjlHNtplJyTf9npxaPl5w", + "id": "3CjlHNtplJyTf9npxaPl5w", + "name": "CHVRCHES", + "type": "artist", + "uri": "spotify:artist:3CjlHNtplJyTf9npxaPl5w" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267976, + "explicit": false, + "external_ids": { "isrc": "USHR12552506" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2UJ5jlXlRkBx4dyVGIEGc0" }, - { - "added_at": "2026-02-16T22:56:14Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" - }, - "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", - "id": "4EvbQBS99RXzFGGimAS3i9", - "name": "Blood Stain Child", - "type": "artist", - "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4TQyTokknRMto3WhTdodZK" - }, - "href": "https://api.spotify.com/v1/albums/4TQyTokknRMto3WhTdodZK", - "id": "4TQyTokknRMto3WhTdodZK", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273d396dcff123c425a196ac2f1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02d396dcff123c425a196ac2f1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851d396dcff123c425a196ac2f1" - } - ], - "is_playable": true, - "name": "Epsilon", - "release_date": "2011-06-30", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:4TQyTokknRMto3WhTdodZK" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" - }, - "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", - "id": "4EvbQBS99RXzFGGimAS3i9", - "name": "Blood Stain Child", - "type": "artist", - "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 261013, - "explicit": false, - "external_ids": { "isrc": "ITY101114003" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0YyBaPhV9rGcDhs3dS7V6q" - }, - "href": "https://api.spotify.com/v1/tracks/0YyBaPhV9rGcDhs3dS7V6q", - "id": "0YyBaPhV9rGcDhs3dS7V6q", - "is_local": false, - "is_playable": true, - "name": "Stargazer", - "popularity": 31, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0YyBaPhV9rGcDhs3dS7V6q" + "href": "https://api.spotify.com/v1/tracks/2UJ5jlXlRkBx4dyVGIEGc0", + "id": "2UJ5jlXlRkBx4dyVGIEGc0", + "is_local": false, + "is_playable": true, + "name": "Such Great Heights - From \"Tell Me Lies (Season 3)\"", + "popularity": 54, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2UJ5jlXlRkBx4dyVGIEGc0" + } + }, + { + "added_at": "2026-02-16T22:56:14Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" + }, + "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", + "id": "4EvbQBS99RXzFGGimAS3i9", + "name": "Blood Stain Child", + "type": "artist", + "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4TQyTokknRMto3WhTdodZK" + }, + "href": "https://api.spotify.com/v1/albums/4TQyTokknRMto3WhTdodZK", + "id": "4TQyTokknRMto3WhTdodZK", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d396dcff123c425a196ac2f1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d396dcff123c425a196ac2f1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d396dcff123c425a196ac2f1" } + ], + "is_playable": true, + "name": "Epsilon", + "release_date": "2011-06-30", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4TQyTokknRMto3WhTdodZK" }, - { - "added_at": "2026-02-16T22:27:42Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" - }, - "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", - "id": "16AVsBqzmIZTNHd0eX8VbK", - "name": "The Birthday Massacre", - "type": "artist", - "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" - }, - "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", - "id": "6VoutwXXcQBDbcZlmlYbxc", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" - } - ], - "is_playable": true, - "name": "Pins And Needles", - "release_date": "2010-09-14", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" - }, - "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", - "id": "16AVsBqzmIZTNHd0eX8VbK", - "name": "The Birthday Massacre", - "type": "artist", - "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 229600, - "explicit": false, - "external_ids": { "isrc": "US57M1068010" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7Gfg6IiBYzsq1XG9dm1oRG" - }, - "href": "https://api.spotify.com/v1/tracks/7Gfg6IiBYzsq1XG9dm1oRG", - "id": "7Gfg6IiBYzsq1XG9dm1oRG", - "is_local": false, - "is_playable": true, - "name": "Sleepwalking", - "popularity": 42, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:7Gfg6IiBYzsq1XG9dm1oRG" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4EvbQBS99RXzFGGimAS3i9" + }, + "href": "https://api.spotify.com/v1/artists/4EvbQBS99RXzFGGimAS3i9", + "id": "4EvbQBS99RXzFGGimAS3i9", + "name": "Blood Stain Child", + "type": "artist", + "uri": "spotify:artist:4EvbQBS99RXzFGGimAS3i9" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 261013, + "explicit": false, + "external_ids": { "isrc": "ITY101114003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0YyBaPhV9rGcDhs3dS7V6q" + }, + "href": "https://api.spotify.com/v1/tracks/0YyBaPhV9rGcDhs3dS7V6q", + "id": "0YyBaPhV9rGcDhs3dS7V6q", + "is_local": false, + "is_playable": true, + "name": "Stargazer", + "popularity": 31, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0YyBaPhV9rGcDhs3dS7V6q" + } + }, + { + "added_at": "2026-02-16T22:27:42Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" + }, + "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", + "id": "6VoutwXXcQBDbcZlmlYbxc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" } + ], + "is_playable": true, + "name": "Pins And Needles", + "release_date": "2010-09-14", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 229600, + "explicit": false, + "external_ids": { "isrc": "US57M1068010" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7Gfg6IiBYzsq1XG9dm1oRG" }, - { - "added_at": "2026-02-16T21:15:43Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" - }, - "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", - "id": "16AVsBqzmIZTNHd0eX8VbK", - "name": "The Birthday Massacre", - "type": "artist", - "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" - }, - "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", - "id": "6VoutwXXcQBDbcZlmlYbxc", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" - } - ], - "is_playable": true, - "name": "Pins And Needles", - "release_date": "2010-09-14", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" - }, - "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", - "id": "16AVsBqzmIZTNHd0eX8VbK", - "name": "The Birthday Massacre", - "type": "artist", - "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 200266, - "explicit": false, - "external_ids": { "isrc": "US57M1068004" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6wRnCFOePoaifD2SmZ7K7B" - }, - "href": "https://api.spotify.com/v1/tracks/6wRnCFOePoaifD2SmZ7K7B", - "id": "6wRnCFOePoaifD2SmZ7K7B", - "is_local": false, - "is_playable": true, - "name": "Control", - "popularity": 35, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:6wRnCFOePoaifD2SmZ7K7B" + "href": "https://api.spotify.com/v1/tracks/7Gfg6IiBYzsq1XG9dm1oRG", + "id": "7Gfg6IiBYzsq1XG9dm1oRG", + "is_local": false, + "is_playable": true, + "name": "Sleepwalking", + "popularity": 42, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:7Gfg6IiBYzsq1XG9dm1oRG" + } + }, + { + "added_at": "2026-02-16T21:15:43Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6VoutwXXcQBDbcZlmlYbxc" + }, + "href": "https://api.spotify.com/v1/albums/6VoutwXXcQBDbcZlmlYbxc", + "id": "6VoutwXXcQBDbcZlmlYbxc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738c88a251fa147359fcce93a1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028c88a251fa147359fcce93a1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518c88a251fa147359fcce93a1" + } + ], + "is_playable": true, + "name": "Pins And Needles", + "release_date": "2010-09-14", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:6VoutwXXcQBDbcZlmlYbxc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "name": "The Birthday Massacre", + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 200266, + "explicit": false, + "external_ids": { "isrc": "US57M1068004" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6wRnCFOePoaifD2SmZ7K7B" }, - { - "added_at": "2026-02-13T10:59:08Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" - }, - "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", - "id": "1HGrQZLhmqlEuACUnQY7yy", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945" - } - ], - "is_playable": true, - "name": "FATE of ALL", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244360, - "explicit": false, - "external_ids": { "isrc": "QZHN52659492" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" - }, - "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", - "id": "29DpW469MK56dBqxSfzwDs", - "is_local": false, - "is_playable": true, - "name": "FATE of ALL", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" + "href": "https://api.spotify.com/v1/tracks/6wRnCFOePoaifD2SmZ7K7B", + "id": "6wRnCFOePoaifD2SmZ7K7B", + "is_local": false, + "is_playable": true, + "name": "Control", + "popularity": 35, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:6wRnCFOePoaifD2SmZ7K7B" + } + }, + { + "added_at": "2026-02-13T10:59:08Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" + }, + "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", + "id": "1HGrQZLhmqlEuACUnQY7yy", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945" } + ], + "is_playable": true, + "name": "FATE of ALL", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" }, - { - "added_at": "2026-02-11T21:37:52Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" - }, - "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", - "id": "4G9NDjRyZFDlJKMRL8hx3S", - "name": "sombr", - "type": "artist", - "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7mvXPtV4jvA1hp5Wx2FAJA" - }, - "href": "https://api.spotify.com/v1/albums/7mvXPtV4jvA1hp5Wx2FAJA", - "id": "7mvXPtV4jvA1hp5Wx2FAJA", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734229702de91cb3d3a4383302" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024229702de91cb3d3a4383302" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048514229702de91cb3d3a4383302" - } - ], - "is_playable": true, - "name": "I Barely Know Her", - "release_date": "2025-08-22", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:7mvXPtV4jvA1hp5Wx2FAJA" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" - }, - "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", - "id": "4G9NDjRyZFDlJKMRL8hx3S", - "name": "sombr", - "type": "artist", - "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 242903, - "explicit": false, - "external_ids": { "isrc": "USWB12502453" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/05od2qm2MTSKCHxy1GBp5W" - }, - "href": "https://api.spotify.com/v1/tracks/05od2qm2MTSKCHxy1GBp5W", - "id": "05od2qm2MTSKCHxy1GBp5W", - "is_local": false, - "is_playable": true, - "name": "12 to 12", - "popularity": 90, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:05od2qm2MTSKCHxy1GBp5W" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244360, + "explicit": false, + "external_ids": { "isrc": "QZHN52659492" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" + }, + "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", + "id": "29DpW469MK56dBqxSfzwDs", + "is_local": false, + "is_playable": true, + "name": "FATE of ALL", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" + } + }, + { + "added_at": "2026-02-11T21:37:52Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" + }, + "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", + "id": "4G9NDjRyZFDlJKMRL8hx3S", + "name": "sombr", + "type": "artist", + "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7mvXPtV4jvA1hp5Wx2FAJA" + }, + "href": "https://api.spotify.com/v1/albums/7mvXPtV4jvA1hp5Wx2FAJA", + "id": "7mvXPtV4jvA1hp5Wx2FAJA", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734229702de91cb3d3a4383302" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024229702de91cb3d3a4383302" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048514229702de91cb3d3a4383302" } + ], + "is_playable": true, + "name": "I Barely Know Her", + "release_date": "2025-08-22", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:7mvXPtV4jvA1hp5Wx2FAJA" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4G9NDjRyZFDlJKMRL8hx3S" + }, + "href": "https://api.spotify.com/v1/artists/4G9NDjRyZFDlJKMRL8hx3S", + "id": "4G9NDjRyZFDlJKMRL8hx3S", + "name": "sombr", + "type": "artist", + "uri": "spotify:artist:4G9NDjRyZFDlJKMRL8hx3S" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 242903, + "explicit": false, + "external_ids": { "isrc": "USWB12502453" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/05od2qm2MTSKCHxy1GBp5W" }, - { - "added_at": "2026-02-10T22:19:19Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" - }, - "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", - "id": "7zt6Af78CalxaPDqORfw8L", - "name": "Annie", - "type": "artist", - "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1dMkUqXlm5b3JxSzBmVIX5" - }, - "href": "https://api.spotify.com/v1/albums/1dMkUqXlm5b3JxSzBmVIX5", - "id": "1dMkUqXlm5b3JxSzBmVIX5", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730570e34fef3c011c35486001" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020570e34fef3c011c35486001" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048510570e34fef3c011c35486001" - } - ], - "is_playable": true, - "name": "Dark Hearts", - "release_date": "2020-10-16", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:1dMkUqXlm5b3JxSzBmVIX5" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" - }, - "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", - "id": "7zt6Af78CalxaPDqORfw8L", - "name": "Annie", - "type": "artist", - "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 226869, - "explicit": false, - "external_ids": { "isrc": "NOQVR2001070" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7t1C2Z5kYtmhZGMs5mIFz2" - }, - "href": "https://api.spotify.com/v1/tracks/7t1C2Z5kYtmhZGMs5mIFz2", - "id": "7t1C2Z5kYtmhZGMs5mIFz2", - "is_local": false, - "is_playable": true, - "name": "American Cars", - "popularity": 47, - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:7t1C2Z5kYtmhZGMs5mIFz2" + "href": "https://api.spotify.com/v1/tracks/05od2qm2MTSKCHxy1GBp5W", + "id": "05od2qm2MTSKCHxy1GBp5W", + "is_local": false, + "is_playable": true, + "name": "12 to 12", + "popularity": 90, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:05od2qm2MTSKCHxy1GBp5W" + } + }, + { + "added_at": "2026-02-10T22:19:19Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" + }, + "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", + "id": "7zt6Af78CalxaPDqORfw8L", + "name": "Annie", + "type": "artist", + "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1dMkUqXlm5b3JxSzBmVIX5" + }, + "href": "https://api.spotify.com/v1/albums/1dMkUqXlm5b3JxSzBmVIX5", + "id": "1dMkUqXlm5b3JxSzBmVIX5", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730570e34fef3c011c35486001" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020570e34fef3c011c35486001" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048510570e34fef3c011c35486001" + } + ], + "is_playable": true, + "name": "Dark Hearts", + "release_date": "2020-10-16", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:1dMkUqXlm5b3JxSzBmVIX5" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7zt6Af78CalxaPDqORfw8L" + }, + "href": "https://api.spotify.com/v1/artists/7zt6Af78CalxaPDqORfw8L", + "id": "7zt6Af78CalxaPDqORfw8L", + "name": "Annie", + "type": "artist", + "uri": "spotify:artist:7zt6Af78CalxaPDqORfw8L" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 226869, + "explicit": false, + "external_ids": { "isrc": "NOQVR2001070" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7t1C2Z5kYtmhZGMs5mIFz2" }, - { - "added_at": "2026-02-10T21:44:05Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" - }, - "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", - "id": "0JXwYf8x27ZfMO2gGuh6HO", - "name": "Brooke Combe", - "type": "artist", - "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7kz0Hn6RArQSJVQfyIqaxp" - }, - "href": "https://api.spotify.com/v1/albums/7kz0Hn6RArQSJVQfyIqaxp", - "id": "7kz0Hn6RArQSJVQfyIqaxp", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27347bda116b82088a2a40fb9c0" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0247bda116b82088a2a40fb9c0" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485147bda116b82088a2a40fb9c0" - } - ], - "is_playable": true, - "name": "Black Is The New Gold", - "release_date": "2023-04-21", - "release_date_precision": "day", - "total_tracks": 8, - "type": "album", - "uri": "spotify:album:7kz0Hn6RArQSJVQfyIqaxp" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" - }, - "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", - "id": "0JXwYf8x27ZfMO2gGuh6HO", - "name": "Brooke Combe", - "type": "artist", - "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 179354, - "explicit": false, - "external_ids": { "isrc": "GBUM72200009" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6xXx3GFDuZe2kaLRbyNqqa" - }, - "href": "https://api.spotify.com/v1/tracks/6xXx3GFDuZe2kaLRbyNqqa", - "id": "6xXx3GFDuZe2kaLRbyNqqa", - "is_local": false, - "is_playable": true, - "name": "Miss Me Now", - "popularity": 36, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6xXx3GFDuZe2kaLRbyNqqa" + "href": "https://api.spotify.com/v1/tracks/7t1C2Z5kYtmhZGMs5mIFz2", + "id": "7t1C2Z5kYtmhZGMs5mIFz2", + "is_local": false, + "is_playable": true, + "name": "American Cars", + "popularity": 47, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:7t1C2Z5kYtmhZGMs5mIFz2" + } + }, + { + "added_at": "2026-02-10T21:44:05Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" + }, + "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", + "id": "0JXwYf8x27ZfMO2gGuh6HO", + "name": "Brooke Combe", + "type": "artist", + "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7kz0Hn6RArQSJVQfyIqaxp" + }, + "href": "https://api.spotify.com/v1/albums/7kz0Hn6RArQSJVQfyIqaxp", + "id": "7kz0Hn6RArQSJVQfyIqaxp", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27347bda116b82088a2a40fb9c0" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0247bda116b82088a2a40fb9c0" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485147bda116b82088a2a40fb9c0" } + ], + "is_playable": true, + "name": "Black Is The New Gold", + "release_date": "2023-04-21", + "release_date_precision": "day", + "total_tracks": 8, + "type": "album", + "uri": "spotify:album:7kz0Hn6RArQSJVQfyIqaxp" }, - { - "added_at": "2026-02-10T21:44:04Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" - }, - "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", - "id": "6NvsbUgzHkjZK3ZUEWui41", - "name": "Kai Bosch", - "type": "artist", - "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7gnf1UNA18n7SThlTZa3CS" - }, - "href": "https://api.spotify.com/v1/albums/7gnf1UNA18n7SThlTZa3CS", - "id": "7gnf1UNA18n7SThlTZa3CS", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273acd4f105323904b6cc1cf4e1" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02acd4f105323904b6cc1cf4e1" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851acd4f105323904b6cc1cf4e1" - } - ], - "is_playable": true, - "name": "Angel", - "release_date": "2025-02-19", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:7gnf1UNA18n7SThlTZa3CS" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" - }, - "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", - "id": "6NvsbUgzHkjZK3ZUEWui41", - "name": "Kai Bosch", - "type": "artist", - "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202593, - "explicit": false, - "external_ids": { "isrc": "GBFB92500003" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/04GhEfWKEragdPIlf1s8hd" - }, - "href": "https://api.spotify.com/v1/tracks/04GhEfWKEragdPIlf1s8hd", - "id": "04GhEfWKEragdPIlf1s8hd", - "is_local": false, - "is_playable": true, - "name": "Angel", - "popularity": 35, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:04GhEfWKEragdPIlf1s8hd" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JXwYf8x27ZfMO2gGuh6HO" + }, + "href": "https://api.spotify.com/v1/artists/0JXwYf8x27ZfMO2gGuh6HO", + "id": "0JXwYf8x27ZfMO2gGuh6HO", + "name": "Brooke Combe", + "type": "artist", + "uri": "spotify:artist:0JXwYf8x27ZfMO2gGuh6HO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 179354, + "explicit": false, + "external_ids": { "isrc": "GBUM72200009" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6xXx3GFDuZe2kaLRbyNqqa" + }, + "href": "https://api.spotify.com/v1/tracks/6xXx3GFDuZe2kaLRbyNqqa", + "id": "6xXx3GFDuZe2kaLRbyNqqa", + "is_local": false, + "is_playable": true, + "name": "Miss Me Now", + "popularity": 36, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6xXx3GFDuZe2kaLRbyNqqa" + } + }, + { + "added_at": "2026-02-10T21:44:04Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7gnf1UNA18n7SThlTZa3CS" + }, + "href": "https://api.spotify.com/v1/albums/7gnf1UNA18n7SThlTZa3CS", + "id": "7gnf1UNA18n7SThlTZa3CS", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acd4f105323904b6cc1cf4e1" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acd4f105323904b6cc1cf4e1" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acd4f105323904b6cc1cf4e1" } + ], + "is_playable": true, + "name": "Angel", + "release_date": "2025-02-19", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:7gnf1UNA18n7SThlTZa3CS" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6NvsbUgzHkjZK3ZUEWui41" + }, + "href": "https://api.spotify.com/v1/artists/6NvsbUgzHkjZK3ZUEWui41", + "id": "6NvsbUgzHkjZK3ZUEWui41", + "name": "Kai Bosch", + "type": "artist", + "uri": "spotify:artist:6NvsbUgzHkjZK3ZUEWui41" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202593, + "explicit": false, + "external_ids": { "isrc": "GBFB92500003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/04GhEfWKEragdPIlf1s8hd" }, - { - "added_at": "2026-02-08T21:58:53Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" - }, - "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", - "id": "6os1temnovzJIEGRUmn3fG", - "name": "BNYX\u00ae", - "type": "artist", - "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" - }, - "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", - "id": "0fA0VVWsXO9YnASrzqfmYu", - "name": "Kid Cudi", - "type": "artist", - "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "name": "R\u00f6yksopp", - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" - }, - "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", - "id": "05U0USUzKB8vLfdOWggfqC", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491" - } - ], - "is_playable": true, - "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", - "release_date": "2026-01-30", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" - }, - "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", - "id": "6os1temnovzJIEGRUmn3fG", - "name": "BNYX\u00ae", - "type": "artist", - "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" - }, - "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", - "id": "0fA0VVWsXO9YnASrzqfmYu", - "name": "Kid Cudi", - "type": "artist", - "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "name": "R\u00f6yksopp", - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217243, - "explicit": true, - "external_ids": { "isrc": "USUG12508483" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" - }, - "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", - "id": "55QDC1UHFcqlnH0xSvvB7T", - "is_local": false, - "is_playable": true, - "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", - "popularity": 63, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" + "href": "https://api.spotify.com/v1/tracks/04GhEfWKEragdPIlf1s8hd", + "id": "04GhEfWKEragdPIlf1s8hd", + "is_local": false, + "is_playable": true, + "name": "Angel", + "popularity": 35, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:04GhEfWKEragdPIlf1s8hd" + } + }, + { + "added_at": "2026-02-08T21:58:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" + }, + "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", + "id": "05U0USUzKB8vLfdOWggfqC", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491" + } + ], + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217243, + "explicit": true, + "external_ids": { "isrc": "USUG12508483" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" }, - { - "added_at": "2026-02-05T23:55:38Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5sq7TecbA0bzgELXZmlXgg" - }, - "href": "https://api.spotify.com/v1/albums/5sq7TecbA0bzgELXZmlXgg", - "id": "5sq7TecbA0bzgELXZmlXgg", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273614f462559ae5b794074f12e" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02614f462559ae5b794074f12e" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851614f462559ae5b794074f12e" - } - ], - "is_playable": true, - "name": "Under the Covers, Vol. II", - "release_date": "2017-10-27", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:5sq7TecbA0bzgELXZmlXgg" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "name": "Ninja Sex Party", - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 250862, - "explicit": false, - "external_ids": { "isrc": "USHM21773619" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6UbGGbBpSfmFDyG17OFuId" - }, - "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", - "id": "6UbGGbBpSfmFDyG17OFuId", - "is_local": false, - "is_playable": true, - "name": "Rocket Man", - "popularity": 35, - "preview_url": null, - "track_number": 12, - "type": "track", - "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId" + "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", + "id": "55QDC1UHFcqlnH0xSvvB7T", + "is_local": false, + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "popularity": 63, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" + } + }, + { + "added_at": "2026-02-05T23:55:38Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5sq7TecbA0bzgELXZmlXgg" + }, + "href": "https://api.spotify.com/v1/albums/5sq7TecbA0bzgELXZmlXgg", + "id": "5sq7TecbA0bzgELXZmlXgg", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273614f462559ae5b794074f12e" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02614f462559ae5b794074f12e" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851614f462559ae5b794074f12e" } + ], + "is_playable": true, + "name": "Under the Covers, Vol. II", + "release_date": "2017-10-27", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:5sq7TecbA0bzgELXZmlXgg" }, - { - "added_at": "2026-02-04T19:13:21Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" - }, - "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", - "id": "5R8aSm8lobxbG7h2AjmKAW", - "name": "KROMEA", - "type": "artist", - "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4B5d3LOYzvyPtv8zfFBV9N" - }, - "href": "https://api.spotify.com/v1/albums/4B5d3LOYzvyPtv8zfFBV9N", - "id": "4B5d3LOYzvyPtv8zfFBV9N", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273164b1c0ca47cfe70d742f526" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02164b1c0ca47cfe70d742f526" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851164b1c0ca47cfe70d742f526" - } - ], - "is_playable": true, - "name": "Overtake EP", - "release_date": "2018-05-25", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:4B5d3LOYzvyPtv8zfFBV9N" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" - }, - "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", - "id": "5R8aSm8lobxbG7h2AjmKAW", - "name": "KROMEA", - "type": "artist", - "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222546, - "explicit": false, - "external_ids": { "isrc": "FIVIG1800013" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5KGbSUW1wwV5nOq359erDf" - }, - "href": "https://api.spotify.com/v1/tracks/5KGbSUW1wwV5nOq359erDf", - "id": "5KGbSUW1wwV5nOq359erDf", - "is_local": false, - "is_playable": true, - "name": "Planets", - "popularity": 34, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:5KGbSUW1wwV5nOq359erDf" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "name": "Ninja Sex Party", + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 250862, + "explicit": false, + "external_ids": { "isrc": "USHM21773619" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6UbGGbBpSfmFDyG17OFuId" + }, + "href": "https://api.spotify.com/v1/tracks/6UbGGbBpSfmFDyG17OFuId", + "id": "6UbGGbBpSfmFDyG17OFuId", + "is_local": false, + "is_playable": true, + "name": "Rocket Man", + "popularity": 35, + "preview_url": null, + "track_number": 12, + "type": "track", + "uri": "spotify:track:6UbGGbBpSfmFDyG17OFuId" + } + }, + { + "added_at": "2026-02-04T19:13:21Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" + }, + "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", + "id": "5R8aSm8lobxbG7h2AjmKAW", + "name": "KROMEA", + "type": "artist", + "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4B5d3LOYzvyPtv8zfFBV9N" + }, + "href": "https://api.spotify.com/v1/albums/4B5d3LOYzvyPtv8zfFBV9N", + "id": "4B5d3LOYzvyPtv8zfFBV9N", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273164b1c0ca47cfe70d742f526" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02164b1c0ca47cfe70d742f526" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851164b1c0ca47cfe70d742f526" } + ], + "is_playable": true, + "name": "Overtake EP", + "release_date": "2018-05-25", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:4B5d3LOYzvyPtv8zfFBV9N" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5R8aSm8lobxbG7h2AjmKAW" + }, + "href": "https://api.spotify.com/v1/artists/5R8aSm8lobxbG7h2AjmKAW", + "id": "5R8aSm8lobxbG7h2AjmKAW", + "name": "KROMEA", + "type": "artist", + "uri": "spotify:artist:5R8aSm8lobxbG7h2AjmKAW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222546, + "explicit": false, + "external_ids": { "isrc": "FIVIG1800013" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5KGbSUW1wwV5nOq359erDf" }, - { - "added_at": "2026-02-02T14:23:23Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" - }, - "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", - "id": "0JseT2AZzVMKsBlrAywFcO", - "name": "Anavae", - "type": "artist", - "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4GO80k3K2QDOrSCeC2ASCn" - }, - "href": "https://api.spotify.com/v1/albums/4GO80k3K2QDOrSCeC2ASCn", - "id": "4GO80k3K2QDOrSCeC2ASCn", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737a2e6ff1c77488da072fbddb" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027a2e6ff1c77488da072fbddb" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048517a2e6ff1c77488da072fbddb" - } - ], - "is_playable": true, - "name": "45", - "release_date": "2019-11-01", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:4GO80k3K2QDOrSCeC2ASCn" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" - }, - "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", - "id": "0JseT2AZzVMKsBlrAywFcO", - "name": "Anavae", - "type": "artist", - "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" - } - ], - "available_markets": [ - "AR", - "AU", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216823, - "explicit": false, - "external_ids": { "isrc": "GBAJC1900443" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3dOgdq9C19ZyOJCV2qGwWm" - }, - "href": "https://api.spotify.com/v1/tracks/3dOgdq9C19ZyOJCV2qGwWm", - "id": "3dOgdq9C19ZyOJCV2qGwWm", - "is_local": false, - "is_playable": true, - "name": "Human", - "popularity": 38, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:3dOgdq9C19ZyOJCV2qGwWm" + "href": "https://api.spotify.com/v1/tracks/5KGbSUW1wwV5nOq359erDf", + "id": "5KGbSUW1wwV5nOq359erDf", + "is_local": false, + "is_playable": true, + "name": "Planets", + "popularity": 34, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:5KGbSUW1wwV5nOq359erDf" + } + }, + { + "added_at": "2026-02-02T14:23:23Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" + }, + "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", + "id": "0JseT2AZzVMKsBlrAywFcO", + "name": "Anavae", + "type": "artist", + "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" } + ], + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4GO80k3K2QDOrSCeC2ASCn" + }, + "href": "https://api.spotify.com/v1/albums/4GO80k3K2QDOrSCeC2ASCn", + "id": "4GO80k3K2QDOrSCeC2ASCn", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737a2e6ff1c77488da072fbddb" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027a2e6ff1c77488da072fbddb" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517a2e6ff1c77488da072fbddb" + } + ], + "is_playable": true, + "name": "45", + "release_date": "2019-11-01", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4GO80k3K2QDOrSCeC2ASCn" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0JseT2AZzVMKsBlrAywFcO" + }, + "href": "https://api.spotify.com/v1/artists/0JseT2AZzVMKsBlrAywFcO", + "id": "0JseT2AZzVMKsBlrAywFcO", + "name": "Anavae", + "type": "artist", + "uri": "spotify:artist:0JseT2AZzVMKsBlrAywFcO" + } + ], + "available_markets": [ + "AR", + "AU", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216823, + "explicit": false, + "external_ids": { "isrc": "GBAJC1900443" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3dOgdq9C19ZyOJCV2qGwWm" }, - { - "added_at": "2026-02-02T13:49:13Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "DJ", - "ZM", - "CG", - "TJ", - "VE", - "ET" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6LuMBvlwocn2SFOE6GcawL" - }, - "href": "https://api.spotify.com/v1/albums/6LuMBvlwocn2SFOE6GcawL", - "id": "6LuMBvlwocn2SFOE6GcawL", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e46418c0c40f94f033ad3d73" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e46418c0c40f94f033ad3d73" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e46418c0c40f94f033ad3d73" - } - ], - "is_playable": true, - "name": "Japanese Rooms", - "release_date": "2019-04-19", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:6LuMBvlwocn2SFOE6GcawL" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "DJ", - "ZM", - "CG", - "TJ", - "VE", - "ET" - ], - "disc_number": 1, - "duration_ms": 227366, - "explicit": false, - "external_ids": { "isrc": "TCAED1987311" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2ikMCoZog1nUFApExQFgo2" - }, - "href": "https://api.spotify.com/v1/tracks/2ikMCoZog1nUFApExQFgo2", - "id": "2ikMCoZog1nUFApExQFgo2", - "is_local": false, - "is_playable": true, - "name": "Far from Heaven", - "popularity": 23, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2ikMCoZog1nUFApExQFgo2" + "href": "https://api.spotify.com/v1/tracks/3dOgdq9C19ZyOJCV2qGwWm", + "id": "3dOgdq9C19ZyOJCV2qGwWm", + "is_local": false, + "is_playable": true, + "name": "Human", + "popularity": 38, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:3dOgdq9C19ZyOJCV2qGwWm" + } + }, + { + "added_at": "2026-02-02T13:49:13Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "DJ", + "ZM", + "CG", + "TJ", + "VE", + "ET" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6LuMBvlwocn2SFOE6GcawL" + }, + "href": "https://api.spotify.com/v1/albums/6LuMBvlwocn2SFOE6GcawL", + "id": "6LuMBvlwocn2SFOE6GcawL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e46418c0c40f94f033ad3d73" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e46418c0c40f94f033ad3d73" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e46418c0c40f94f033ad3d73" } + ], + "is_playable": true, + "name": "Japanese Rooms", + "release_date": "2019-04-19", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:6LuMBvlwocn2SFOE6GcawL" }, - { - "added_at": "2026-01-30T08:57:30Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2S3PYJxfbcMMxaHOwWXjAq" - }, - "href": "https://api.spotify.com/v1/albums/2S3PYJxfbcMMxaHOwWXjAq", - "id": "2S3PYJxfbcMMxaHOwWXjAq", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273d43ddbd12bfe5f282cdb4d2d" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02d43ddbd12bfe5f282cdb4d2d" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851d43ddbd12bfe5f282cdb4d2d" - } - ], - "is_playable": true, - "name": "21st Century (Digital Boy)", - "release_date": "2026-01-27", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2S3PYJxfbcMMxaHOwWXjAq" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 165282, - "explicit": false, - "external_ids": { "isrc": "USYFZ2677305" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/62CvzSF6JMfrNY317ZiNZc" - }, - "href": "https://api.spotify.com/v1/tracks/62CvzSF6JMfrNY317ZiNZc", - "id": "62CvzSF6JMfrNY317ZiNZc", - "is_local": false, - "is_playable": true, - "name": "21st Century (Digital Boy)", - "popularity": 35, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:62CvzSF6JMfrNY317ZiNZc" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "DJ", + "ZM", + "CG", + "TJ", + "VE", + "ET" + ], + "disc_number": 1, + "duration_ms": 227366, + "explicit": false, + "external_ids": { "isrc": "TCAED1987311" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2ikMCoZog1nUFApExQFgo2" + }, + "href": "https://api.spotify.com/v1/tracks/2ikMCoZog1nUFApExQFgo2", + "id": "2ikMCoZog1nUFApExQFgo2", + "is_local": false, + "is_playable": true, + "name": "Far from Heaven", + "popularity": 23, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2ikMCoZog1nUFApExQFgo2" + } + }, + { + "added_at": "2026-01-30T08:57:30Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2S3PYJxfbcMMxaHOwWXjAq" + }, + "href": "https://api.spotify.com/v1/albums/2S3PYJxfbcMMxaHOwWXjAq", + "id": "2S3PYJxfbcMMxaHOwWXjAq", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d43ddbd12bfe5f282cdb4d2d" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d43ddbd12bfe5f282cdb4d2d" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d43ddbd12bfe5f282cdb4d2d" } + ], + "is_playable": true, + "name": "21st Century (Digital Boy)", + "release_date": "2026-01-27", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2S3PYJxfbcMMxaHOwWXjAq" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 165282, + "explicit": false, + "external_ids": { "isrc": "USYFZ2677305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/62CvzSF6JMfrNY317ZiNZc" }, - { - "added_at": "2026-01-20T22:35:35Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" - }, - "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", - "id": "3vV6kgqJHi1rg46i4Iwzr1", - "name": "Masters of Prophecy", - "type": "artist", - "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4IY5p6bgi73zzEOjKBIXmL" - }, - "href": "https://api.spotify.com/v1/albums/4IY5p6bgi73zzEOjKBIXmL", - "id": "4IY5p6bgi73zzEOjKBIXmL", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273235800a8fcf394b99855abac" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02235800a8fcf394b99855abac" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851235800a8fcf394b99855abac" - } - ], - "is_playable": true, - "name": "Liquid Lightning", - "release_date": "2025-11-23", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4IY5p6bgi73zzEOjKBIXmL" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" - }, - "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", - "id": "3vV6kgqJHi1rg46i4Iwzr1", - "name": "Masters of Prophecy", - "type": "artist", - "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 256437, - "explicit": false, - "external_ids": { "isrc": "CBF8B2547992" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1jcctkKfRKJoYNjEKA2k42" - }, - "href": "https://api.spotify.com/v1/tracks/1jcctkKfRKJoYNjEKA2k42", - "id": "1jcctkKfRKJoYNjEKA2k42", - "is_local": false, - "is_playable": true, - "name": "Liquid Lightning", - "popularity": 47, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1jcctkKfRKJoYNjEKA2k42" + "href": "https://api.spotify.com/v1/tracks/62CvzSF6JMfrNY317ZiNZc", + "id": "62CvzSF6JMfrNY317ZiNZc", + "is_local": false, + "is_playable": true, + "name": "21st Century (Digital Boy)", + "popularity": 35, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:62CvzSF6JMfrNY317ZiNZc" + } + }, + { + "added_at": "2026-01-20T22:35:35Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" + }, + "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", + "id": "3vV6kgqJHi1rg46i4Iwzr1", + "name": "Masters of Prophecy", + "type": "artist", + "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4IY5p6bgi73zzEOjKBIXmL" + }, + "href": "https://api.spotify.com/v1/albums/4IY5p6bgi73zzEOjKBIXmL", + "id": "4IY5p6bgi73zzEOjKBIXmL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273235800a8fcf394b99855abac" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02235800a8fcf394b99855abac" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851235800a8fcf394b99855abac" + } + ], + "is_playable": true, + "name": "Liquid Lightning", + "release_date": "2025-11-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4IY5p6bgi73zzEOjKBIXmL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3vV6kgqJHi1rg46i4Iwzr1" + }, + "href": "https://api.spotify.com/v1/artists/3vV6kgqJHi1rg46i4Iwzr1", + "id": "3vV6kgqJHi1rg46i4Iwzr1", + "name": "Masters of Prophecy", + "type": "artist", + "uri": "spotify:artist:3vV6kgqJHi1rg46i4Iwzr1" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 256437, + "explicit": false, + "external_ids": { "isrc": "CBF8B2547992" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1jcctkKfRKJoYNjEKA2k42" }, - { - "added_at": "2026-01-19T09:42:31Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" - }, - "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", - "id": "4v4qHupYi7eRJfkniHrp4Z", - "name": "Young Guns", - "type": "artist", - "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" - }, - "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", - "id": "2ZYmViriDHQS2bzBohrLXj", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe" - } - ], - "is_playable": true, - "name": "Ones And Zeros", - "release_date": "2015-02-18", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" - }, - "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", - "id": "4v4qHupYi7eRJfkniHrp4Z", - "name": "Young Guns", - "type": "artist", - "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 224213, - "explicit": false, - "external_ids": { "isrc": "GBUM71406930" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" - }, - "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", - "id": "0QSMTHdo8JRa7PazhGrbIK", - "is_local": false, - "is_playable": true, - "name": "I Want Out", - "popularity": 29, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + "href": "https://api.spotify.com/v1/tracks/1jcctkKfRKJoYNjEKA2k42", + "id": "1jcctkKfRKJoYNjEKA2k42", + "is_local": false, + "is_playable": true, + "name": "Liquid Lightning", + "popularity": 47, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1jcctkKfRKJoYNjEKA2k42" + } + }, + { + "added_at": "2026-01-19T09:42:31Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" + }, + "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", + "id": "2ZYmViriDHQS2bzBohrLXj", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe" } + ], + "is_playable": true, + "name": "Ones And Zeros", + "release_date": "2015-02-18", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" }, - { - "added_at": "2026-01-19T09:37:47Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" - }, - "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", - "id": "6JslXiAQgoATL9rPmLE5du", - "name": "Anike Ekina", - "type": "artist", - "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" - }, - "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", - "id": "10VNoWgGKiAas5dWkpCUHL", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0" - } - ], - "is_playable": true, - "name": "Light Back In (Special Metal version)", - "release_date": "2025-08-01", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" - }, - "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", - "id": "6JslXiAQgoATL9rPmLE5du", - "name": "Anike Ekina", - "type": "artist", - "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202805, - "explicit": false, - "external_ids": { "isrc": "DEA372013916" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" - }, - "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", - "id": "34vearIqjyFqWWPZKPPxvH", - "is_local": false, - "is_playable": true, - "name": "Light Back In - Special Metal Version - Radio Edit", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 224213, + "explicit": false, + "external_ids": { "isrc": "GBUM71406930" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" + }, + "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", + "id": "0QSMTHdo8JRa7PazhGrbIK", + "is_local": false, + "is_playable": true, + "name": "I Want Out", + "popularity": 29, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + } + }, + { + "added_at": "2026-01-19T09:37:47Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" + }, + "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", + "id": "10VNoWgGKiAas5dWkpCUHL", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0" } + ], + "is_playable": true, + "name": "Light Back In (Special Metal version)", + "release_date": "2025-08-01", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202805, + "explicit": false, + "external_ids": { "isrc": "DEA372013916" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" }, - { - "added_at": "2026-01-19T09:05:04Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" - }, - "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", - "id": "5ySYeIhqg4Rfs5tjteVMz3", - "name": "Blondfire", - "type": "artist", - "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0UulNUxyPHQ2Dcnc2fuak7" - }, - "href": "https://api.spotify.com/v1/albums/0UulNUxyPHQ2Dcnc2fuak7", - "id": "0UulNUxyPHQ2Dcnc2fuak7", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737a591fe36aa65157f11de048" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027a591fe36aa65157f11de048" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048517a591fe36aa65157f11de048" - } - ], - "is_playable": true, - "name": "True Confessions", - "release_date": "2016-02-05", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:0UulNUxyPHQ2Dcnc2fuak7" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" - }, - "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", - "id": "5ySYeIhqg4Rfs5tjteVMz3", - "name": "Blondfire", - "type": "artist", - "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217708, - "explicit": false, - "external_ids": { "isrc": "TCACL1620223" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5Th9qF4aR9PJRrSyukyGLx" - }, - "href": "https://api.spotify.com/v1/tracks/5Th9qF4aR9PJRrSyukyGLx", - "id": "5Th9qF4aR9PJRrSyukyGLx", - "is_local": false, - "is_playable": true, - "name": "True Confessions", - "popularity": 29, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5Th9qF4aR9PJRrSyukyGLx" + "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", + "id": "34vearIqjyFqWWPZKPPxvH", + "is_local": false, + "is_playable": true, + "name": "Light Back In - Special Metal Version - Radio Edit", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" + } + }, + { + "added_at": "2026-01-19T09:05:04Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" + }, + "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", + "id": "5ySYeIhqg4Rfs5tjteVMz3", + "name": "Blondfire", + "type": "artist", + "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0UulNUxyPHQ2Dcnc2fuak7" + }, + "href": "https://api.spotify.com/v1/albums/0UulNUxyPHQ2Dcnc2fuak7", + "id": "0UulNUxyPHQ2Dcnc2fuak7", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737a591fe36aa65157f11de048" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027a591fe36aa65157f11de048" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517a591fe36aa65157f11de048" + } + ], + "is_playable": true, + "name": "True Confessions", + "release_date": "2016-02-05", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:0UulNUxyPHQ2Dcnc2fuak7" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ySYeIhqg4Rfs5tjteVMz3" + }, + "href": "https://api.spotify.com/v1/artists/5ySYeIhqg4Rfs5tjteVMz3", + "id": "5ySYeIhqg4Rfs5tjteVMz3", + "name": "Blondfire", + "type": "artist", + "uri": "spotify:artist:5ySYeIhqg4Rfs5tjteVMz3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217708, + "explicit": false, + "external_ids": { "isrc": "TCACL1620223" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5Th9qF4aR9PJRrSyukyGLx" }, - { - "added_at": "2026-01-10T10:37:48Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" - }, - "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", - "id": "0Cs47vvRsPgEfliBU9KDiB", - "name": "D.O.D", - "type": "artist", - "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" - }, - "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", - "id": "1jmVSpWhzD8vciWg2Qtd5V", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae" - } - ], - "is_playable": true, - "name": "Think About Us", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" - }, - "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", - "id": "0Cs47vvRsPgEfliBU9KDiB", - "name": "D.O.D", - "type": "artist", - "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178148, - "explicit": false, - "external_ids": { "isrc": "US39N2510213" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" - }, - "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", - "id": "0lRnxwJeUOxwEvWMw4uQKj", - "is_local": false, - "is_playable": true, - "name": "Think About Us", - "popularity": 80, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" + "href": "https://api.spotify.com/v1/tracks/5Th9qF4aR9PJRrSyukyGLx", + "id": "5Th9qF4aR9PJRrSyukyGLx", + "is_local": false, + "is_playable": true, + "name": "True Confessions", + "popularity": 29, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5Th9qF4aR9PJRrSyukyGLx" + } + }, + { + "added_at": "2026-01-10T10:37:48Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" + }, + "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", + "id": "1jmVSpWhzD8vciWg2Qtd5V", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae" } + ], + "is_playable": true, + "name": "Think About Us", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" }, - { - "added_at": "2026-01-08T23:48:41Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" - }, - "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", - "id": "29GuyTDTPnxeRQhEdbmGLn", - "name": "HEXXENMIND", - "type": "artist", - "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" - }, - "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", - "id": "3nL6S2DQUe71FicS2UpJ4b", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487" - } - ], - "is_playable": true, - "name": "The Fate of Ophelia - Rock", - "release_date": "2025-10-15", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" - }, - "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", - "id": "29GuyTDTPnxeRQhEdbmGLn", - "name": "HEXXENMIND", - "type": "artist", - "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267697, - "explicit": false, - "external_ids": { "isrc": "MXA3V2454127" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" - }, - "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", - "id": "7sa0Obv4Y9y7rpIYhudEu7", - "is_local": false, - "is_playable": true, - "name": "The Fate of Ophelia", - "popularity": 56, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178148, + "explicit": false, + "external_ids": { "isrc": "US39N2510213" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" + }, + "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", + "id": "0lRnxwJeUOxwEvWMw4uQKj", + "is_local": false, + "is_playable": true, + "name": "Think About Us", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" + } + }, + { + "added_at": "2026-01-08T23:48:41Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" + }, + "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", + "id": "3nL6S2DQUe71FicS2UpJ4b", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487" } + ], + "is_playable": true, + "name": "The Fate of Ophelia - Rock", + "release_date": "2025-10-15", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267697, + "explicit": false, + "external_ids": { "isrc": "MXA3V2454127" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" }, - { - "added_at": "2026-01-08T23:30:42Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3oj49xNyRWGKpWXI6I8p8U" - }, - "href": "https://api.spotify.com/v1/albums/3oj49xNyRWGKpWXI6I8p8U", - "id": "3oj49xNyRWGKpWXI6I8p8U", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731980c65519ce49d2471700e6" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021980c65519ce49d2471700e6" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048511980c65519ce49d2471700e6" - } - ], - "is_playable": true, - "name": "Somebody Else", - "release_date": "2025-12-03", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:3oj49xNyRWGKpWXI6I8p8U" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 225085, - "explicit": true, - "external_ids": { "isrc": "USYFZ2572602" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4YpWdFAPE72zuMkQe2bE47" - }, - "href": "https://api.spotify.com/v1/tracks/4YpWdFAPE72zuMkQe2bE47", - "id": "4YpWdFAPE72zuMkQe2bE47", - "is_local": false, - "is_playable": true, - "name": "Somebody Else", - "popularity": 33, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4YpWdFAPE72zuMkQe2bE47" + "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", + "id": "7sa0Obv4Y9y7rpIYhudEu7", + "is_local": false, + "is_playable": true, + "name": "The Fate of Ophelia", + "popularity": 56, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" + } + }, + { + "added_at": "2026-01-08T23:30:42Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3oj49xNyRWGKpWXI6I8p8U" + }, + "href": "https://api.spotify.com/v1/albums/3oj49xNyRWGKpWXI6I8p8U", + "id": "3oj49xNyRWGKpWXI6I8p8U", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731980c65519ce49d2471700e6" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021980c65519ce49d2471700e6" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048511980c65519ce49d2471700e6" + } + ], + "is_playable": true, + "name": "Somebody Else", + "release_date": "2025-12-03", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:3oj49xNyRWGKpWXI6I8p8U" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225085, + "explicit": true, + "external_ids": { "isrc": "USYFZ2572602" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4YpWdFAPE72zuMkQe2bE47" }, - { - "added_at": "2026-01-06T14:23:27Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" - }, - "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", - "id": "4DWnSG0RYPAds8EIKY26q3", - "name": "Blue Stahli", - "type": "artist", - "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6wZ6bHs81VeaqrAP7LYax1" - }, - "href": "https://api.spotify.com/v1/albums/6wZ6bHs81VeaqrAP7LYax1", - "id": "6wZ6bHs81VeaqrAP7LYax1", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27320d06426954869610e4a052f" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0220d06426954869610e4a052f" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485120d06426954869610e4a052f" - } - ], - "is_playable": true, - "name": "The Devil (Deluxe Edition)", - "release_date": "2015-10-02", - "release_date_precision": "day", - "total_tracks": 23, - "type": "album", - "uri": "spotify:album:6wZ6bHs81VeaqrAP7LYax1" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" - }, - "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", - "id": "4DWnSG0RYPAds8EIKY26q3", - "name": "Blue Stahli", - "type": "artist", - "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 227386, - "explicit": false, - "external_ids": { "isrc": "QMDA71333541" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6roRQM5LLinr2ScyOh1ZHw" - }, - "href": "https://api.spotify.com/v1/tracks/6roRQM5LLinr2ScyOh1ZHw", - "id": "6roRQM5LLinr2ScyOh1ZHw", - "is_local": false, - "is_playable": true, - "name": "The Fall", - "popularity": 40, - "preview_url": null, - "track_number": 8, - "type": "track", - "uri": "spotify:track:6roRQM5LLinr2ScyOh1ZHw" + "href": "https://api.spotify.com/v1/tracks/4YpWdFAPE72zuMkQe2bE47", + "id": "4YpWdFAPE72zuMkQe2bE47", + "is_local": false, + "is_playable": true, + "name": "Somebody Else", + "popularity": 33, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4YpWdFAPE72zuMkQe2bE47" + } + }, + { + "added_at": "2026-01-06T14:23:27Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" + }, + "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", + "id": "4DWnSG0RYPAds8EIKY26q3", + "name": "Blue Stahli", + "type": "artist", + "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6wZ6bHs81VeaqrAP7LYax1" + }, + "href": "https://api.spotify.com/v1/albums/6wZ6bHs81VeaqrAP7LYax1", + "id": "6wZ6bHs81VeaqrAP7LYax1", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27320d06426954869610e4a052f" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0220d06426954869610e4a052f" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485120d06426954869610e4a052f" } + ], + "is_playable": true, + "name": "The Devil (Deluxe Edition)", + "release_date": "2015-10-02", + "release_date_precision": "day", + "total_tracks": 23, + "type": "album", + "uri": "spotify:album:6wZ6bHs81VeaqrAP7LYax1" }, - { - "added_at": "2026-01-05T21:54:42Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" - }, - "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", - "id": "1NcsVSxFdXsnwvE64zV9xX", - "name": "Rave The Reqviem", - "type": "artist", - "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" - }, - "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", - "id": "3ZdwtiZ6iYOtkRtFq2tmO9", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75" - } - ], - "is_playable": true, - "name": "The Gospel of Nil - Revised Standard Version", - "release_date": "2016-10-06", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" - }, - "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", - "id": "1NcsVSxFdXsnwvE64zV9xX", - "name": "Rave The Reqviem", - "type": "artist", - "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194085, - "explicit": false, - "external_ids": { "isrc": "TCACP1623532" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" - }, - "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", - "id": "6vy64DzPmsCUNue0FpmM6r", - "is_local": false, - "is_playable": true, - "name": "Mono Heart", - "popularity": 29, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWnSG0RYPAds8EIKY26q3" + }, + "href": "https://api.spotify.com/v1/artists/4DWnSG0RYPAds8EIKY26q3", + "id": "4DWnSG0RYPAds8EIKY26q3", + "name": "Blue Stahli", + "type": "artist", + "uri": "spotify:artist:4DWnSG0RYPAds8EIKY26q3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 227386, + "explicit": false, + "external_ids": { "isrc": "QMDA71333541" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6roRQM5LLinr2ScyOh1ZHw" + }, + "href": "https://api.spotify.com/v1/tracks/6roRQM5LLinr2ScyOh1ZHw", + "id": "6roRQM5LLinr2ScyOh1ZHw", + "is_local": false, + "is_playable": true, + "name": "The Fall", + "popularity": 40, + "preview_url": null, + "track_number": 8, + "type": "track", + "uri": "spotify:track:6roRQM5LLinr2ScyOh1ZHw" + } + }, + { + "added_at": "2026-01-05T21:54:42Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", + "id": "3ZdwtiZ6iYOtkRtFq2tmO9", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75" } + ], + "is_playable": true, + "name": "The Gospel of Nil - Revised Standard Version", + "release_date": "2016-10-06", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194085, + "explicit": false, + "external_ids": { "isrc": "TCACP1623532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" }, - { - "added_at": "2026-01-05T21:22:46Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" - }, - "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", - "id": "54apQNp3ruFrK20sYZvmdf", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95" - } - ], - "is_playable": true, - "name": "Bardcore Mayhem, Vol. 1", - "release_date": "2025-09-24", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 172079, - "explicit": false, - "external_ids": { "isrc": "QT3F22572862" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" - }, - "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", - "id": "0f56nfzpUaXE6t5E3oza3q", - "is_local": false, - "is_playable": true, - "name": "Arrow splitter", - "popularity": 37, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", + "id": "6vy64DzPmsCUNue0FpmM6r", + "is_local": false, + "is_playable": true, + "name": "Mono Heart", + "popularity": 29, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + } + }, + { + "added_at": "2026-01-05T21:22:46Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" + }, + "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", + "id": "54apQNp3ruFrK20sYZvmdf", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95" + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 1", + "release_date": "2025-09-24", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_ids": { "isrc": "QT3F22572862" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" }, - { - "added_at": "2026-01-05T10:41:32Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" - }, - "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", - "id": "3hvgLXeDFNiqDOVXl0xTge", - "name": "LukHash", - "type": "artist", - "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" - }, - "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", - "id": "4Xv90HE4uhD2e71SV7gSEZ", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813" - } - ], - "is_playable": true, - "name": "Home Arcade", - "release_date": "2025-05-02", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" - }, - "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", - "id": "3hvgLXeDFNiqDOVXl0xTge", - "name": "LukHash", - "type": "artist", - "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176280, - "explicit": false, - "external_ids": { "isrc": "QT3TB2405473" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" - }, - "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", - "id": "0qvDlGZL5TnvV80AMH3lYf", - "is_local": false, - "is_playable": true, - "name": "Touching the Sky", - "popularity": 34, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" + "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", + "id": "0f56nfzpUaXE6t5E3oza3q", + "is_local": false, + "is_playable": true, + "name": "Arrow splitter", + "popularity": 37, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + } + }, + { + "added_at": "2026-01-05T10:41:32Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" + }, + "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", + "id": "4Xv90HE4uhD2e71SV7gSEZ", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813" } + ], + "is_playable": true, + "name": "Home Arcade", + "release_date": "2025-05-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" }, - { - "added_at": "2026-01-05T10:35:53Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" - }, - "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", - "id": "3Wcyta3gkOdQ4TfY0WyZpu", - "name": "YONAKA", - "type": "artist", - "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3PO0IfUeN5wVemwQlYSIVa" - }, - "href": "https://api.spotify.com/v1/albums/3PO0IfUeN5wVemwQlYSIVa", - "id": "3PO0IfUeN5wVemwQlYSIVa", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273903ede5546f4ef01bf4240ef" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02903ede5546f4ef01bf4240ef" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851903ede5546f4ef01bf4240ef" - } - ], - "is_playable": true, - "name": "CREATURE", - "release_date": "2018-11-16", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:3PO0IfUeN5wVemwQlYSIVa" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" - }, - "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", - "id": "3Wcyta3gkOdQ4TfY0WyZpu", - "name": "YONAKA", - "type": "artist", - "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190206, - "explicit": false, - "external_ids": { "isrc": "GBAHS1800707" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1ldVaFbdm2axVLe6TQox6H" - }, - "href": "https://api.spotify.com/v1/tracks/1ldVaFbdm2axVLe6TQox6H", - "id": "1ldVaFbdm2axVLe6TQox6H", - "is_local": false, - "is_playable": true, - "name": "Death By Love", - "popularity": 34, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:1ldVaFbdm2axVLe6TQox6H" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176280, + "explicit": false, + "external_ids": { "isrc": "QT3TB2405473" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" + }, + "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", + "id": "0qvDlGZL5TnvV80AMH3lYf", + "is_local": false, + "is_playable": true, + "name": "Touching the Sky", + "popularity": 34, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" + } + }, + { + "added_at": "2026-01-05T10:35:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" + }, + "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", + "id": "3Wcyta3gkOdQ4TfY0WyZpu", + "name": "YONAKA", + "type": "artist", + "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3PO0IfUeN5wVemwQlYSIVa" + }, + "href": "https://api.spotify.com/v1/albums/3PO0IfUeN5wVemwQlYSIVa", + "id": "3PO0IfUeN5wVemwQlYSIVa", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273903ede5546f4ef01bf4240ef" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02903ede5546f4ef01bf4240ef" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851903ede5546f4ef01bf4240ef" } + ], + "is_playable": true, + "name": "CREATURE", + "release_date": "2018-11-16", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3PO0IfUeN5wVemwQlYSIVa" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3Wcyta3gkOdQ4TfY0WyZpu" + }, + "href": "https://api.spotify.com/v1/artists/3Wcyta3gkOdQ4TfY0WyZpu", + "id": "3Wcyta3gkOdQ4TfY0WyZpu", + "name": "YONAKA", + "type": "artist", + "uri": "spotify:artist:3Wcyta3gkOdQ4TfY0WyZpu" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190206, + "explicit": false, + "external_ids": { "isrc": "GBAHS1800707" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1ldVaFbdm2axVLe6TQox6H" }, - { - "added_at": "2026-01-03T22:26:12Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" - }, - "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", - "id": "4enJurkJhWYJxokouQ02ky", - "name": "Paperwater", - "type": "artist", - "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7i4Kb4tSmsvXWTM399KKct" - }, - "href": "https://api.spotify.com/v1/albums/7i4Kb4tSmsvXWTM399KKct", - "id": "7i4Kb4tSmsvXWTM399KKct", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f73aa7e970746c696069a52f" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f73aa7e970746c696069a52f" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f73aa7e970746c696069a52f" - } - ], - "is_playable": true, - "name": "GIRL I WANT YOU", - "release_date": "2025-09-11", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:7i4Kb4tSmsvXWTM399KKct" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" - }, - "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", - "id": "4enJurkJhWYJxokouQ02ky", - "name": "Paperwater", - "type": "artist", - "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 211653, - "explicit": false, - "external_ids": { "isrc": "USLD91782518" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5ocaIFjQEcuZni3guyHoHl" - }, - "href": "https://api.spotify.com/v1/tracks/5ocaIFjQEcuZni3guyHoHl", - "id": "5ocaIFjQEcuZni3guyHoHl", - "is_local": false, - "is_playable": true, - "name": "GIRL I WANT YOU", - "popularity": 46, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5ocaIFjQEcuZni3guyHoHl" + "href": "https://api.spotify.com/v1/tracks/1ldVaFbdm2axVLe6TQox6H", + "id": "1ldVaFbdm2axVLe6TQox6H", + "is_local": false, + "is_playable": true, + "name": "Death By Love", + "popularity": 34, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:1ldVaFbdm2axVLe6TQox6H" + } + }, + { + "added_at": "2026-01-03T22:26:12Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" + }, + "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", + "id": "4enJurkJhWYJxokouQ02ky", + "name": "Paperwater", + "type": "artist", + "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7i4Kb4tSmsvXWTM399KKct" + }, + "href": "https://api.spotify.com/v1/albums/7i4Kb4tSmsvXWTM399KKct", + "id": "7i4Kb4tSmsvXWTM399KKct", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f73aa7e970746c696069a52f" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f73aa7e970746c696069a52f" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f73aa7e970746c696069a52f" + } + ], + "is_playable": true, + "name": "GIRL I WANT YOU", + "release_date": "2025-09-11", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:7i4Kb4tSmsvXWTM399KKct" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4enJurkJhWYJxokouQ02ky" + }, + "href": "https://api.spotify.com/v1/artists/4enJurkJhWYJxokouQ02ky", + "id": "4enJurkJhWYJxokouQ02ky", + "name": "Paperwater", + "type": "artist", + "uri": "spotify:artist:4enJurkJhWYJxokouQ02ky" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 211653, + "explicit": false, + "external_ids": { "isrc": "USLD91782518" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5ocaIFjQEcuZni3guyHoHl" }, - { - "added_at": "2026-01-02T22:02:50Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" - }, - "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", - "id": "7k5jeohQCF20a8foBD9ize", - "name": "Battle Beast", - "type": "artist", - "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" - }, - "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", - "id": "2729tzbbE6CeRuFmbGOUry", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c" - } - ], - "is_playable": true, - "name": "Steelbound", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" - }, - "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", - "id": "7k5jeohQCF20a8foBD9ize", - "name": "Battle Beast", - "type": "artist", - "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 230786, - "explicit": false, - "external_ids": { "isrc": "DED832500343" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" - }, - "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", - "id": "5CEM8PzhisIOQAr8TmG79e", - "is_local": false, - "is_playable": true, - "name": "Riders Of The Storm", - "popularity": 45, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" + "href": "https://api.spotify.com/v1/tracks/5ocaIFjQEcuZni3guyHoHl", + "id": "5ocaIFjQEcuZni3guyHoHl", + "is_local": false, + "is_playable": true, + "name": "GIRL I WANT YOU", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5ocaIFjQEcuZni3guyHoHl" + } + }, + { + "added_at": "2026-01-02T22:02:50Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" + }, + "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", + "id": "2729tzbbE6CeRuFmbGOUry", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c" } + ], + "is_playable": true, + "name": "Steelbound", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" }, - { - "added_at": "2026-01-02T18:49:02Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" - }, - "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", - "id": "28eLrVsohdXynlnIzQ2VvI", - "name": "Lord Of The Lost", - "type": "artist", - "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/301WuaWtWbDOlsAih6cITQ" - }, - "href": "https://api.spotify.com/v1/albums/301WuaWtWbDOlsAih6cITQ", - "id": "301WuaWtWbDOlsAih6cITQ", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a39a5a7a9213a9b107c716ac" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a39a5a7a9213a9b107c716ac" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a39a5a7a9213a9b107c716ac" - } - ], - "is_playable": true, - "name": "Raveyard", - "release_date": "2025-09-03", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:301WuaWtWbDOlsAih6cITQ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" - }, - "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", - "id": "28eLrVsohdXynlnIzQ2VvI", - "name": "Lord Of The Lost", - "type": "artist", - "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6LkMGN0t3HDNL8hIvma70r" - }, - "href": "https://api.spotify.com/v1/artists/6LkMGN0t3HDNL8hIvma70r", - "id": "6LkMGN0t3HDNL8hIvma70r", - "name": "K\u00e4\u00e4rij\u00e4", - "type": "artist", - "uri": "spotify:artist:6LkMGN0t3HDNL8hIvma70r" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 225307, - "explicit": false, - "external_ids": { "isrc": "ATN262540305" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2GJVCzNulP71igNkJtJ9ZO" - }, - "href": "https://api.spotify.com/v1/tracks/2GJVCzNulP71igNkJtJ9ZO", - "id": "2GJVCzNulP71igNkJtJ9ZO", - "is_local": false, - "is_playable": true, - "name": "Raveyard (feat. K\u00e4\u00e4rij\u00e4)", - "popularity": 41, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2GJVCzNulP71igNkJtJ9ZO" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230786, + "explicit": false, + "external_ids": { "isrc": "DED832500343" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" + }, + "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", + "id": "5CEM8PzhisIOQAr8TmG79e", + "is_local": false, + "is_playable": true, + "name": "Riders Of The Storm", + "popularity": 45, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" + } + }, + { + "added_at": "2026-01-02T18:49:02Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/301WuaWtWbDOlsAih6cITQ" + }, + "href": "https://api.spotify.com/v1/albums/301WuaWtWbDOlsAih6cITQ", + "id": "301WuaWtWbDOlsAih6cITQ", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a39a5a7a9213a9b107c716ac" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a39a5a7a9213a9b107c716ac" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a39a5a7a9213a9b107c716ac" } + ], + "is_playable": true, + "name": "Raveyard", + "release_date": "2025-09-03", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:301WuaWtWbDOlsAih6cITQ" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6LkMGN0t3HDNL8hIvma70r" + }, + "href": "https://api.spotify.com/v1/artists/6LkMGN0t3HDNL8hIvma70r", + "id": "6LkMGN0t3HDNL8hIvma70r", + "name": "K\u00e4\u00e4rij\u00e4", + "type": "artist", + "uri": "spotify:artist:6LkMGN0t3HDNL8hIvma70r" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 225307, + "explicit": false, + "external_ids": { "isrc": "ATN262540305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2GJVCzNulP71igNkJtJ9ZO" }, - { - "added_at": "2026-01-02T18:30:43Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" - }, - "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", - "id": "4pQN0GB0fNEEOfQCaWotsY", - "name": "Helloween", - "type": "artist", - "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MO", - "MR", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5oFAGk4EQNN5uEah2C5HWI" - }, - "href": "https://api.spotify.com/v1/albums/5oFAGk4EQNN5uEah2C5HWI", - "id": "5oFAGk4EQNN5uEah2C5HWI", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273399785f2588d4b348a1b246c" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02399785f2588d4b348a1b246c" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851399785f2588d4b348a1b246c" - } - ], - "is_playable": true, - "name": "Giants & Monsters", - "release_date": "2025-08-29", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:5oFAGk4EQNN5uEah2C5HWI" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" - }, - "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", - "id": "4pQN0GB0fNEEOfQCaWotsY", - "name": "Helloween", - "type": "artist", - "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PL", - "PT", - "SK", - "ES", - "SE", - "CH", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "MO", - "MR", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 210253, - "explicit": true, - "external_ids": { "isrc": "DE1KY2506517" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4uFUalyidCKsnJbFCzRmhs" - }, - "href": "https://api.spotify.com/v1/tracks/4uFUalyidCKsnJbFCzRmhs", - "id": "4uFUalyidCKsnJbFCzRmhs", - "is_local": false, - "is_playable": true, - "name": "A Little Is A Little Too Much", - "popularity": 48, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4uFUalyidCKsnJbFCzRmhs" + "href": "https://api.spotify.com/v1/tracks/2GJVCzNulP71igNkJtJ9ZO", + "id": "2GJVCzNulP71igNkJtJ9ZO", + "is_local": false, + "is_playable": true, + "name": "Raveyard (feat. K\u00e4\u00e4rij\u00e4)", + "popularity": 41, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2GJVCzNulP71igNkJtJ9ZO" + } + }, + { + "added_at": "2026-01-02T18:30:43Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" + }, + "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", + "id": "4pQN0GB0fNEEOfQCaWotsY", + "name": "Helloween", + "type": "artist", + "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MO", + "MR", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5oFAGk4EQNN5uEah2C5HWI" + }, + "href": "https://api.spotify.com/v1/albums/5oFAGk4EQNN5uEah2C5HWI", + "id": "5oFAGk4EQNN5uEah2C5HWI", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273399785f2588d4b348a1b246c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02399785f2588d4b348a1b246c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851399785f2588d4b348a1b246c" + } + ], + "is_playable": true, + "name": "Giants & Monsters", + "release_date": "2025-08-29", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:5oFAGk4EQNN5uEah2C5HWI" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4pQN0GB0fNEEOfQCaWotsY" + }, + "href": "https://api.spotify.com/v1/artists/4pQN0GB0fNEEOfQCaWotsY", + "id": "4pQN0GB0fNEEOfQCaWotsY", + "name": "Helloween", + "type": "artist", + "uri": "spotify:artist:4pQN0GB0fNEEOfQCaWotsY" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PL", + "PT", + "SK", + "ES", + "SE", + "CH", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "MO", + "MR", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 210253, + "explicit": true, + "external_ids": { "isrc": "DE1KY2506517" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4uFUalyidCKsnJbFCzRmhs" }, - { - "added_at": "2025-12-29T20:40:58Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" - }, - "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", - "id": "3iCJOi5YKh247eutgCyLFe", - "name": "I See Stars", - "type": "artist", - "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0wk685JsrY5zGqCjXtcLBv" - }, - "href": "https://api.spotify.com/v1/albums/0wk685JsrY5zGqCjXtcLBv", - "id": "0wk685JsrY5zGqCjXtcLBv", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27339e218ccf7e285fa70e18ea2" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0239e218ccf7e285fa70e18ea2" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485139e218ccf7e285fa70e18ea2" - } - ], - "is_playable": true, - "name": "THE WHEEL", - "release_date": "2025-09-12", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:0wk685JsrY5zGqCjXtcLBv" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" - }, - "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", - "id": "3iCJOi5YKh247eutgCyLFe", - "name": "I See Stars", - "type": "artist", - "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 209000, - "explicit": false, - "external_ids": { "isrc": "USYFZ2554003" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0lkPcWWGuj2q9YHox1GWZE" - }, - "href": "https://api.spotify.com/v1/tracks/0lkPcWWGuj2q9YHox1GWZE", - "id": "0lkPcWWGuj2q9YHox1GWZE", - "is_local": false, - "is_playable": true, - "name": "Eliminator", - "popularity": 37, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:0lkPcWWGuj2q9YHox1GWZE" + "href": "https://api.spotify.com/v1/tracks/4uFUalyidCKsnJbFCzRmhs", + "id": "4uFUalyidCKsnJbFCzRmhs", + "is_local": false, + "is_playable": true, + "name": "A Little Is A Little Too Much", + "popularity": 48, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4uFUalyidCKsnJbFCzRmhs" + } + }, + { + "added_at": "2025-12-29T20:40:58Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" + }, + "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", + "id": "3iCJOi5YKh247eutgCyLFe", + "name": "I See Stars", + "type": "artist", + "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0wk685JsrY5zGqCjXtcLBv" + }, + "href": "https://api.spotify.com/v1/albums/0wk685JsrY5zGqCjXtcLBv", + "id": "0wk685JsrY5zGqCjXtcLBv", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27339e218ccf7e285fa70e18ea2" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0239e218ccf7e285fa70e18ea2" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485139e218ccf7e285fa70e18ea2" } + ], + "is_playable": true, + "name": "THE WHEEL", + "release_date": "2025-09-12", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:0wk685JsrY5zGqCjXtcLBv" }, - { - "added_at": "2025-12-27T19:39:06Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" - }, - "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", - "id": "1A6HQzOvtGaCYihOuIKjE6", - "name": "Mr. Polska", - "type": "artist", - "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" - }, - "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", - "id": "2z9op9COiMU6QquVfY8HTN", - "name": "WINSON", - "type": "artist", - "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" - }, - "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", - "id": "30tToHC6q3nB7Lious0MZW", - "name": "Teletech", - "type": "artist", - "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" - }, - "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", - "id": "6KpFTQPwkK9hY39Tl7Wggv", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9" - } - ], - "is_playable": true, - "name": "Otherside", - "release_date": "2025-12-19", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" - }, - "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", - "id": "1A6HQzOvtGaCYihOuIKjE6", - "name": "Mr. Polska", - "type": "artist", - "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" - }, - "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", - "id": "2z9op9COiMU6QquVfY8HTN", - "name": "WINSON", - "type": "artist", - "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" - }, - "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", - "id": "30tToHC6q3nB7Lious0MZW", - "name": "Teletech", - "type": "artist", - "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 192000, - "explicit": false, - "external_ids": { "isrc": "DEH742537818" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" - }, - "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", - "id": "07Zj558j9j9TWq7HIcTFZn", - "is_local": false, - "is_playable": true, - "name": "Otherside", - "popularity": 44, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3iCJOi5YKh247eutgCyLFe" + }, + "href": "https://api.spotify.com/v1/artists/3iCJOi5YKh247eutgCyLFe", + "id": "3iCJOi5YKh247eutgCyLFe", + "name": "I See Stars", + "type": "artist", + "uri": "spotify:artist:3iCJOi5YKh247eutgCyLFe" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 209000, + "explicit": false, + "external_ids": { "isrc": "USYFZ2554003" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lkPcWWGuj2q9YHox1GWZE" + }, + "href": "https://api.spotify.com/v1/tracks/0lkPcWWGuj2q9YHox1GWZE", + "id": "0lkPcWWGuj2q9YHox1GWZE", + "is_local": false, + "is_playable": true, + "name": "Eliminator", + "popularity": 37, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:0lkPcWWGuj2q9YHox1GWZE" + } + }, + { + "added_at": "2025-12-27T19:39:06Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" + }, + "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", + "id": "6KpFTQPwkK9hY39Tl7Wggv", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9" } + ], + "is_playable": true, + "name": "Otherside", + "release_date": "2025-12-19", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 192000, + "explicit": false, + "external_ids": { "isrc": "DEH742537818" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" }, - { - "added_at": "2025-12-23T21:27:53Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" - }, - "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", - "id": "343NN0x0NpJGNjwB52gJ5J", - "name": "FHE", - "type": "artist", - "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" - }, - "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", - "id": "2OMCroH113OoIxVbMUwtSY", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647" - } - ], - "is_playable": true, - "name": "Beg For More", - "release_date": "2020-07-23", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" - }, - "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", - "id": "343NN0x0NpJGNjwB52gJ5J", - "name": "FHE", - "type": "artist", - "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203586, - "explicit": false, - "external_ids": { "isrc": "GBKQU2075409" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" - }, - "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", - "id": "6DEsqinq33fSFFMj6MoEH3", - "is_local": false, - "is_playable": true, - "name": "Beg For More", - "popularity": 31, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" + "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", + "id": "07Zj558j9j9TWq7HIcTFZn", + "is_local": false, + "is_playable": true, + "name": "Otherside", + "popularity": 44, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" + } + }, + { + "added_at": "2025-12-23T21:27:53Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" + }, + "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", + "id": "2OMCroH113OoIxVbMUwtSY", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647" + } + ], + "is_playable": true, + "name": "Beg For More", + "release_date": "2020-07-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203586, + "explicit": false, + "external_ids": { "isrc": "GBKQU2075409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" }, - { - "added_at": "2025-12-23T20:55:47Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" - }, - "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", - "id": "0V8zk3mDbTH54fs1bdqx8y", - "name": "Ari Mason", - "type": "artist", - "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/58JgOCCyTnvjCq08A0Cl2Q" - }, - "href": "https://api.spotify.com/v1/albums/58JgOCCyTnvjCq08A0Cl2Q", - "id": "58JgOCCyTnvjCq08A0Cl2Q", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ab0eef579685053904e2328c" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ab0eef579685053904e2328c" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ab0eef579685053904e2328c" - } - ], - "is_playable": true, - "name": "Creatures", - "release_date": "2016-03-25", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:58JgOCCyTnvjCq08A0Cl2Q" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" - }, - "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", - "id": "0V8zk3mDbTH54fs1bdqx8y", - "name": "Ari Mason", - "type": "artist", - "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206535, - "explicit": false, - "external_ids": { "isrc": "USY251636239" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6cRk4120UqIZziStFd0Ma3" - }, - "href": "https://api.spotify.com/v1/tracks/6cRk4120UqIZziStFd0Ma3", - "id": "6cRk4120UqIZziStFd0Ma3", - "is_local": false, - "is_playable": true, - "name": "Beasts Tonight", - "popularity": 43, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:6cRk4120UqIZziStFd0Ma3" + "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", + "id": "6DEsqinq33fSFFMj6MoEH3", + "is_local": false, + "is_playable": true, + "name": "Beg For More", + "popularity": 31, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" + } + }, + { + "added_at": "2025-12-23T20:55:47Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" + }, + "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", + "id": "0V8zk3mDbTH54fs1bdqx8y", + "name": "Ari Mason", + "type": "artist", + "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/58JgOCCyTnvjCq08A0Cl2Q" + }, + "href": "https://api.spotify.com/v1/albums/58JgOCCyTnvjCq08A0Cl2Q", + "id": "58JgOCCyTnvjCq08A0Cl2Q", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ab0eef579685053904e2328c" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ab0eef579685053904e2328c" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ab0eef579685053904e2328c" } + ], + "is_playable": true, + "name": "Creatures", + "release_date": "2016-03-25", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:58JgOCCyTnvjCq08A0Cl2Q" }, - { - "added_at": "2025-12-23T20:32:48Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" - }, - "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", - "id": "3gjygQY5Q2P3b5F1ZIP0Dj", - "name": "BLACKBOOK", - "type": "artist", - "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7y3DJ8V7R0MbyhbxLL0qvr" - }, - "href": "https://api.spotify.com/v1/albums/7y3DJ8V7R0MbyhbxLL0qvr", - "id": "7y3DJ8V7R0MbyhbxLL0qvr", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27367da077ab4a88a567edb4713" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0267da077ab4a88a567edb4713" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485167da077ab4a88a567edb4713" - } - ], - "is_playable": true, - "name": "Wait Until Midnight", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:7y3DJ8V7R0MbyhbxLL0qvr" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" - }, - "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", - "id": "3gjygQY5Q2P3b5F1ZIP0Dj", - "name": "BLACKBOOK", - "type": "artist", - "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 197760, - "explicit": false, - "external_ids": { "isrc": "DEWG82500207" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/72rDdFFIDIu7QsBUoSYKim" - }, - "href": "https://api.spotify.com/v1/tracks/72rDdFFIDIu7QsBUoSYKim", - "id": "72rDdFFIDIu7QsBUoSYKim", - "is_local": false, - "is_playable": true, - "name": "Wait Until Midnight", - "popularity": 28, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:72rDdFFIDIu7QsBUoSYKim" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0V8zk3mDbTH54fs1bdqx8y" + }, + "href": "https://api.spotify.com/v1/artists/0V8zk3mDbTH54fs1bdqx8y", + "id": "0V8zk3mDbTH54fs1bdqx8y", + "name": "Ari Mason", + "type": "artist", + "uri": "spotify:artist:0V8zk3mDbTH54fs1bdqx8y" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206535, + "explicit": false, + "external_ids": { "isrc": "USY251636239" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6cRk4120UqIZziStFd0Ma3" + }, + "href": "https://api.spotify.com/v1/tracks/6cRk4120UqIZziStFd0Ma3", + "id": "6cRk4120UqIZziStFd0Ma3", + "is_local": false, + "is_playable": true, + "name": "Beasts Tonight", + "popularity": 43, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:6cRk4120UqIZziStFd0Ma3" + } + }, + { + "added_at": "2025-12-23T20:32:48Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" + }, + "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", + "id": "3gjygQY5Q2P3b5F1ZIP0Dj", + "name": "BLACKBOOK", + "type": "artist", + "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7y3DJ8V7R0MbyhbxLL0qvr" + }, + "href": "https://api.spotify.com/v1/albums/7y3DJ8V7R0MbyhbxLL0qvr", + "id": "7y3DJ8V7R0MbyhbxLL0qvr", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27367da077ab4a88a567edb4713" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0267da077ab4a88a567edb4713" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485167da077ab4a88a567edb4713" } + ], + "is_playable": true, + "name": "Wait Until Midnight", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:7y3DJ8V7R0MbyhbxLL0qvr" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3gjygQY5Q2P3b5F1ZIP0Dj" + }, + "href": "https://api.spotify.com/v1/artists/3gjygQY5Q2P3b5F1ZIP0Dj", + "id": "3gjygQY5Q2P3b5F1ZIP0Dj", + "name": "BLACKBOOK", + "type": "artist", + "uri": "spotify:artist:3gjygQY5Q2P3b5F1ZIP0Dj" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 197760, + "explicit": false, + "external_ids": { "isrc": "DEWG82500207" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/72rDdFFIDIu7QsBUoSYKim" }, - { - "added_at": "2025-12-23T20:10:24Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" - }, - "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", - "id": "28NEaGWW9MKwryzTsFX8ko", - "name": "Arctis", - "type": "artist", - "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0dEhAHwtBRfkm3kFvlA4de" - }, - "href": "https://api.spotify.com/v1/albums/0dEhAHwtBRfkm3kFvlA4de", - "id": "0dEhAHwtBRfkm3kFvlA4de", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2737b5803a0b230a775fa79f322" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e027b5803a0b230a775fa79f322" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048517b5803a0b230a775fa79f322" - } - ], - "is_playable": true, - "name": "Arctis", - "release_date": "2024-11-01", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:0dEhAHwtBRfkm3kFvlA4de" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" - }, - "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", - "id": "28NEaGWW9MKwryzTsFX8ko", - "name": "Arctis", - "type": "artist", - "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 219130, - "explicit": false, - "external_ids": { "isrc": "ATN262435001" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3JygLXJ44lWW4PgwFJHnef" - }, - "href": "https://api.spotify.com/v1/tracks/3JygLXJ44lWW4PgwFJHnef", - "id": "3JygLXJ44lWW4PgwFJHnef", - "is_local": false, - "is_playable": true, - "name": "I'll Give You Hell", - "popularity": 28, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3JygLXJ44lWW4PgwFJHnef" + "href": "https://api.spotify.com/v1/tracks/72rDdFFIDIu7QsBUoSYKim", + "id": "72rDdFFIDIu7QsBUoSYKim", + "is_local": false, + "is_playable": true, + "name": "Wait Until Midnight", + "popularity": 28, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:72rDdFFIDIu7QsBUoSYKim" + } + }, + { + "added_at": "2025-12-23T20:10:24Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" + }, + "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", + "id": "28NEaGWW9MKwryzTsFX8ko", + "name": "Arctis", + "type": "artist", + "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0dEhAHwtBRfkm3kFvlA4de" + }, + "href": "https://api.spotify.com/v1/albums/0dEhAHwtBRfkm3kFvlA4de", + "id": "0dEhAHwtBRfkm3kFvlA4de", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2737b5803a0b230a775fa79f322" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e027b5803a0b230a775fa79f322" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048517b5803a0b230a775fa79f322" + } + ], + "is_playable": true, + "name": "Arctis", + "release_date": "2024-11-01", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:0dEhAHwtBRfkm3kFvlA4de" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28NEaGWW9MKwryzTsFX8ko" + }, + "href": "https://api.spotify.com/v1/artists/28NEaGWW9MKwryzTsFX8ko", + "id": "28NEaGWW9MKwryzTsFX8ko", + "name": "Arctis", + "type": "artist", + "uri": "spotify:artist:28NEaGWW9MKwryzTsFX8ko" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_ids": { "isrc": "ATN262435001" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3JygLXJ44lWW4PgwFJHnef" }, - { - "added_at": "2025-12-22T00:08:16Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" - }, - "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", - "id": "586uxXMyD5ObPuzjtrzO1Q", - "name": "SOFI TUKKER", - "type": "artist", - "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2yYylDKJUY5NCfv4YsZpZW" - }, - "href": "https://api.spotify.com/v1/albums/2yYylDKJUY5NCfv4YsZpZW", - "id": "2yYylDKJUY5NCfv4YsZpZW", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27347ce7985d84e6715a97cecd8" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0247ce7985d84e6715a97cecd8" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485147ce7985d84e6715a97cecd8" - } - ], - "is_playable": true, - "name": "One On One", - "release_date": "2023-12-08", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2yYylDKJUY5NCfv4YsZpZW" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "name": "The Knocks", - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" - }, - "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", - "id": "586uxXMyD5ObPuzjtrzO1Q", - "name": "SOFI TUKKER", - "type": "artist", - "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212252, - "explicit": false, - "external_ids": { "isrc": "QM37X2300009" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2xmlpRPQUA3lR6HYaeYv7g" - }, - "href": "https://api.spotify.com/v1/tracks/2xmlpRPQUA3lR6HYaeYv7g", - "id": "2xmlpRPQUA3lR6HYaeYv7g", - "is_local": false, - "is_playable": true, - "name": "One On One", - "popularity": 51, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2xmlpRPQUA3lR6HYaeYv7g" + "href": "https://api.spotify.com/v1/tracks/3JygLXJ44lWW4PgwFJHnef", + "id": "3JygLXJ44lWW4PgwFJHnef", + "is_local": false, + "is_playable": true, + "name": "I'll Give You Hell", + "popularity": 28, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3JygLXJ44lWW4PgwFJHnef" + } + }, + { + "added_at": "2025-12-22T00:08:16Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" + }, + "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", + "id": "586uxXMyD5ObPuzjtrzO1Q", + "name": "SOFI TUKKER", + "type": "artist", + "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2yYylDKJUY5NCfv4YsZpZW" + }, + "href": "https://api.spotify.com/v1/albums/2yYylDKJUY5NCfv4YsZpZW", + "id": "2yYylDKJUY5NCfv4YsZpZW", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27347ce7985d84e6715a97cecd8" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0247ce7985d84e6715a97cecd8" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485147ce7985d84e6715a97cecd8" } + ], + "is_playable": true, + "name": "One On One", + "release_date": "2023-12-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2yYylDKJUY5NCfv4YsZpZW" }, - { - "added_at": "2025-12-20T23:34:26Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" - }, - "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", - "id": "2MdFJmUQf3ckA99IhFF9my", - "name": "Ely Oaks", - "type": "artist", - "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/45DVKreI7RJd1QX49dRJOS" - }, - "href": "https://api.spotify.com/v1/albums/45DVKreI7RJd1QX49dRJOS", - "id": "45DVKreI7RJd1QX49dRJOS", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27372b1caa2ab6a5f2221b555ca" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0272b1caa2ab6a5f2221b555ca" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485172b1caa2ab6a5f2221b555ca" - } - ], - "is_playable": true, - "name": "Breakin' Dishes", - "release_date": "2025-09-12", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:45DVKreI7RJd1QX49dRJOS" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" - }, - "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", - "id": "2MdFJmUQf3ckA99IhFF9my", - "name": "Ely Oaks", - "type": "artist", - "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 133517, - "explicit": false, - "external_ids": { "isrc": "DE1N22500077" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3rTvXpSq6fDU1PitJlmnhm" - }, - "href": "https://api.spotify.com/v1/tracks/3rTvXpSq6fDU1PitJlmnhm", - "id": "3rTvXpSq6fDU1PitJlmnhm", - "is_local": false, - "is_playable": true, - "name": "Breakin' Dishes", - "popularity": 64, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3rTvXpSq6fDU1PitJlmnhm" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "name": "The Knocks", + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/586uxXMyD5ObPuzjtrzO1Q" + }, + "href": "https://api.spotify.com/v1/artists/586uxXMyD5ObPuzjtrzO1Q", + "id": "586uxXMyD5ObPuzjtrzO1Q", + "name": "SOFI TUKKER", + "type": "artist", + "uri": "spotify:artist:586uxXMyD5ObPuzjtrzO1Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212252, + "explicit": false, + "external_ids": { "isrc": "QM37X2300009" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2xmlpRPQUA3lR6HYaeYv7g" + }, + "href": "https://api.spotify.com/v1/tracks/2xmlpRPQUA3lR6HYaeYv7g", + "id": "2xmlpRPQUA3lR6HYaeYv7g", + "is_local": false, + "is_playable": true, + "name": "One On One", + "popularity": 51, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2xmlpRPQUA3lR6HYaeYv7g" + } + }, + { + "added_at": "2025-12-20T23:34:26Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" + }, + "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", + "id": "2MdFJmUQf3ckA99IhFF9my", + "name": "Ely Oaks", + "type": "artist", + "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/45DVKreI7RJd1QX49dRJOS" + }, + "href": "https://api.spotify.com/v1/albums/45DVKreI7RJd1QX49dRJOS", + "id": "45DVKreI7RJd1QX49dRJOS", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27372b1caa2ab6a5f2221b555ca" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0272b1caa2ab6a5f2221b555ca" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485172b1caa2ab6a5f2221b555ca" } + ], + "is_playable": true, + "name": "Breakin' Dishes", + "release_date": "2025-09-12", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:45DVKreI7RJd1QX49dRJOS" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2MdFJmUQf3ckA99IhFF9my" + }, + "href": "https://api.spotify.com/v1/artists/2MdFJmUQf3ckA99IhFF9my", + "id": "2MdFJmUQf3ckA99IhFF9my", + "name": "Ely Oaks", + "type": "artist", + "uri": "spotify:artist:2MdFJmUQf3ckA99IhFF9my" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 133517, + "explicit": false, + "external_ids": { "isrc": "DE1N22500077" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3rTvXpSq6fDU1PitJlmnhm" }, - { - "added_at": "2025-12-19T22:42:45Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0PrVmVD88Xk509v7BOT6a2" - }, - "href": "https://api.spotify.com/v1/albums/0PrVmVD88Xk509v7BOT6a2", - "id": "0PrVmVD88Xk509v7BOT6a2", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c62cf08cee6bff48127078ea" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c62cf08cee6bff48127078ea" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c62cf08cee6bff48127078ea" - } - ], - "is_playable": true, - "name": "Bitters\u00fc\u00df", - "release_date": "2025-02-14", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:0PrVmVD88Xk509v7BOT6a2" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" - }, - "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", - "id": "58xrjO7pWlfj2C2uksXScP", - "name": "Abor & Tynna", - "type": "artist", - "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183893, - "explicit": false, - "external_ids": { "isrc": "DEE862401925" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1H92AxiNEizRr0crbIJRGo" - }, - "href": "https://api.spotify.com/v1/tracks/1H92AxiNEizRr0crbIJRGo", - "id": "1H92AxiNEizRr0crbIJRGo", - "is_local": false, - "is_playable": true, - "name": "Winnetou", - "popularity": 39, - "preview_url": null, - "track_number": 11, - "type": "track", - "uri": "spotify:track:1H92AxiNEizRr0crbIJRGo" + "href": "https://api.spotify.com/v1/tracks/3rTvXpSq6fDU1PitJlmnhm", + "id": "3rTvXpSq6fDU1PitJlmnhm", + "is_local": false, + "is_playable": true, + "name": "Breakin' Dishes", + "popularity": 64, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3rTvXpSq6fDU1PitJlmnhm" + } + }, + { + "added_at": "2025-12-19T22:42:45Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0PrVmVD88Xk509v7BOT6a2" + }, + "href": "https://api.spotify.com/v1/albums/0PrVmVD88Xk509v7BOT6a2", + "id": "0PrVmVD88Xk509v7BOT6a2", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c62cf08cee6bff48127078ea" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c62cf08cee6bff48127078ea" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c62cf08cee6bff48127078ea" + } + ], + "is_playable": true, + "name": "Bitters\u00fc\u00df", + "release_date": "2025-02-14", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:0PrVmVD88Xk509v7BOT6a2" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/58xrjO7pWlfj2C2uksXScP" + }, + "href": "https://api.spotify.com/v1/artists/58xrjO7pWlfj2C2uksXScP", + "id": "58xrjO7pWlfj2C2uksXScP", + "name": "Abor & Tynna", + "type": "artist", + "uri": "spotify:artist:58xrjO7pWlfj2C2uksXScP" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183893, + "explicit": false, + "external_ids": { "isrc": "DEE862401925" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1H92AxiNEizRr0crbIJRGo" }, - { - "added_at": "2025-12-18T21:39:07Z", - "track": { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" - }, - "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", - "id": "6pIRdCtSE5hLFfIfcTAicI", - "name": "Delain", - "type": "artist", - "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4cGfPdyycjpZp07DbCJtbY" - }, - "href": "https://api.spotify.com/v1/albums/4cGfPdyycjpZp07DbCJtbY", - "id": "4cGfPdyycjpZp07DbCJtbY", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738e13be833e2f32f132a1a27b" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028e13be833e2f32f132a1a27b" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d000048518e13be833e2f32f132a1a27b" - } - ], - "is_playable": true, - "name": "We Are The Others", - "release_date": "2012-06-01", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:4cGfPdyycjpZp07DbCJtbY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" - }, - "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", - "id": "6pIRdCtSE5hLFfIfcTAicI", - "name": "Delain", - "type": "artist", - "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 199280, - "explicit": false, - "external_ids": { "isrc": "NLA241208409" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/6uKvnGeg6xgzPTH3QSPTB6" - }, - "href": "https://api.spotify.com/v1/tracks/6uKvnGeg6xgzPTH3QSPTB6", - "id": "6uKvnGeg6xgzPTH3QSPTB6", - "is_local": false, - "is_playable": true, - "name": "We Are The Others", - "popularity": 44, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6uKvnGeg6xgzPTH3QSPTB6" + "href": "https://api.spotify.com/v1/tracks/1H92AxiNEizRr0crbIJRGo", + "id": "1H92AxiNEizRr0crbIJRGo", + "is_local": false, + "is_playable": true, + "name": "Winnetou", + "popularity": 39, + "preview_url": null, + "track_number": 11, + "type": "track", + "uri": "spotify:track:1H92AxiNEizRr0crbIJRGo" + } + }, + { + "added_at": "2025-12-18T21:39:07Z", + "track": { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" + }, + "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", + "id": "6pIRdCtSE5hLFfIfcTAicI", + "name": "Delain", + "type": "artist", + "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4cGfPdyycjpZp07DbCJtbY" + }, + "href": "https://api.spotify.com/v1/albums/4cGfPdyycjpZp07DbCJtbY", + "id": "4cGfPdyycjpZp07DbCJtbY", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738e13be833e2f32f132a1a27b" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028e13be833e2f32f132a1a27b" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d000048518e13be833e2f32f132a1a27b" } + ], + "is_playable": true, + "name": "We Are The Others", + "release_date": "2012-06-01", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:4cGfPdyycjpZp07DbCJtbY" }, - { - "added_at": "2025-12-18T21:15:33Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" - }, - "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", - "id": "6rVZNRKhwhm7DYuJrMARb4", - "name": "Venus 5", - "type": "artist", - "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3cyWbMuXwDiHTOzkydUWwN" - }, - "href": "https://api.spotify.com/v1/albums/3cyWbMuXwDiHTOzkydUWwN", - "id": "3cyWbMuXwDiHTOzkydUWwN", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273d07c5fb903eb78c45840ffd3" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02d07c5fb903eb78c45840ffd3" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851d07c5fb903eb78c45840ffd3" - } - ], - "is_playable": true, - "name": "Like A Witch", - "release_date": "2025-12-17", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:3cyWbMuXwDiHTOzkydUWwN" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" - }, - "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", - "id": "6rVZNRKhwhm7DYuJrMARb4", - "name": "Venus 5", - "type": "artist", - "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 188522, - "explicit": false, - "external_ids": { "isrc": "ITG272600036" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4BRNp7hCB6HXAT4Pmjs20q" - }, - "href": "https://api.spotify.com/v1/tracks/4BRNp7hCB6HXAT4Pmjs20q", - "id": "4BRNp7hCB6HXAT4Pmjs20q", - "is_local": false, - "is_playable": true, - "name": "Like A Witch", - "popularity": 13, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4BRNp7hCB6HXAT4Pmjs20q" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6pIRdCtSE5hLFfIfcTAicI" + }, + "href": "https://api.spotify.com/v1/artists/6pIRdCtSE5hLFfIfcTAicI", + "id": "6pIRdCtSE5hLFfIfcTAicI", + "name": "Delain", + "type": "artist", + "uri": "spotify:artist:6pIRdCtSE5hLFfIfcTAicI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 199280, + "explicit": false, + "external_ids": { "isrc": "NLA241208409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6uKvnGeg6xgzPTH3QSPTB6" + }, + "href": "https://api.spotify.com/v1/tracks/6uKvnGeg6xgzPTH3QSPTB6", + "id": "6uKvnGeg6xgzPTH3QSPTB6", + "is_local": false, + "is_playable": true, + "name": "We Are The Others", + "popularity": 44, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6uKvnGeg6xgzPTH3QSPTB6" + } + }, + { + "added_at": "2025-12-18T21:15:33Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3cyWbMuXwDiHTOzkydUWwN" + }, + "href": "https://api.spotify.com/v1/albums/3cyWbMuXwDiHTOzkydUWwN", + "id": "3cyWbMuXwDiHTOzkydUWwN", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273d07c5fb903eb78c45840ffd3" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02d07c5fb903eb78c45840ffd3" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851d07c5fb903eb78c45840ffd3" } + ], + "is_playable": true, + "name": "Like A Witch", + "release_date": "2025-12-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:3cyWbMuXwDiHTOzkydUWwN" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6rVZNRKhwhm7DYuJrMARb4" + }, + "href": "https://api.spotify.com/v1/artists/6rVZNRKhwhm7DYuJrMARb4", + "id": "6rVZNRKhwhm7DYuJrMARb4", + "name": "Venus 5", + "type": "artist", + "uri": "spotify:artist:6rVZNRKhwhm7DYuJrMARb4" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 188522, + "explicit": false, + "external_ids": { "isrc": "ITG272600036" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4BRNp7hCB6HXAT4Pmjs20q" }, - { - "added_at": "2025-12-18T18:27:31Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" - }, - "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", - "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", - "name": "ORDO M'ERA LUNA", - "type": "artist", - "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6x0GKK1wLHJpQlRg9NViiB" - }, - "href": "https://api.spotify.com/v1/albums/6x0GKK1wLHJpQlRg9NViiB", - "id": "6x0GKK1wLHJpQlRg9NViiB", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273283ac365388db9cf8f6533cc" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02283ac365388db9cf8f6533cc" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851283ac365388db9cf8f6533cc" - } - ], - "is_playable": true, - "name": "Dark Heart Of The Moon", - "release_date": "2025-05-09", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6x0GKK1wLHJpQlRg9NViiB" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" - }, - "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", - "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", - "name": "ORDO M'ERA LUNA", - "type": "artist", - "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 214093, - "explicit": false, - "external_ids": { "isrc": "DEBZ72500118" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0kqIcYezyGQTiXeQFEbJ4m" - }, - "href": "https://api.spotify.com/v1/tracks/0kqIcYezyGQTiXeQFEbJ4m", - "id": "0kqIcYezyGQTiXeQFEbJ4m", - "is_local": false, - "is_playable": true, - "name": "Dark Heart Of The Moon", - "popularity": 38, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0kqIcYezyGQTiXeQFEbJ4m" + "href": "https://api.spotify.com/v1/tracks/4BRNp7hCB6HXAT4Pmjs20q", + "id": "4BRNp7hCB6HXAT4Pmjs20q", + "is_local": false, + "is_playable": true, + "name": "Like A Witch", + "popularity": 13, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4BRNp7hCB6HXAT4Pmjs20q" + } + }, + { + "added_at": "2025-12-18T18:27:31Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" + }, + "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", + "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", + "name": "ORDO M'ERA LUNA", + "type": "artist", + "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6x0GKK1wLHJpQlRg9NViiB" + }, + "href": "https://api.spotify.com/v1/albums/6x0GKK1wLHJpQlRg9NViiB", + "id": "6x0GKK1wLHJpQlRg9NViiB", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273283ac365388db9cf8f6533cc" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02283ac365388db9cf8f6533cc" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851283ac365388db9cf8f6533cc" + } + ], + "is_playable": true, + "name": "Dark Heart Of The Moon", + "release_date": "2025-05-09", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6x0GKK1wLHJpQlRg9NViiB" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4cysB2a8Q2cJ5g2ZX1Y0gV" + }, + "href": "https://api.spotify.com/v1/artists/4cysB2a8Q2cJ5g2ZX1Y0gV", + "id": "4cysB2a8Q2cJ5g2ZX1Y0gV", + "name": "ORDO M'ERA LUNA", + "type": "artist", + "uri": "spotify:artist:4cysB2a8Q2cJ5g2ZX1Y0gV" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 214093, + "explicit": false, + "external_ids": { "isrc": "DEBZ72500118" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0kqIcYezyGQTiXeQFEbJ4m" }, - { - "added_at": "2025-12-15T22:57:12Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" - }, - "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", - "id": "7ouEqUl1PCVPlNninecdcz", - "name": "HAVEN.", - "type": "artist", - "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" - }, - "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", - "id": "29G5je6tT7As2ZFY72CdXs", - "name": "Kaitlin Aragon", - "type": "artist", - "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" - }, - "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", - "id": "6gePAokYlEquPQ4LDVc1ri", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099" - } - ], - "is_playable": true, - "name": "I Run", - "release_date": "2025-11-21", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" - }, - "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", - "id": "7ouEqUl1PCVPlNninecdcz", - "name": "HAVEN.", - "type": "artist", - "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" - }, - "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", - "id": "29G5je6tT7As2ZFY72CdXs", - "name": "Kaitlin Aragon", - "type": "artist", - "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 129565, - "explicit": false, - "external_ids": { "isrc": "CA5KR2603887" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" - }, - "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", - "id": "1WwQ714xuznu44tEnkem2g", - "is_local": false, - "is_playable": true, - "name": "I Run", - "popularity": 86, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" + "href": "https://api.spotify.com/v1/tracks/0kqIcYezyGQTiXeQFEbJ4m", + "id": "0kqIcYezyGQTiXeQFEbJ4m", + "is_local": false, + "is_playable": true, + "name": "Dark Heart Of The Moon", + "popularity": 38, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0kqIcYezyGQTiXeQFEbJ4m" + } + }, + { + "added_at": "2025-12-15T22:57:12Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" + }, + "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", + "id": "6gePAokYlEquPQ4LDVc1ri", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099" } + ], + "is_playable": true, + "name": "I Run", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" }, - { - "added_at": "2025-12-15T22:51:25Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" - }, - "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", - "id": "43BxCL6t4c73BQnIJtry5v", - "name": "James Hype", - "type": "artist", - "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" - }, - "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", - "id": "0czTwfZBBvlvlOiypvDvwe", - "name": "Sam Harper", - "type": "artist", - "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" - }, - "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", - "id": "2biXipa3IRLZUOnXgtKmXc", - "name": "Bobby Harvey", - "type": "artist", - "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" - }, - "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", - "id": "1iEczV3pKJ9MPmRvYGB9bz", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381" - } - ], - "is_playable": true, - "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", - "release_date": "2025-08-08", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" - }, - "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", - "id": "43BxCL6t4c73BQnIJtry5v", - "name": "James Hype", - "type": "artist", - "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" - }, - "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", - "id": "0czTwfZBBvlvlOiypvDvwe", - "name": "Sam Harper", - "type": "artist", - "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" - }, - "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", - "id": "2biXipa3IRLZUOnXgtKmXc", - "name": "Bobby Harvey", - "type": "artist", - "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 120578, - "explicit": false, - "external_ids": { "isrc": "GBUM72504512" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" - }, - "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", - "id": "1OcV53oesLQw3VTW9I3uD3", - "is_local": false, - "is_playable": true, - "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", - "popularity": 80, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 129565, + "explicit": false, + "external_ids": { "isrc": "CA5KR2603887" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" + }, + "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", + "id": "1WwQ714xuznu44tEnkem2g", + "is_local": false, + "is_playable": true, + "name": "I Run", + "popularity": 86, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" + } + }, + { + "added_at": "2025-12-15T22:51:25Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" + }, + "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", + "id": "1iEczV3pKJ9MPmRvYGB9bz", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381" } + ], + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 120578, + "explicit": false, + "external_ids": { "isrc": "GBUM72504512" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" }, - { - "added_at": "2025-12-15T22:51:17Z", - "track": { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" - }, - "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", - "id": "0QaSiI5TLA4N7mcsdxShDO", - "name": "Sub Focus", - "type": "artist", - "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" - }, - "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", - "id": "2UNjfzEkfsdWVDwnuD6vdH", - "name": "bbyclose", - "type": "artist", - "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4MkZ4elzb1iHTMmzyYh1Jc" - }, - "href": "https://api.spotify.com/v1/albums/4MkZ4elzb1iHTMmzyYh1Jc", - "id": "4MkZ4elzb1iHTMmzyYh1Jc", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c49f59a5fb56e49d55b36558" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c49f59a5fb56e49d55b36558" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c49f59a5fb56e49d55b36558" - } - ], - "is_playable": true, - "name": "On & On", - "release_date": "2025-03-14", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4MkZ4elzb1iHTMmzyYh1Jc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" - }, - "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", - "id": "0QaSiI5TLA4N7mcsdxShDO", - "name": "Sub Focus", - "type": "artist", - "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" - }, - "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", - "id": "2UNjfzEkfsdWVDwnuD6vdH", - "name": "bbyclose", - "type": "artist", - "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 184827, - "explicit": false, - "external_ids": { "isrc": "GBUM72500754" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/2B0xsnWUjm7cPLs9gGoepp" - }, - "href": "https://api.spotify.com/v1/tracks/2B0xsnWUjm7cPLs9gGoepp", - "id": "2B0xsnWUjm7cPLs9gGoepp", - "is_local": false, - "is_playable": true, - "name": "On & On", - "popularity": 61, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2B0xsnWUjm7cPLs9gGoepp" + "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", + "id": "1OcV53oesLQw3VTW9I3uD3", + "is_local": false, + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" + } + }, + { + "added_at": "2025-12-15T22:51:17Z", + "track": { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" } - } - ], - "limit": 48, - "next": "https://api.spotify.com/v1/me/tracks?offset=48&limit=48", - "offset": 0, - "previous": null, - "total": 5320 + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4MkZ4elzb1iHTMmzyYh1Jc" + }, + "href": "https://api.spotify.com/v1/albums/4MkZ4elzb1iHTMmzyYh1Jc", + "id": "4MkZ4elzb1iHTMmzyYh1Jc", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c49f59a5fb56e49d55b36558" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c49f59a5fb56e49d55b36558" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c49f59a5fb56e49d55b36558" + } + ], + "is_playable": true, + "name": "On & On", + "release_date": "2025-03-14", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4MkZ4elzb1iHTMmzyYh1Jc" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 184827, + "explicit": false, + "external_ids": { "isrc": "GBUM72500754" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2B0xsnWUjm7cPLs9gGoepp" + }, + "href": "https://api.spotify.com/v1/tracks/2B0xsnWUjm7cPLs9gGoepp", + "id": "2B0xsnWUjm7cPLs9gGoepp", + "is_local": false, + "is_playable": true, + "name": "On & On", + "popularity": 61, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2B0xsnWUjm7cPLs9gGoepp" + } + } + ], + "limit": 48, + "next": "https://api.spotify.com/v1/me/tracks?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 5320 } diff --git a/tests/fixtures/search.json b/tests/fixtures/search.json index cecc154..19173ad 100644 --- a/tests/fixtures/search.json +++ b/tests/fixtures/search.json @@ -1,2253 +1,2253 @@ { - "tracks": { - "href": "https://api.spotify.com/v1/search?offset=0&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", - "limit": 5, - "next": "https://api.spotify.com/v1/search?offset=5&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", - "offset": 0, - "previous": null, - "total": 16, - "items": [ + "tracks": { + "href": "https://api.spotify.com/v1/search?offset=0&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", + "limit": 5, + "next": "https://api.spotify.com/v1/search?offset=5&limit=5&query=Never%20Gonna%20Give%20You%20Up&type=track", + "offset": 0, + "previous": null, + "total": 16, + "items": [ + { + "album": { + "album_type": "album", + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" - }, - "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", - "id": "0gxyHStUsqpMadRV0Di1Qt", - "name": "Rick Astley", - "type": "artist", - "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6eUW0wxWtzkFdaEFsTJto6" - }, - "href": "https://api.spotify.com/v1/albums/6eUW0wxWtzkFdaEFsTJto6", - "id": "6eUW0wxWtzkFdaEFsTJto6", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27315ebbedaacef61af244262a8" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0215ebbedaacef61af244262a8" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485115ebbedaacef61af244262a8" - } - ], - "is_playable": true, - "name": "Whenever You Need Somebody", - "release_date": "1987-11-12", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:6eUW0wxWtzkFdaEFsTJto6" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" - }, - "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", - "id": "0gxyHStUsqpMadRV0Di1Qt", - "name": "Rick Astley", - "type": "artist", - "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 213573, - "explicit": false, - "external_ids": { "isrc": "GBARL9300135" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8" - }, - "href": "https://api.spotify.com/v1/tracks/4PTG3Z6ehGkBFwjybzWkR8", - "id": "4PTG3Z6ehGkBFwjybzWkR8", - "is_local": false, - "is_playable": true, - "name": "Never Gonna Give You Up", - "popularity": 78, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4PTG3Z6ehGkBFwjybzWkR8" + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" + }, + "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", + "id": "0gxyHStUsqpMadRV0Di1Qt", + "name": "Rick Astley", + "type": "artist", + "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6eUW0wxWtzkFdaEFsTJto6" + }, + "href": "https://api.spotify.com/v1/albums/6eUW0wxWtzkFdaEFsTJto6", + "id": "6eUW0wxWtzkFdaEFsTJto6", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27315ebbedaacef61af244262a8" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0215ebbedaacef61af244262a8" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485115ebbedaacef61af244262a8" + } + ], + "is_playable": true, + "name": "Whenever You Need Somebody", + "release_date": "1987-11-12", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:6eUW0wxWtzkFdaEFsTJto6" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gxyHStUsqpMadRV0Di1Qt" + }, + "href": "https://api.spotify.com/v1/artists/0gxyHStUsqpMadRV0Di1Qt", + "id": "0gxyHStUsqpMadRV0Di1Qt", + "name": "Rick Astley", + "type": "artist", + "uri": "spotify:artist:0gxyHStUsqpMadRV0Di1Qt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 213573, + "explicit": false, + "external_ids": { "isrc": "GBARL9300135" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8" + }, + "href": "https://api.spotify.com/v1/tracks/4PTG3Z6ehGkBFwjybzWkR8", + "id": "4PTG3Z6ehGkBFwjybzWkR8", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 78, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4PTG3Z6ehGkBFwjybzWkR8" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" + }, + "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", + "id": "1mYgKcXdbklH5RwjU6XA8c", + "name": "Sekou", + "type": "artist", + "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1yXHaolBuecNtg6qZllfno" + }, + "href": "https://api.spotify.com/v1/albums/1yXHaolBuecNtg6qZllfno", + "id": "1yXHaolBuecNtg6qZllfno", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27360ea77d78d3d377266a216de" }, { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" - }, - "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", - "id": "1mYgKcXdbklH5RwjU6XA8c", - "name": "Sekou", - "type": "artist", - "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1yXHaolBuecNtg6qZllfno" - }, - "href": "https://api.spotify.com/v1/albums/1yXHaolBuecNtg6qZllfno", - "id": "1yXHaolBuecNtg6qZllfno", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27360ea77d78d3d377266a216de" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0260ea77d78d3d377266a216de" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d0000485160ea77d78d3d377266a216de" - } - ], - "is_playable": true, - "name": "Never Gunna Give You Up", - "release_date": "2025-10-03", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:1yXHaolBuecNtg6qZllfno" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" - }, - "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", - "id": "1mYgKcXdbklH5RwjU6XA8c", - "name": "Sekou", - "type": "artist", - "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 165315, - "explicit": false, - "external_ids": { "isrc": "GBUM72505545" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/5juAS6AmOceMjFnlUaJQr2" - }, - "href": "https://api.spotify.com/v1/tracks/5juAS6AmOceMjFnlUaJQr2", - "id": "5juAS6AmOceMjFnlUaJQr2", - "is_local": false, - "is_playable": true, - "name": "Never Gunna Give You Up", - "popularity": 58, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:5juAS6AmOceMjFnlUaJQr2" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0260ea77d78d3d377266a216de" }, { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" - }, - "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", - "id": "1K8Sk2nWCEIqOsGPT1cV9Q", - "name": "Harlem Dance Club", - "type": "artist", - "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2cGYid81TxVdEc4UPo3h9x" - }, - "href": "https://api.spotify.com/v1/albums/2cGYid81TxVdEc4UPo3h9x", - "id": "2cGYid81TxVdEc4UPo3h9x", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273135d2ae166774541e2630370" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02135d2ae166774541e2630370" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851135d2ae166774541e2630370" - } - ], - "is_playable": true, - "name": "Never Gonna Give You Up", - "release_date": "2026-02-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2cGYid81TxVdEc4UPo3h9x" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" - }, - "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", - "id": "1K8Sk2nWCEIqOsGPT1cV9Q", - "name": "Harlem Dance Club", - "type": "artist", - "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 193231, - "explicit": false, - "external_ids": { "isrc": "QZHNC2668731" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0EuQ4KOfNmQX9RQt8BN9gG" - }, - "href": "https://api.spotify.com/v1/tracks/0EuQ4KOfNmQX9RQt8BN9gG", - "id": "0EuQ4KOfNmQX9RQt8BN9gG", - "is_local": false, - "is_playable": true, - "name": "Never Gonna Give You Up", - "popularity": 20, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0EuQ4KOfNmQX9RQt8BN9gG" + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d0000485160ea77d78d3d377266a216de" + } + ], + "is_playable": true, + "name": "Never Gunna Give You Up", + "release_date": "2025-10-03", + "release_date_precision": "day", + "total_tracks": 2, + "type": "album", + "uri": "spotify:album:1yXHaolBuecNtg6qZllfno" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1mYgKcXdbklH5RwjU6XA8c" }, + "href": "https://api.spotify.com/v1/artists/1mYgKcXdbklH5RwjU6XA8c", + "id": "1mYgKcXdbklH5RwjU6XA8c", + "name": "Sekou", + "type": "artist", + "uri": "spotify:artist:1mYgKcXdbklH5RwjU6XA8c" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 165315, + "explicit": false, + "external_ids": { "isrc": "GBUM72505545" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5juAS6AmOceMjFnlUaJQr2" + }, + "href": "https://api.spotify.com/v1/tracks/5juAS6AmOceMjFnlUaJQr2", + "id": "5juAS6AmOceMjFnlUaJQr2", + "is_local": false, + "is_playable": true, + "name": "Never Gunna Give You Up", + "popularity": 58, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:5juAS6AmOceMjFnlUaJQr2" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" + }, + "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", + "id": "1K8Sk2nWCEIqOsGPT1cV9Q", + "name": "Harlem Dance Club", + "type": "artist", + "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2cGYid81TxVdEc4UPo3h9x" + }, + "href": "https://api.spotify.com/v1/albums/2cGYid81TxVdEc4UPo3h9x", + "id": "2cGYid81TxVdEc4UPo3h9x", + "images": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" - }, - "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", - "id": "5ApzCoihjAuHAfGVoVqv61", - "name": "Kapena", - "type": "artist", - "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4y32ym1lHG1X3sahnZqOkF" - }, - "href": "https://api.spotify.com/v1/albums/4y32ym1lHG1X3sahnZqOkF", - "id": "4y32ym1lHG1X3sahnZqOkF", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ea165b51f57f46cb58bd7ac2" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ea165b51f57f46cb58bd7ac2" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ea165b51f57f46cb58bd7ac2" - } - ], - "is_playable": true, - "name": "Kapena and More!", - "release_date": "1990-11-14", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:4y32ym1lHG1X3sahnZqOkF" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" - }, - "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", - "id": "5ApzCoihjAuHAfGVoVqv61", - "name": "Kapena", - "type": "artist", - "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191796, - "explicit": false, - "external_ids": { "isrc": "USX9P1306179" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/0PAiAlK1oyPeWvet3ZVmfE" - }, - "href": "https://api.spotify.com/v1/tracks/0PAiAlK1oyPeWvet3ZVmfE", - "id": "0PAiAlK1oyPeWvet3ZVmfE", - "is_local": false, - "is_playable": true, - "name": "Never Gonna Give You Up", - "popularity": 36, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:0PAiAlK1oyPeWvet3ZVmfE" + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273135d2ae166774541e2630370" }, { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" - }, - "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", - "id": "5ApzCoihjAuHAfGVoVqv61", - "name": "Kapena", - "type": "artist", - "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7jcahaVnc8W0Yf4cog7Lho" - }, - "href": "https://api.spotify.com/v1/albums/7jcahaVnc8W0Yf4cog7Lho", - "id": "7jcahaVnc8W0Yf4cog7Lho", - "images": [ - { - "height": 640, - "width": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f857e22fae01830dda2d96fe" - }, - { - "height": 300, - "width": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f857e22fae01830dda2d96fe" - }, - { - "height": 64, - "width": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f857e22fae01830dda2d96fe" - } - ], - "is_playable": true, - "name": "30", - "release_date": "2015-12-28", - "release_date_precision": "day", - "total_tracks": 30, - "type": "album", - "uri": "spotify:album:7jcahaVnc8W0Yf4cog7Lho" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" - }, - "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", - "id": "5ApzCoihjAuHAfGVoVqv61", - "name": "Kapena", - "type": "artist", - "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 191053, - "explicit": false, - "external_ids": { "isrc": "USCGJ1621993" }, - "external_urls": { - "spotify": "https://open.spotify.com/track/3XQsHKA5zyxVkavbQ5d79m" - }, - "href": "https://api.spotify.com/v1/tracks/3XQsHKA5zyxVkavbQ5d79m", - "id": "3XQsHKA5zyxVkavbQ5d79m", - "is_local": false, - "is_playable": true, - "name": "Never Gonna Give You Up", - "popularity": 1, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3XQsHKA5zyxVkavbQ5d79m" + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02135d2ae166774541e2630370" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851135d2ae166774541e2630370" } - ] - } + ], + "is_playable": true, + "name": "Never Gonna Give You Up", + "release_date": "2026-02-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2cGYid81TxVdEc4UPo3h9x" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1K8Sk2nWCEIqOsGPT1cV9Q" + }, + "href": "https://api.spotify.com/v1/artists/1K8Sk2nWCEIqOsGPT1cV9Q", + "id": "1K8Sk2nWCEIqOsGPT1cV9Q", + "name": "Harlem Dance Club", + "type": "artist", + "uri": "spotify:artist:1K8Sk2nWCEIqOsGPT1cV9Q" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 193231, + "explicit": false, + "external_ids": { "isrc": "QZHNC2668731" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0EuQ4KOfNmQX9RQt8BN9gG" + }, + "href": "https://api.spotify.com/v1/tracks/0EuQ4KOfNmQX9RQt8BN9gG", + "id": "0EuQ4KOfNmQX9RQt8BN9gG", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 20, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0EuQ4KOfNmQX9RQt8BN9gG" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4y32ym1lHG1X3sahnZqOkF" + }, + "href": "https://api.spotify.com/v1/albums/4y32ym1lHG1X3sahnZqOkF", + "id": "4y32ym1lHG1X3sahnZqOkF", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ea165b51f57f46cb58bd7ac2" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ea165b51f57f46cb58bd7ac2" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ea165b51f57f46cb58bd7ac2" + } + ], + "is_playable": true, + "name": "Kapena and More!", + "release_date": "1990-11-14", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:4y32ym1lHG1X3sahnZqOkF" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191796, + "explicit": false, + "external_ids": { "isrc": "USX9P1306179" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0PAiAlK1oyPeWvet3ZVmfE" + }, + "href": "https://api.spotify.com/v1/tracks/0PAiAlK1oyPeWvet3ZVmfE", + "id": "0PAiAlK1oyPeWvet3ZVmfE", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 36, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:0PAiAlK1oyPeWvet3ZVmfE" + }, + { + "album": { + "album_type": "album", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7jcahaVnc8W0Yf4cog7Lho" + }, + "href": "https://api.spotify.com/v1/albums/7jcahaVnc8W0Yf4cog7Lho", + "id": "7jcahaVnc8W0Yf4cog7Lho", + "images": [ + { + "height": 640, + "width": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f857e22fae01830dda2d96fe" + }, + { + "height": 300, + "width": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f857e22fae01830dda2d96fe" + }, + { + "height": 64, + "width": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f857e22fae01830dda2d96fe" + } + ], + "is_playable": true, + "name": "30", + "release_date": "2015-12-28", + "release_date_precision": "day", + "total_tracks": 30, + "type": "album", + "uri": "spotify:album:7jcahaVnc8W0Yf4cog7Lho" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5ApzCoihjAuHAfGVoVqv61" + }, + "href": "https://api.spotify.com/v1/artists/5ApzCoihjAuHAfGVoVqv61", + "id": "5ApzCoihjAuHAfGVoVqv61", + "name": "Kapena", + "type": "artist", + "uri": "spotify:artist:5ApzCoihjAuHAfGVoVqv61" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 191053, + "explicit": false, + "external_ids": { "isrc": "USCGJ1621993" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3XQsHKA5zyxVkavbQ5d79m" + }, + "href": "https://api.spotify.com/v1/tracks/3XQsHKA5zyxVkavbQ5d79m", + "id": "3XQsHKA5zyxVkavbQ5d79m", + "is_local": false, + "is_playable": true, + "name": "Never Gonna Give You Up", + "popularity": 1, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3XQsHKA5zyxVkavbQ5d79m" + } + ] + } } diff --git a/tests/fixtures/show.json b/tests/fixtures/show.json index b4883b2..7404d2e 100644 --- a/tests/fixtures/show.json +++ b/tests/fixtures/show.json @@ -1,2333 +1,2333 @@ { - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "copyrights": [], - "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", - "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", - "explicit": true, - "external_urls": { - "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "copyrights": [], + "description": "Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.", + "html_description": "

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan, and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.

", + "explicit": true, + "external_urls": { + "spotify": "https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD" + }, + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", + "id": "1Y9ExMgMxoBVrgrfU7u0nD", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "width": 640 }, - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD", - "id": "1Y9ExMgMxoBVrgrfU7u0nD", - "images": [ - { + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "width": 64 + } + ], + "is_externally_hosted": false, + "languages": ["en-US"], + "media_type": "audio", + "name": "Safety Third", + "publisher": "Safety Third ", + "type": "show", + "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD", + "total_episodes": 159, + "episodes": { + "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=0&limit=50", + "limit": 50, + "next": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=50&limit=50", + "offset": 0, + "previous": null, + "total": 159, + "items": [ + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4iiYwCmm1Z7VQYxuYQjVLW/clip_134000_195840.mp3", + "description": "Don't back this Kickstarter: http://kck.st/4qBbxoEPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Don't back this Kickstarter: http://kck.st/4qBbxoE

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4749648, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3TFqlEpcxCgD118RdWy4l6" + }, + "href": "https://api.spotify.com/v1/episodes/3TFqlEpcxCgD118RdWy4l6", + "id": "3TFqlEpcxCgD118RdWy4l6", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Tried Making a Better Coke - Safety Third 158", + "release_date": "2026-02-19", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3TFqlEpcxCgD118RdWy4l6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/53aYZXFzw2WFuECEAKgC6m/clip_100000_165360.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069@WilliamOsman2\u2069\u2068@NileRed\u2069Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4190616, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7237hqixNa5Pa1bV5Pak2p" + }, + "href": "https://api.spotify.com/v1/episodes/7237hqixNa5Pa1bV5Pak2p", + "id": "7237hqixNa5Pa1bV5Pak2p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ae32a1a91e4974bf4cfe752a1", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fe32a1a91e4974bf4cfe752a1", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68de32a1a91e4974bf4cfe752a1", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how long can we actually keep this up? - Safety Third 157", + "release_date": "2026-02-12", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7237hqixNa5Pa1bV5Pak2p" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QnEB6W3KCZjmozkmrMukR/clip_539000_607200.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5486976, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2X2dSrYifdwxzNA5I9YGpl" + }, + "href": "https://api.spotify.com/v1/episodes/2X2dSrYifdwxzNA5I9YGpl", + "id": "2X2dSrYifdwxzNA5I9YGpl", + "images": [ + { "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "are you actually angry or just frustrated? - Safety Third 156", + "release_date": "2026-02-05", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2X2dSrYifdwxzNA5I9YGpl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4RDe7tNjpMBwAN4youDtBM/clip_1137000_1197600.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0\u2068@TheBackyardScientist\u2069\u00a0\u00a0\u2068@WilliamOsman2\u2069\u00a0\u00a0\u2068@NileRed\u2069\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0\u2068@TheBackyardScientist\u2069\u00a0

\u00a0\u2068@WilliamOsman2\u2069\u00a0

\u00a0\u2068@NileRed\u2069\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3047904, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2bA0hdVhjQOR4fwgYwfJK4" }, - { + "href": "https://api.spotify.com/v1/episodes/2bA0hdVhjQOR4fwgYwfJK4", + "id": "2bA0hdVhjQOR4fwgYwfJK4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a8a97f0d163dfdc3020ddc6a4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f8a97f0d163dfdc3020ddc6a4", "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d8a97f0d163dfdc3020ddc6a4", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is your workshop just a storage unit? - Safety Third 155", + "release_date": "2026-01-29", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2bA0hdVhjQOR4fwgYwfJK4" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7GUYFFkecsDVlychEf2InD/clip_126000_182000.mp3", + "description": "Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUwPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUw


Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5867928, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5jg6DwBwVPbRtafX2bMXfW" + }, + "href": "https://api.spotify.com/v1/episodes/5jg6DwBwVPbRtafX2bMXfW", + "id": "5jg6DwBwVPbRtafX2bMXfW", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "He STOLE Coke's Secret Recipe - Safety Third 154", + "release_date": "2026-01-22", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5jg6DwBwVPbRtafX2bMXfW" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2uItv6ETouDgXk8HyWOWmk/clip_643061_703061.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5365080, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7qu6i0NNgDSQy76Z3HRZ6S" + }, + "href": "https://api.spotify.com/v1/episodes/7qu6i0NNgDSQy76Z3HRZ6S", + "id": "7qu6i0NNgDSQy76Z3HRZ6S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c7f05ad6605e500a55302ee", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c7f05ad6605e500a55302ee", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c7f05ad6605e500a55302ee", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "RAM prices DESTROYED our computer builds- Safety Third 153", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7qu6i0NNgDSQy76Z3HRZ6S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1VvF0Vr5gU12RuTK53azWX/clip_612629_672629.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3635800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3uNZj71kjRvHqSfRhDuat3" + }, + "href": "https://api.spotify.com/v1/episodes/3uNZj71kjRvHqSfRhDuat3", + "id": "3uNZj71kjRvHqSfRhDuat3", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c9b586110f14bfebfc8d12e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c9b586110f14bfebfc8d12e", + "height": 300, "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c9b586110f14bfebfc8d12e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Confessing Our Worst Childhood Pranks - Safety Third 152", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 }, - { + "type": "episode", + "uri": "spotify:episode:3uNZj71kjRvHqSfRhDuat3" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/73Q1vDOqBIDKeCjni7Vpwy/clip_160811_220811.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed2\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed2\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5826951, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6lhqiOpaAuxilP07sLfuV8" + }, + "href": "https://api.spotify.com/v1/episodes/6lhqiOpaAuxilP07sLfuV8", + "id": "6lhqiOpaAuxilP07sLfuV8", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a7c8e9118ee68825631a8a2fb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f7c8e9118ee68825631a8a2fb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d7c8e9118ee68825631a8a2fb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "I Survived PayMoneyWubby's 24-Hour Torture Stream (And Got PTSD) - Safety Third 151", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6lhqiOpaAuxilP07sLfuV8" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2DjgwqRBurO3mqxJnm4osk/clip_414947_474947.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4026932, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4w4d295F7QwCCy2dCCIVoq" + }, + "href": "https://api.spotify.com/v1/episodes/4w4d295F7QwCCy2dCCIVoq", + "id": "4w4d295F7QwCCy2dCCIVoq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a1caeb53f42c57c5041db2e12", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f1caeb53f42c57c5041db2e12", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d1caeb53f42c57c5041db2e12", "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how far back do we remember - Safety Third 150", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4w4d295F7QwCCy2dCCIVoq" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QfopdIgQr3fvuTLShkCSM/clip_382497_442497.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4417018, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2Xfuh9pem3qCEA5wWIE3mC" + }, + "href": "https://api.spotify.com/v1/episodes/2Xfuh9pem3qCEA5wWIE3mC", + "id": "2Xfuh9pem3qCEA5wWIE3mC", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a76337e64fb02e22fed37928f", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f76337e64fb02e22fed37928f", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d76337e64fb02e22fed37928f", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "even NileRed can\u2019t afford this - Safety Third 149", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2Xfuh9pem3qCEA5wWIE3mC" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0JqVmZxFWOHlCGeE1tOho5/clip_253651_313651.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4553012, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2zh1C31QQj9d4zddWtBX1N" + }, + "href": "https://api.spotify.com/v1/episodes/2zh1C31QQj9d4zddWtBX1N", + "id": "2zh1C31QQj9d4zddWtBX1N", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a1dea658e2ab066895d4cf5bd", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f1dea658e2ab066895d4cf5bd", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d1dea658e2ab066895d4cf5bd", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Why Carbon Nanotubes Are Nearly Impossible to Make - Safety Third 148", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2zh1C31QQj9d4zddWtBX1N" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4aBKEjr3O0sk3Z1P71SuDu/clip_185387_245387.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3794181, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6ilVUUydSRAnaJvjjwNuzt" + }, + "href": "https://api.spotify.com/v1/episodes/6ilVUUydSRAnaJvjjwNuzt", + "id": "6ilVUUydSRAnaJvjjwNuzt", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a0860f82a32b6efecac503e1e", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f0860f82a32b6efecac503e1e", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d0860f82a32b6efecac503e1e", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "solar is a scam - Safety Third 147", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6ilVUUydSRAnaJvjjwNuzt" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lQl1sOEbvAlGKMlAKXP4k/clip_621363_681363.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRedExtra\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRedExtra\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4410697, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4yYkLICPT4hwKiE12ahmaS" + }, + "href": "https://api.spotify.com/v1/episodes/4yYkLICPT4hwKiE12ahmaS", + "id": "4yYkLICPT4hwKiE12ahmaS", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, "width": 64 - } - ], - "is_externally_hosted": false, - "languages": ["en-US"], - "media_type": "audio", - "name": "Safety Third", - "publisher": "Safety Third ", - "type": "show", - "uri": "spotify:show:1Y9ExMgMxoBVrgrfU7u0nD", - "total_episodes": 159, - "episodes": { - "href": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=0&limit=50", - "limit": 50, - "next": "https://api.spotify.com/v1/shows/1Y9ExMgMxoBVrgrfU7u0nD/episodes?offset=50&limit=50", - "offset": 0, - "previous": null, - "total": 159, - "items": [ - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4iiYwCmm1Z7VQYxuYQjVLW/clip_134000_195840.mp3", - "description": "Don't back this Kickstarter: http://kck.st/4qBbxoEPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Don't back this Kickstarter: http://kck.st/4qBbxoE

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4749648, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3TFqlEpcxCgD118RdWy4l6" - }, - "href": "https://api.spotify.com/v1/episodes/3TFqlEpcxCgD118RdWy4l6", - "id": "3TFqlEpcxCgD118RdWy4l6", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We Tried Making a Better Coke - Safety Third 158", - "release_date": "2026-02-19", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3TFqlEpcxCgD118RdWy4l6" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/53aYZXFzw2WFuECEAKgC6m/clip_100000_165360.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069@WilliamOsman2\u2069\u2068@NileRed\u2069Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4190616, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7237hqixNa5Pa1bV5Pak2p" - }, - "href": "https://api.spotify.com/v1/episodes/7237hqixNa5Pa1bV5Pak2p", - "id": "7237hqixNa5Pa1bV5Pak2p", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ae32a1a91e4974bf4cfe752a1", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fe32a1a91e4974bf4cfe752a1", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68de32a1a91e4974bf4cfe752a1", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "how long can we actually keep this up? - Safety Third 157", - "release_date": "2026-02-12", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7237hqixNa5Pa1bV5Pak2p" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QnEB6W3KCZjmozkmrMukR/clip_539000_607200.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u2068@TheBackyardScientist\u2069 @WilliamOsman2\u2069 \u2068@NileRed\u2069 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u2068@TheBackyardScientist\u2069

@WilliamOsman2\u2069

\u2068@NileRed\u2069


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5486976, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2X2dSrYifdwxzNA5I9YGpl" - }, - "href": "https://api.spotify.com/v1/episodes/2X2dSrYifdwxzNA5I9YGpl", - "id": "2X2dSrYifdwxzNA5I9YGpl", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "are you actually angry or just frustrated? - Safety Third 156", - "release_date": "2026-02-05", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2X2dSrYifdwxzNA5I9YGpl" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4RDe7tNjpMBwAN4youDtBM/clip_1137000_1197600.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0\u2068@TheBackyardScientist\u2069\u00a0\u00a0\u2068@WilliamOsman2\u2069\u00a0\u00a0\u2068@NileRed\u2069\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0\u2068@TheBackyardScientist\u2069\u00a0

\u00a0\u2068@WilliamOsman2\u2069\u00a0

\u00a0\u2068@NileRed\u2069\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3047904, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2bA0hdVhjQOR4fwgYwfJK4" - }, - "href": "https://api.spotify.com/v1/episodes/2bA0hdVhjQOR4fwgYwfJK4", - "id": "2bA0hdVhjQOR4fwgYwfJK4", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a8a97f0d163dfdc3020ddc6a4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f8a97f0d163dfdc3020ddc6a4", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d8a97f0d163dfdc3020ddc6a4", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Is your workshop just a storage unit? - Safety Third 155", - "release_date": "2026-01-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2bA0hdVhjQOR4fwgYwfJK4" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7GUYFFkecsDVlychEf2InD/clip_126000_182000.mp3", - "description": "Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUwPatreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Watch \u00a0@LabCoatz_Science\u00a0 recreate Coca Cola here https://youtu.be/TDkH3EbWTYc?si=qLcxjFW1O-mOOIUw


Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5867928, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5jg6DwBwVPbRtafX2bMXfW" - }, - "href": "https://api.spotify.com/v1/episodes/5jg6DwBwVPbRtafX2bMXfW", - "id": "5jg6DwBwVPbRtafX2bMXfW", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "He STOLE Coke's Secret Recipe - Safety Third 154", - "release_date": "2026-01-22", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5jg6DwBwVPbRtafX2bMXfW" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2uItv6ETouDgXk8HyWOWmk/clip_643061_703061.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5365080, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7qu6i0NNgDSQy76Z3HRZ6S" - }, - "href": "https://api.spotify.com/v1/episodes/7qu6i0NNgDSQy76Z3HRZ6S", - "id": "7qu6i0NNgDSQy76Z3HRZ6S", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a7c7f05ad6605e500a55302ee", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f7c7f05ad6605e500a55302ee", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d7c7f05ad6605e500a55302ee", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "RAM prices DESTROYED our computer builds- Safety Third 153", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7qu6i0NNgDSQy76Z3HRZ6S" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1VvF0Vr5gU12RuTK53azWX/clip_612629_672629.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0

Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3635800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3uNZj71kjRvHqSfRhDuat3" - }, - "href": "https://api.spotify.com/v1/episodes/3uNZj71kjRvHqSfRhDuat3", - "id": "3uNZj71kjRvHqSfRhDuat3", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a7c9b586110f14bfebfc8d12e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f7c9b586110f14bfebfc8d12e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d7c9b586110f14bfebfc8d12e", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Confessing Our Worst Childhood Pranks - Safety Third 152", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3uNZj71kjRvHqSfRhDuat3" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/73Q1vDOqBIDKeCjni7Vpwy/clip_160811_220811.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed2\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed2\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5826951, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6lhqiOpaAuxilP07sLfuV8" - }, - "href": "https://api.spotify.com/v1/episodes/6lhqiOpaAuxilP07sLfuV8", - "id": "6lhqiOpaAuxilP07sLfuV8", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a7c8e9118ee68825631a8a2fb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f7c8e9118ee68825631a8a2fb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d7c8e9118ee68825631a8a2fb", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "I Survived PayMoneyWubby's 24-Hour Torture Stream (And Got PTSD) - Safety Third 151", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6lhqiOpaAuxilP07sLfuV8" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2DjgwqRBurO3mqxJnm4osk/clip_414947_474947.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4026932, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4w4d295F7QwCCy2dCCIVoq" - }, - "href": "https://api.spotify.com/v1/episodes/4w4d295F7QwCCy2dCCIVoq", - "id": "4w4d295F7QwCCy2dCCIVoq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a1caeb53f42c57c5041db2e12", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f1caeb53f42c57c5041db2e12", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d1caeb53f42c57c5041db2e12", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "how far back do we remember - Safety Third 150", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4w4d295F7QwCCy2dCCIVoq" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QfopdIgQr3fvuTLShkCSM/clip_382497_442497.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4417018, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2Xfuh9pem3qCEA5wWIE3mC" - }, - "href": "https://api.spotify.com/v1/episodes/2Xfuh9pem3qCEA5wWIE3mC", - "id": "2Xfuh9pem3qCEA5wWIE3mC", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a76337e64fb02e22fed37928f", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f76337e64fb02e22fed37928f", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d76337e64fb02e22fed37928f", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "even NileRed can\u2019t afford this - Safety Third 149", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2Xfuh9pem3qCEA5wWIE3mC" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0JqVmZxFWOHlCGeE1tOho5/clip_253651_313651.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4553012, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2zh1C31QQj9d4zddWtBX1N" - }, - "href": "https://api.spotify.com/v1/episodes/2zh1C31QQj9d4zddWtBX1N", - "id": "2zh1C31QQj9d4zddWtBX1N", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a1dea658e2ab066895d4cf5bd", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f1dea658e2ab066895d4cf5bd", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d1dea658e2ab066895d4cf5bd", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Why Carbon Nanotubes Are Nearly Impossible to Make - Safety Third 148", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2zh1C31QQj9d4zddWtBX1N" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4aBKEjr3O0sk3Z1P71SuDu/clip_185387_245387.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D \u00a0@TheBackyardScientist\u00a0 \u00a0@WilliamOsman2\u00a0 \u00a0@NileRed\u00a0 Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3794181, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6ilVUUydSRAnaJvjjwNuzt" - }, - "href": "https://api.spotify.com/v1/episodes/6ilVUUydSRAnaJvjjwNuzt", - "id": "6ilVUUydSRAnaJvjjwNuzt", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a0860f82a32b6efecac503e1e", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f0860f82a32b6efecac503e1e", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d0860f82a32b6efecac503e1e", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "solar is a scam - Safety Third 147", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6ilVUUydSRAnaJvjjwNuzt" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lQl1sOEbvAlGKMlAKXP4k/clip_621363_681363.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRedExtra\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRedExtra\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4410697, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4yYkLICPT4hwKiE12ahmaS" - }, - "href": "https://api.spotify.com/v1/episodes/4yYkLICPT4hwKiE12ahmaS", - "id": "4yYkLICPT4hwKiE12ahmaS", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "there's an infestation - Safety Third 146", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4yYkLICPT4hwKiE12ahmaS" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3Snl0NRM30ypAv7d983PTP/clip_124425_184425.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@TommyCallaway\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@TommyCallaway\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5904953, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/71lgHMUv6DqIPVSBR0lHIe" - }, - "href": "https://api.spotify.com/v1/episodes/71lgHMUv6DqIPVSBR0lHIe", - "id": "71lgHMUv6DqIPVSBR0lHIe", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a8271d8dab008b881d45a7876", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f8271d8dab008b881d45a7876", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d8271d8dab008b881d45a7876", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "how to make $100000 on youtube - Safety Third 145", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:71lgHMUv6DqIPVSBR0lHIe" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2UN4fJLpsEzfKbXTxpQ5uH/clip_499916_559916.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4753006, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/31Z5wPeZ2QF2ETpX94aTTz" - }, - "href": "https://api.spotify.com/v1/episodes/31Z5wPeZ2QF2ETpX94aTTz", - "id": "31Z5wPeZ2QF2ETpX94aTTz", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aced64cb5f44b398cf1cb0a93", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fced64cb5f44b398cf1cb0a93", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dced64cb5f44b398cf1cb0a93", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We SAVED Will's Farm - Safety Third 144", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:31Z5wPeZ2QF2ETpX94aTTz" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6U2QTlEN4ShUvdV67eRHy3/clip_454599_514599.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5129952, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/57IS2fYCmc0tRR1jtREKXp" - }, - "href": "https://api.spotify.com/v1/episodes/57IS2fYCmc0tRR1jtREKXp", - "id": "57IS2fYCmc0tRR1jtREKXp", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aca97ae44e72b12aafb9d98b9", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fca97ae44e72b12aafb9d98b9", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dca97ae44e72b12aafb9d98b9", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Our Stupid Childhood Inventions - Safety Third 143", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:57IS2fYCmc0tRR1jtREKXp" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KbdRPVyErDuzNwZJ1yc1Z/clip_286965_346965.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4548284, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3m0ohH2FGgFIhyOLnbBc5D" - }, - "href": "https://api.spotify.com/v1/episodes/3m0ohH2FGgFIhyOLnbBc5D", - "id": "3m0ohH2FGgFIhyOLnbBc5D", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a07a2e7c0152f1061053d04f4", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f07a2e7c0152f1061053d04f4", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d07a2e7c0152f1061053d04f4", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "we're back again baby! - Safety Third 142", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3m0ohH2FGgFIhyOLnbBc5D" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2lkbJiYHRe2nK5BIB7ECUH/clip_430502_490502.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4619050, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3Djm1peAXhH2DJAcf5EI4t" - }, - "href": "https://api.spotify.com/v1/episodes/3Djm1peAXhH2DJAcf5EI4t", - "id": "3Djm1peAXhH2DJAcf5EI4t", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aed276654b59a905bfa8d3fdb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fed276654b59a905bfa8d3fdb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68ded276654b59a905bfa8d3fdb", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "How We Keep Getting Through TSA - Safety Third 141", - "release_date": "2026-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3Djm1peAXhH2DJAcf5EI4t" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0SDCE30uIy8sqTgtq2ZsFR/clip_259000_318000.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5121048, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0RGDUnfGOJmsSgoTu6A9wb" - }, - "href": "https://api.spotify.com/v1/episodes/0RGDUnfGOJmsSgoTu6A9wb", - "id": "0RGDUnfGOJmsSgoTu6A9wb", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aaa7ca654e29007b236cf268a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1faa7ca654e29007b236cf268a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68daa7ca654e29007b236cf268a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "What happen to NileRed? - Safety Third 140", - "release_date": "2025-06-19", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0RGDUnfGOJmsSgoTu6A9wb" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2gFA17kTnwBG3krxcFt4O5/clip_430000_494640.mp3", - "description": "\ud83e\udd24Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

🤤



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3700631, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6hh4HTvEggU2CtulBw5Bfd" - }, - "href": "https://api.spotify.com/v1/episodes/6hh4HTvEggU2CtulBw5Bfd", - "id": "6hh4HTvEggU2CtulBw5Bfd", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a24544d9f88e8bea1c4a43541", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f24544d9f88e8bea1c4a43541", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d24544d9f88e8bea1c4a43541", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Gourmet or a Biohazard - Safety Third 139", - "release_date": "2025-06-05", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:6hh4HTvEggU2CtulBw5Bfd" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6z0N1CzQC5HUlD0vuCNdiu/clip_227000_289520.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6014520, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1pBmRheQbSnndzrsyQxcoO" - }, - "href": "https://api.spotify.com/v1/episodes/1pBmRheQbSnndzrsyQxcoO", - "id": "1pBmRheQbSnndzrsyQxcoO", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a9f444dde32e222b2e0ea809a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f9f444dde32e222b2e0ea809a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d9f444dde32e222b2e0ea809a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We Did It In 6 Days - Safety Third 138", - "release_date": "2025-05-29", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1pBmRheQbSnndzrsyQxcoO" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5v1lnveozYoewqMXszJCFZ/clip_442500_502500.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4768368, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4xxuGDc2mV6D4Ilv3Ok8dA" - }, - "href": "https://api.spotify.com/v1/episodes/4xxuGDc2mV6D4Ilv3Ok8dA", - "id": "4xxuGDc2mV6D4Ilv3Ok8dA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aa7871036b390d33b743dacf2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fa7871036b390d33b743dacf2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68da7871036b390d33b743dacf2", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "What's In Water?- Safety Third 137", - "release_date": "2025-05-15", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4xxuGDc2mV6D4Ilv3Ok8dA" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7l2yrS8bujDB96ZesqAabR/clip_636000_702880.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5291760, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0K68py3R90cjUQJiMJypoB" - }, - "href": "https://api.spotify.com/v1/episodes/0K68py3R90cjUQJiMJypoB", - "id": "0K68py3R90cjUQJiMJypoB", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a172a24c4cd98acaa6651f071", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f172a24c4cd98acaa6651f071", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d172a24c4cd98acaa6651f071", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We Investigate the Bee Problem - Safety Third 136", - "release_date": "2025-05-08", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0K68py3R90cjUQJiMJypoB" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3M6RrQbRtxz4nSqTMI9WgH/clip_666000_726080.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5255231, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3NMwNuYdExWcYKmyml7Y9S" - }, - "href": "https://api.spotify.com/v1/episodes/3NMwNuYdExWcYKmyml7Y9S", - "id": "3NMwNuYdExWcYKmyml7Y9S", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a94a8d4c84116774b11869dea", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f94a8d4c84116774b11869dea", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d94a8d4c84116774b11869dea", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Future of Science Videos... - Safety Third 135", - "release_date": "2025-05-01", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3NMwNuYdExWcYKmyml7Y9S" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5aH5s1Jdc7ZECuh5Ur6S93/clip_358000_419240.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5718840, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1a77xkMaa0L6Ry7deZmX7C" - }, - "href": "https://api.spotify.com/v1/episodes/1a77xkMaa0L6Ry7deZmX7C", - "id": "1a77xkMaa0L6Ry7deZmX7C", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a2d89fc55b99736a3f0dc37d2", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f2d89fc55b99736a3f0dc37d2", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d2d89fc55b99736a3f0dc37d2", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Let's Do Dangerous Experiments - Safety Third 134", - "release_date": "2025-04-24", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1a77xkMaa0L6Ry7deZmX7C" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/17gOJyjGswQZ5vivGw6s7L/clip_1088000_1148200.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5144640, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7Iddb7fU6NQK4CVQzg8pRt" - }, - "href": "https://api.spotify.com/v1/episodes/7Iddb7fU6NQK4CVQzg8pRt", - "id": "7Iddb7fU6NQK4CVQzg8pRt", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a677a69719097ce8c3b30a8bc", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f677a69719097ce8c3b30a8bc", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d677a69719097ce8c3b30a8bc", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Getting Away with Crime - Safety Third 133", - "release_date": "2025-04-17", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7Iddb7fU6NQK4CVQzg8pRt" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0h4eqly7xNTOm9rMrfwjEw/clip_344000_407760.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4117583, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3GMMfTQFAKluh2ZCmDBq0B" - }, - "href": "https://api.spotify.com/v1/episodes/3GMMfTQFAKluh2ZCmDBq0B", - "id": "3GMMfTQFAKluh2ZCmDBq0B", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a3a79d75ad1e43fcd54120273", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f3a79d75ad1e43fcd54120273", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d3a79d75ad1e43fcd54120273", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Is Bigger Better? - Safety Third 132", - "release_date": "2025-04-10", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3GMMfTQFAKluh2ZCmDBq0B" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29ABfx7S04owFtgqCxPK76/clip_482000_542360.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5034768, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1e0uQx6quq5Q8pGkBvmI4z" - }, - "href": "https://api.spotify.com/v1/episodes/1e0uQx6quq5Q8pGkBvmI4z", - "id": "1e0uQx6quq5Q8pGkBvmI4z", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We're Not Lovin\u2019 It - Safety Third 131 - Safety Third 131", - "release_date": "2025-04-03", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1e0uQx6quq5Q8pGkBvmI4z" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6mhkoYXxx9lm9Q0mmBulln/clip_100000_164040.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5616576, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/62DQPE6rzL6QubfVmc6wiJ" - }, - "href": "https://api.spotify.com/v1/episodes/62DQPE6rzL6QubfVmc6wiJ", - "id": "62DQPE6rzL6QubfVmc6wiJ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a09dd0918e72f37f4e45e3484", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f09dd0918e72f37f4e45e3484", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d09dd0918e72f37f4e45e3484", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Space is Hard - Safety Third 130", - "release_date": "2025-03-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:62DQPE6rzL6QubfVmc6wiJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4XZFcfqSE1MGgKOOpsAouX/clip_585553_645553.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5608823, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5xbFenzg8j2MMvVSmUnlR2" - }, - "href": "https://api.spotify.com/v1/episodes/5xbFenzg8j2MMvVSmUnlR2", - "id": "5xbFenzg8j2MMvVSmUnlR2", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8a390f4a4fd6167520cbe06250", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1f390f4a4fd6167520cbe06250", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68d390f4a4fd6167520cbe06250", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "NileRed\u2019s Childhood Trauma - Safety Third 129", - "release_date": "2025-03-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5xbFenzg8j2MMvVSmUnlR2" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0ZytdKQ7py9sner1Bh23f6/clip_261000_321880.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5331480, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2W8M0lrvTSd6HM4ByLbVBg" - }, - "href": "https://api.spotify.com/v1/episodes/2W8M0lrvTSd6HM4ByLbVBg", - "id": "2W8M0lrvTSd6HM4ByLbVBg", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac6b7e3a8e1c8b10906f82deb", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc6b7e3a8e1c8b10906f82deb", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc6b7e3a8e1c8b10906f82deb", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Is it good internship? - Safety Third 128", - "release_date": "2025-03-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2W8M0lrvTSd6HM4ByLbVBg" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3CphxvM8FnTjP1NR71NPtn/clip_151690_211690.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/





Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4423368, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1cbSydOSIAElmsZ2wG55YF" - }, - "href": "https://api.spotify.com/v1/episodes/1cbSydOSIAElmsZ2wG55YF", - "id": "1cbSydOSIAElmsZ2wG55YF", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ab618e09100a574e2410b8075", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fb618e09100a574e2410b8075", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68db618e09100a574e2410b8075", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Our best business idea yet - Safety Third 127", - "release_date": "2025-03-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:1cbSydOSIAElmsZ2wG55YF" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2zwJ2nHFxrdBqVCklWH6rM/clip_615000_674000.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5128248, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7nkWaQCTwCl0Dy7KQzVKgJ" - }, - "href": "https://api.spotify.com/v1/episodes/7nkWaQCTwCl0Dy7KQzVKgJ", - "id": "7nkWaQCTwCl0Dy7KQzVKgJ", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8aaeca1df66b68db2b6ae8eb55", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1faeca1df66b68db2b6ae8eb55", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68daeca1df66b68db2b6ae8eb55", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "NileRed - Safety Third 126", - "release_date": "2025-02-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7nkWaQCTwCl0Dy7KQzVKgJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4l0px7lf31GG4zv0VXUSxL/clip_268000_318000.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5082240, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/316huXjTjaHz3sMZt77F2S" - }, - "href": "https://api.spotify.com/v1/episodes/316huXjTjaHz3sMZt77F2S", - "id": "316huXjTjaHz3sMZt77F2S", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8adcf056832b32a240b38888fe", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fdcf056832b32a240b38888fe", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68ddcf056832b32a240b38888fe", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Hiding NSFW Material in Optical Illusions - Safety Third 125", - "release_date": "2025-02-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:316huXjTjaHz3sMZt77F2S" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2KiZkHl0EHfdJnXsR5Q8Hy/clip_788000_848120.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3842933, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/70DaOV8Y2u28R5OCbMGq40" - }, - "href": "https://api.spotify.com/v1/episodes/70DaOV8Y2u28R5OCbMGq40", - "id": "70DaOV8Y2u28R5OCbMGq40", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "How NileRed Almost Lost a Video - Safety Third 124", - "release_date": "2025-02-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:70DaOV8Y2u28R5OCbMGq40" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4JJ8gU3d9HSzVglb3Zq99R/clip_110000_169600.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4225946, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7HmmkFKjEns2aALdxmBrRL" - }, - "href": "https://api.spotify.com/v1/episodes/7HmmkFKjEns2aALdxmBrRL", - "id": "7HmmkFKjEns2aALdxmBrRL", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "We Have Problems - Safety Third 123", - "release_date": "2025-02-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7HmmkFKjEns2aALdxmBrRL" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ESsCWp7leiVH7XQu4Yi2l/clip_311257_371257.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5018209, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/56kSgt0rYKVILw7IMjqi5S" - }, - "href": "https://api.spotify.com/v1/episodes/56kSgt0rYKVILw7IMjqi5S", - "id": "56kSgt0rYKVILw7IMjqi5S", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Someone Keeps Pulling Money Out of His Bank Account - Safety Third 122", - "release_date": "2025-01-30", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:56kSgt0rYKVILw7IMjqi5S" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1Uzu7dEcUjqdbAzsFEVFXy/clip_271000_331000.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4313258, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4a1OnVZout7utVcxNJLDeA" - }, - "href": "https://api.spotify.com/v1/episodes/4a1OnVZout7utVcxNJLDeA", - "id": "4a1OnVZout7utVcxNJLDeA", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "NileRed's Most Dangerous Machine - Safety Third 121", - "release_date": "2025-01-23", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:4a1OnVZout7utVcxNJLDeA" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/66Ml5is5EqhjI64imKtOpF/clip_489000_550040.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4364976, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3zrPDefh3l6bIswzU3KbkB" - }, - "href": "https://api.spotify.com/v1/episodes/3zrPDefh3l6bIswzU3KbkB", - "id": "3zrPDefh3l6bIswzU3KbkB", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "More Machines, More Problems - Safety Third 120", - "release_date": "2025-01-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3zrPDefh3l6bIswzU3KbkB" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3690161, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" - }, - "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", - "id": "3o0RYoo5iOMKSmEbunsbvW", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "My Squirrel Has Brain Damage - Safety Third 119", - "release_date": "2024-07-26", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 90000 - }, - "type": "episode", - "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6msRFio3561me28DofTad7/clip_570865_630865.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5690591, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj" - }, - "href": "https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj", - "id": "7CbsFHQq8ljztiUSGw46Fj", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Math Haters vs Math Nerd - Safety Third 118", - "release_date": "2024-07-18", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7CbsFHQq8ljztiUSGw46Fj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59kIitZiPVjT9KScqbQ4ud/clip_287735_347735.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5808720, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk" - }, - "href": "https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk", - "id": "7I6SU4lQbmxipsRNN5hGGk", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117", - "release_date": "2024-07-11", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7I6SU4lQbmxipsRNN5hGGk" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2bqHwGWLlsEMSNIg59Odlv/clip_135559_195559.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5290728, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe" - }, - "href": "https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe", - "id": "5RTOrKLydGUJxiebaBbEbe", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "NileRed's Most Important Employee - Safety Third 116", - "release_date": "2024-07-04", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5RTOrKLydGUJxiebaBbEbe" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7uj2npDbrFuQ1HWLuPKeo5/clip_236465_296465.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6685800, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0" - }, - "href": "https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0", - "id": "2cxiMfCIlOPiMQhsdRMKG0", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "How Real Engineering Got Fired - Safety Third 115", - "release_date": "2024-06-27", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2cxiMfCIlOPiMQhsdRMKG0" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6iuiZ3W7DV0DUl9dvK5tF1/clip_439813_499813.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5509825, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR" - }, - "href": "https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR", - "id": "2jALMGr63flWEdRl8NxvQR", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Thin Mint Zyns - Safety Third 114", - "release_date": "2024-06-20", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:2jALMGr63flWEdRl8NxvQR" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0KgFGEHvoKXPBDVJurNrJA/clip_303096_363096.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2731702, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj" - }, - "href": "https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj", - "id": "0Rr3sI7wj3VaNQFPhalCVj", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Live from Open Sauce 2023 - Safety Third 113", - "release_date": "2024-06-13", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:0Rr3sI7wj3VaNQFPhalCVj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7A38OhaLYIZK55NEw4BHQu/clip_552910_612910.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5192437, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4" - }, - "href": "https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4", - "id": "3XKOIVuGVzzEPNnlyz7PX4", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "He Tried Hiring a Child Bartender - Safety Third 112", - "release_date": "2024-06-06", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3XKOIVuGVzzEPNnlyz7PX4" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0eTBmBv351dUpUjip2VOnB/clip_489832_549832.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4338191, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb" - }, - "href": "https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb", - "id": "5qGMPBYEW5Izdm9W5F7PSb", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Ted Nivison Has a Disgusting Keyboard - Safety Third 111", - "release_date": "2024-05-30", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:5qGMPBYEW5Izdm9W5F7PSb" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3SEynoolqW895KB999YBU8/clip_433955_493955.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 5367528, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq" - }, - "href": "https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq", - "id": "7G5CGTUvtSpLP67O4cYAWq", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Worst Parts of Dating a Mad Scientist - Safety Third 110", - "release_date": "2024-05-23", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:7G5CGTUvtSpLP67O4cYAWq" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0jxt3zWP6S5HHnMpoCtdNn/clip_452775_512775.mp3", - "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 6502817, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p" - }, - "href": "https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p", - "id": "3cJk5Cfvpkrdf9hxY5Hi3p", - "images": [ - { - "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", - "height": 640, - "width": 640 - }, - { - "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", - "height": 300, - "width": 300 - }, - { - "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", - "height": 64, - "width": 64 - } - ], - "is_externally_hosted": true, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Confronting His Old Boss - Safety Third 109", - "release_date": "2024-05-16", - "release_date_precision": "day", - "resume_point": { - "fully_played": false, - "resume_position_ms": 0 - }, - "type": "episode", - "uri": "spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p" - } - ] - } + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "there's an infestation - Safety Third 146", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4yYkLICPT4hwKiE12ahmaS" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3Snl0NRM30ypAv7d983PTP/clip_124425_184425.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@TommyCallaway\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@TommyCallaway\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5904953, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/71lgHMUv6DqIPVSBR0lHIe" + }, + "href": "https://api.spotify.com/v1/episodes/71lgHMUv6DqIPVSBR0lHIe", + "id": "71lgHMUv6DqIPVSBR0lHIe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a8271d8dab008b881d45a7876", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f8271d8dab008b881d45a7876", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d8271d8dab008b881d45a7876", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "how to make $100000 on youtube - Safety Third 145", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:71lgHMUv6DqIPVSBR0lHIe" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2UN4fJLpsEzfKbXTxpQ5uH/clip_499916_559916.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4753006, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/31Z5wPeZ2QF2ETpX94aTTz" + }, + "href": "https://api.spotify.com/v1/episodes/31Z5wPeZ2QF2ETpX94aTTz", + "id": "31Z5wPeZ2QF2ETpX94aTTz", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aced64cb5f44b398cf1cb0a93", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fced64cb5f44b398cf1cb0a93", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dced64cb5f44b398cf1cb0a93", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We SAVED Will's Farm - Safety Third 144", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:31Z5wPeZ2QF2ETpX94aTTz" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6U2QTlEN4ShUvdV67eRHy3/clip_454599_514599.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5129952, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/57IS2fYCmc0tRR1jtREKXp" + }, + "href": "https://api.spotify.com/v1/episodes/57IS2fYCmc0tRR1jtREKXp", + "id": "57IS2fYCmc0tRR1jtREKXp", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aca97ae44e72b12aafb9d98b9", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fca97ae44e72b12aafb9d98b9", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dca97ae44e72b12aafb9d98b9", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Our Stupid Childhood Inventions - Safety Third 143", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:57IS2fYCmc0tRR1jtREKXp" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KbdRPVyErDuzNwZJ1yc1Z/clip_286965_346965.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4548284, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3m0ohH2FGgFIhyOLnbBc5D" + }, + "href": "https://api.spotify.com/v1/episodes/3m0ohH2FGgFIhyOLnbBc5D", + "id": "3m0ohH2FGgFIhyOLnbBc5D", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a07a2e7c0152f1061053d04f4", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f07a2e7c0152f1061053d04f4", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d07a2e7c0152f1061053d04f4", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "we're back again baby! - Safety Third 142", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3m0ohH2FGgFIhyOLnbBc5D" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2lkbJiYHRe2nK5BIB7ECUH/clip_430502_490502.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopFollow Safety Third on Twitter: https://twitter.com/SafetyThirdPodFollow Safety Third on Instagram: https://instagram.com/safetythirdofficialCheck out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304AListen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdgListen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D\u00a0@TheBackyardScientist\u00a0\u00a0@WilliamOsman2\u00a0\u00a0@NileRed\u00a0Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube \"Scientists\". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop


Follow Safety Third on Twitter: https://twitter.com/SafetyThirdPod

Follow Safety Third on Instagram: https://instagram.com/safetythirdofficial

Check out our clips channel: https://www.youtube.com/channel/UC1LFFd9I2Ooza4EL0aA304A


Listen on Spotify: https://open.spotify.com/show/1Y9ExMgMxoBVrgrfU7u0nD?si=1HKwgnSNRCqjeijlSVNxdg

Listen on Apple Podcasts: https://podcasts.apple.com/us/podcast/safety-third/id1570503392

Listen on Google Podcasts: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tL2M2ZDJlODY5LTIyYWUtNGU2OC1iODhlLWUxOTU3ZDA3MGQzYQ%3D%3D


\u00a0@TheBackyardScientist\u00a0

\u00a0@WilliamOsman2\u00a0

\u00a0@NileRed\u00a0


Safety Third is a weekly show hosted by William Osman, NileRed, The Backyard Scientist, Allen Pan and a couple other YouTube "Scientists". Sometimes we have guests, sometimes it's just us, but always: safety is our number three priority.



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4619050, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3Djm1peAXhH2DJAcf5EI4t" + }, + "href": "https://api.spotify.com/v1/episodes/3Djm1peAXhH2DJAcf5EI4t", + "id": "3Djm1peAXhH2DJAcf5EI4t", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aed276654b59a905bfa8d3fdb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fed276654b59a905bfa8d3fdb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68ded276654b59a905bfa8d3fdb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How We Keep Getting Through TSA - Safety Third 141", + "release_date": "2026-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3Djm1peAXhH2DJAcf5EI4t" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0SDCE30uIy8sqTgtq2ZsFR/clip_259000_318000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5121048, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0RGDUnfGOJmsSgoTu6A9wb" + }, + "href": "https://api.spotify.com/v1/episodes/0RGDUnfGOJmsSgoTu6A9wb", + "id": "0RGDUnfGOJmsSgoTu6A9wb", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aaa7ca654e29007b236cf268a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1faa7ca654e29007b236cf268a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68daa7ca654e29007b236cf268a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "What happen to NileRed? - Safety Third 140", + "release_date": "2025-06-19", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0RGDUnfGOJmsSgoTu6A9wb" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2gFA17kTnwBG3krxcFt4O5/clip_430000_494640.mp3", + "description": "\ud83e\udd24Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

🤤



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3700631, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6hh4HTvEggU2CtulBw5Bfd" + }, + "href": "https://api.spotify.com/v1/episodes/6hh4HTvEggU2CtulBw5Bfd", + "id": "6hh4HTvEggU2CtulBw5Bfd", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a24544d9f88e8bea1c4a43541", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f24544d9f88e8bea1c4a43541", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d24544d9f88e8bea1c4a43541", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Gourmet or a Biohazard - Safety Third 139", + "release_date": "2025-06-05", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:6hh4HTvEggU2CtulBw5Bfd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6z0N1CzQC5HUlD0vuCNdiu/clip_227000_289520.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6014520, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1pBmRheQbSnndzrsyQxcoO" + }, + "href": "https://api.spotify.com/v1/episodes/1pBmRheQbSnndzrsyQxcoO", + "id": "1pBmRheQbSnndzrsyQxcoO", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a9f444dde32e222b2e0ea809a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f9f444dde32e222b2e0ea809a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d9f444dde32e222b2e0ea809a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Did It In 6 Days - Safety Third 138", + "release_date": "2025-05-29", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1pBmRheQbSnndzrsyQxcoO" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5v1lnveozYoewqMXszJCFZ/clip_442500_502500.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4768368, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4xxuGDc2mV6D4Ilv3Ok8dA" + }, + "href": "https://api.spotify.com/v1/episodes/4xxuGDc2mV6D4Ilv3Ok8dA", + "id": "4xxuGDc2mV6D4Ilv3Ok8dA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aa7871036b390d33b743dacf2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fa7871036b390d33b743dacf2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68da7871036b390d33b743dacf2", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "What's In Water?- Safety Third 137", + "release_date": "2025-05-15", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4xxuGDc2mV6D4Ilv3Ok8dA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7l2yrS8bujDB96ZesqAabR/clip_636000_702880.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5291760, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0K68py3R90cjUQJiMJypoB" + }, + "href": "https://api.spotify.com/v1/episodes/0K68py3R90cjUQJiMJypoB", + "id": "0K68py3R90cjUQJiMJypoB", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a172a24c4cd98acaa6651f071", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f172a24c4cd98acaa6651f071", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d172a24c4cd98acaa6651f071", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Investigate the Bee Problem - Safety Third 136", + "release_date": "2025-05-08", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0K68py3R90cjUQJiMJypoB" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3M6RrQbRtxz4nSqTMI9WgH/clip_666000_726080.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5255231, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3NMwNuYdExWcYKmyml7Y9S" + }, + "href": "https://api.spotify.com/v1/episodes/3NMwNuYdExWcYKmyml7Y9S", + "id": "3NMwNuYdExWcYKmyml7Y9S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a94a8d4c84116774b11869dea", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f94a8d4c84116774b11869dea", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d94a8d4c84116774b11869dea", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Future of Science Videos... - Safety Third 135", + "release_date": "2025-05-01", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3NMwNuYdExWcYKmyml7Y9S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5aH5s1Jdc7ZECuh5Ur6S93/clip_358000_419240.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5718840, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1a77xkMaa0L6Ry7deZmX7C" + }, + "href": "https://api.spotify.com/v1/episodes/1a77xkMaa0L6Ry7deZmX7C", + "id": "1a77xkMaa0L6Ry7deZmX7C", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a2d89fc55b99736a3f0dc37d2", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f2d89fc55b99736a3f0dc37d2", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d2d89fc55b99736a3f0dc37d2", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Let's Do Dangerous Experiments - Safety Third 134", + "release_date": "2025-04-24", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1a77xkMaa0L6Ry7deZmX7C" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/17gOJyjGswQZ5vivGw6s7L/clip_1088000_1148200.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5144640, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7Iddb7fU6NQK4CVQzg8pRt" + }, + "href": "https://api.spotify.com/v1/episodes/7Iddb7fU6NQK4CVQzg8pRt", + "id": "7Iddb7fU6NQK4CVQzg8pRt", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a677a69719097ce8c3b30a8bc", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f677a69719097ce8c3b30a8bc", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d677a69719097ce8c3b30a8bc", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Getting Away with Crime - Safety Third 133", + "release_date": "2025-04-17", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7Iddb7fU6NQK4CVQzg8pRt" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0h4eqly7xNTOm9rMrfwjEw/clip_344000_407760.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4117583, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3GMMfTQFAKluh2ZCmDBq0B" + }, + "href": "https://api.spotify.com/v1/episodes/3GMMfTQFAKluh2ZCmDBq0B", + "id": "3GMMfTQFAKluh2ZCmDBq0B", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a3a79d75ad1e43fcd54120273", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f3a79d75ad1e43fcd54120273", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d3a79d75ad1e43fcd54120273", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is Bigger Better? - Safety Third 132", + "release_date": "2025-04-10", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3GMMfTQFAKluh2ZCmDBq0B" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29ABfx7S04owFtgqCxPK76/clip_482000_542360.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5034768, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1e0uQx6quq5Q8pGkBvmI4z" + }, + "href": "https://api.spotify.com/v1/episodes/1e0uQx6quq5Q8pGkBvmI4z", + "id": "1e0uQx6quq5Q8pGkBvmI4z", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We're Not Lovin\u2019 It - Safety Third 131 - Safety Third 131", + "release_date": "2025-04-03", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1e0uQx6quq5Q8pGkBvmI4z" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6mhkoYXxx9lm9Q0mmBulln/clip_100000_164040.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5616576, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/62DQPE6rzL6QubfVmc6wiJ" + }, + "href": "https://api.spotify.com/v1/episodes/62DQPE6rzL6QubfVmc6wiJ", + "id": "62DQPE6rzL6QubfVmc6wiJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a09dd0918e72f37f4e45e3484", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f09dd0918e72f37f4e45e3484", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d09dd0918e72f37f4e45e3484", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Space is Hard - Safety Third 130", + "release_date": "2025-03-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:62DQPE6rzL6QubfVmc6wiJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4XZFcfqSE1MGgKOOpsAouX/clip_585553_645553.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5608823, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5xbFenzg8j2MMvVSmUnlR2" + }, + "href": "https://api.spotify.com/v1/episodes/5xbFenzg8j2MMvVSmUnlR2", + "id": "5xbFenzg8j2MMvVSmUnlR2", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8a390f4a4fd6167520cbe06250", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1f390f4a4fd6167520cbe06250", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68d390f4a4fd6167520cbe06250", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed\u2019s Childhood Trauma - Safety Third 129", + "release_date": "2025-03-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5xbFenzg8j2MMvVSmUnlR2" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0ZytdKQ7py9sner1Bh23f6/clip_261000_321880.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5331480, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2W8M0lrvTSd6HM4ByLbVBg" + }, + "href": "https://api.spotify.com/v1/episodes/2W8M0lrvTSd6HM4ByLbVBg", + "id": "2W8M0lrvTSd6HM4ByLbVBg", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac6b7e3a8e1c8b10906f82deb", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc6b7e3a8e1c8b10906f82deb", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc6b7e3a8e1c8b10906f82deb", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Is it good internship? - Safety Third 128", + "release_date": "2025-03-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2W8M0lrvTSd6HM4ByLbVBg" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3CphxvM8FnTjP1NR71NPtn/clip_151690_211690.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/





Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4423368, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1cbSydOSIAElmsZ2wG55YF" + }, + "href": "https://api.spotify.com/v1/episodes/1cbSydOSIAElmsZ2wG55YF", + "id": "1cbSydOSIAElmsZ2wG55YF", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ab618e09100a574e2410b8075", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fb618e09100a574e2410b8075", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68db618e09100a574e2410b8075", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Our best business idea yet - Safety Third 127", + "release_date": "2025-03-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:1cbSydOSIAElmsZ2wG55YF" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2zwJ2nHFxrdBqVCklWH6rM/clip_615000_674000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5128248, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7nkWaQCTwCl0Dy7KQzVKgJ" + }, + "href": "https://api.spotify.com/v1/episodes/7nkWaQCTwCl0Dy7KQzVKgJ", + "id": "7nkWaQCTwCl0Dy7KQzVKgJ", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8aaeca1df66b68db2b6ae8eb55", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1faeca1df66b68db2b6ae8eb55", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68daeca1df66b68db2b6ae8eb55", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed - Safety Third 126", + "release_date": "2025-02-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7nkWaQCTwCl0Dy7KQzVKgJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4l0px7lf31GG4zv0VXUSxL/clip_268000_318000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5082240, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/316huXjTjaHz3sMZt77F2S" + }, + "href": "https://api.spotify.com/v1/episodes/316huXjTjaHz3sMZt77F2S", + "id": "316huXjTjaHz3sMZt77F2S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8adcf056832b32a240b38888fe", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fdcf056832b32a240b38888fe", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68ddcf056832b32a240b38888fe", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Hiding NSFW Material in Optical Illusions - Safety Third 125", + "release_date": "2025-02-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:316huXjTjaHz3sMZt77F2S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2KiZkHl0EHfdJnXsR5Q8Hy/clip_788000_848120.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3842933, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/70DaOV8Y2u28R5OCbMGq40" + }, + "href": "https://api.spotify.com/v1/episodes/70DaOV8Y2u28R5OCbMGq40", + "id": "70DaOV8Y2u28R5OCbMGq40", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How NileRed Almost Lost a Video - Safety Third 124", + "release_date": "2025-02-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:70DaOV8Y2u28R5OCbMGq40" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4JJ8gU3d9HSzVglb3Zq99R/clip_110000_169600.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4225946, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7HmmkFKjEns2aALdxmBrRL" + }, + "href": "https://api.spotify.com/v1/episodes/7HmmkFKjEns2aALdxmBrRL", + "id": "7HmmkFKjEns2aALdxmBrRL", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "We Have Problems - Safety Third 123", + "release_date": "2025-02-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7HmmkFKjEns2aALdxmBrRL" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ESsCWp7leiVH7XQu4Yi2l/clip_311257_371257.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5018209, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/56kSgt0rYKVILw7IMjqi5S" + }, + "href": "https://api.spotify.com/v1/episodes/56kSgt0rYKVILw7IMjqi5S", + "id": "56kSgt0rYKVILw7IMjqi5S", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Someone Keeps Pulling Money Out of His Bank Account - Safety Third 122", + "release_date": "2025-01-30", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:56kSgt0rYKVILw7IMjqi5S" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1Uzu7dEcUjqdbAzsFEVFXy/clip_271000_331000.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4313258, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4a1OnVZout7utVcxNJLDeA" + }, + "href": "https://api.spotify.com/v1/episodes/4a1OnVZout7utVcxNJLDeA", + "id": "4a1OnVZout7utVcxNJLDeA", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed's Most Dangerous Machine - Safety Third 121", + "release_date": "2025-01-23", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:4a1OnVZout7utVcxNJLDeA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/66Ml5is5EqhjI64imKtOpF/clip_489000_550040.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4364976, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3zrPDefh3l6bIswzU3KbkB" + }, + "href": "https://api.spotify.com/v1/episodes/3zrPDefh3l6bIswzU3KbkB", + "id": "3zrPDefh3l6bIswzU3KbkB", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "More Machines, More Problems - Safety Third 120", + "release_date": "2025-01-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3zrPDefh3l6bIswzU3KbkB" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/06lRxUmh8UNVTByuyxLYqh/clip_132296_192296.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3690161, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3o0RYoo5iOMKSmEbunsbvW" + }, + "href": "https://api.spotify.com/v1/episodes/3o0RYoo5iOMKSmEbunsbvW", + "id": "3o0RYoo5iOMKSmEbunsbvW", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Squirrel Has Brain Damage - Safety Third 119", + "release_date": "2024-07-26", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 90000 + }, + "type": "episode", + "uri": "spotify:episode:3o0RYoo5iOMKSmEbunsbvW" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6msRFio3561me28DofTad7/clip_570865_630865.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5690591, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7CbsFHQq8ljztiUSGw46Fj" + }, + "href": "https://api.spotify.com/v1/episodes/7CbsFHQq8ljztiUSGw46Fj", + "id": "7CbsFHQq8ljztiUSGw46Fj", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Math Haters vs Math Nerd - Safety Third 118", + "release_date": "2024-07-18", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7CbsFHQq8ljztiUSGw46Fj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59kIitZiPVjT9KScqbQ4ud/clip_287735_347735.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5808720, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7I6SU4lQbmxipsRNN5hGGk" + }, + "href": "https://api.spotify.com/v1/episodes/7I6SU4lQbmxipsRNN5hGGk", + "id": "7I6SU4lQbmxipsRNN5hGGk", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Dr. Disrespect is Not Beating The Drake Allegations - Safety Third 117", + "release_date": "2024-07-11", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7I6SU4lQbmxipsRNN5hGGk" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2bqHwGWLlsEMSNIg59Odlv/clip_135559_195559.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5290728, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5RTOrKLydGUJxiebaBbEbe" + }, + "href": "https://api.spotify.com/v1/episodes/5RTOrKLydGUJxiebaBbEbe", + "id": "5RTOrKLydGUJxiebaBbEbe", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "NileRed's Most Important Employee - Safety Third 116", + "release_date": "2024-07-04", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5RTOrKLydGUJxiebaBbEbe" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7uj2npDbrFuQ1HWLuPKeo5/clip_236465_296465.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6685800, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2cxiMfCIlOPiMQhsdRMKG0" + }, + "href": "https://api.spotify.com/v1/episodes/2cxiMfCIlOPiMQhsdRMKG0", + "id": "2cxiMfCIlOPiMQhsdRMKG0", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "How Real Engineering Got Fired - Safety Third 115", + "release_date": "2024-06-27", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2cxiMfCIlOPiMQhsdRMKG0" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6iuiZ3W7DV0DUl9dvK5tF1/clip_439813_499813.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5509825, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2jALMGr63flWEdRl8NxvQR" + }, + "href": "https://api.spotify.com/v1/episodes/2jALMGr63flWEdRl8NxvQR", + "id": "2jALMGr63flWEdRl8NxvQR", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Thin Mint Zyns - Safety Third 114", + "release_date": "2024-06-20", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:2jALMGr63flWEdRl8NxvQR" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0KgFGEHvoKXPBDVJurNrJA/clip_303096_363096.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2731702, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0Rr3sI7wj3VaNQFPhalCVj" + }, + "href": "https://api.spotify.com/v1/episodes/0Rr3sI7wj3VaNQFPhalCVj", + "id": "0Rr3sI7wj3VaNQFPhalCVj", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Live from Open Sauce 2023 - Safety Third 113", + "release_date": "2024-06-13", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:0Rr3sI7wj3VaNQFPhalCVj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7A38OhaLYIZK55NEw4BHQu/clip_552910_612910.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5192437, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3XKOIVuGVzzEPNnlyz7PX4" + }, + "href": "https://api.spotify.com/v1/episodes/3XKOIVuGVzzEPNnlyz7PX4", + "id": "3XKOIVuGVzzEPNnlyz7PX4", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "He Tried Hiring a Child Bartender - Safety Third 112", + "release_date": "2024-06-06", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3XKOIVuGVzzEPNnlyz7PX4" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0eTBmBv351dUpUjip2VOnB/clip_489832_549832.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4338191, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5qGMPBYEW5Izdm9W5F7PSb" + }, + "href": "https://api.spotify.com/v1/episodes/5qGMPBYEW5Izdm9W5F7PSb", + "id": "5qGMPBYEW5Izdm9W5F7PSb", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Ted Nivison Has a Disgusting Keyboard - Safety Third 111", + "release_date": "2024-05-30", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:5qGMPBYEW5Izdm9W5F7PSb" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3SEynoolqW895KB999YBU8/clip_433955_493955.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 5367528, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7G5CGTUvtSpLP67O4cYAWq" + }, + "href": "https://api.spotify.com/v1/episodes/7G5CGTUvtSpLP67O4cYAWq", + "id": "7G5CGTUvtSpLP67O4cYAWq", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Worst Parts of Dating a Mad Scientist - Safety Third 110", + "release_date": "2024-05-23", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:7G5CGTUvtSpLP67O4cYAWq" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0jxt3zWP6S5HHnMpoCtdNn/clip_452775_512775.mp3", + "description": "Patreon: https://www.patreon.com/safetythirdMerch: https://safetythird.shopYouTube: https://www.youtube.com/@safetythird/Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "html_description": "

Patreon: https://www.patreon.com/safetythird

Merch: https://safetythird.shop

YouTube: https://www.youtube.com/@safetythird/



Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 6502817, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3cJk5Cfvpkrdf9hxY5Hi3p" + }, + "href": "https://api.spotify.com/v1/episodes/3cJk5Cfvpkrdf9hxY5Hi3p", + "id": "3cJk5Cfvpkrdf9hxY5Hi3p", + "images": [ + { + "url": "https://i.scdn.co/image/ab6765630000ba8ac7bedd27a4413b1abf926d8a", + "height": 640, + "width": 640 + }, + { + "url": "https://i.scdn.co/image/ab67656300005f1fc7bedd27a4413b1abf926d8a", + "height": 300, + "width": 300 + }, + { + "url": "https://i.scdn.co/image/ab6765630000f68dc7bedd27a4413b1abf926d8a", + "height": 64, + "width": 64 + } + ], + "is_externally_hosted": true, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Confronting His Old Boss - Safety Third 109", + "release_date": "2024-05-16", + "release_date_precision": "day", + "resume_point": { + "fully_played": false, + "resume_position_ms": 0 + }, + "type": "episode", + "uri": "spotify:episode:3cJk5Cfvpkrdf9hxY5Hi3p" + } + ] + } } diff --git a/tests/fixtures/show_episodes.json b/tests/fixtures/show_episodes.json index ad8c112..b825dd3 100644 --- a/tests/fixtures/show_episodes.json +++ b/tests/fixtures/show_episodes.json @@ -1,1882 +1,1882 @@ { - "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=0&limit=48", - "items": [ - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ZMPQqrY7A7LNKI7dwuGil/clip_452960_512960.mp3", - "description": "The Great War of 2077 and how the Fallout world diverged from our own. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2193893, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU" - }, - "href": "https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU", - "html_description": "

The Great War of 2077 and how the Fallout world diverged from our own.

Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3ssmxnilHYaKhwRWoBGMbU", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a224b816136e4325c58a7c15b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f224b816136e4325c58a7c15b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d224b816136e4325c58a7c15b", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Great War - Fallout Lorecast EP 1", - "release_date": "2019-01-09", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3ssmxnilHYaKhwRWoBGMbU" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dnqUE3bfxuhGmFbMPogR5/clip_183364_243364.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2472333, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03" - }, - "href": "https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1bbj9aqeeZ3UMUlcWN0S03", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2a60efcce283f3eebea03b01", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2a60efcce283f3eebea03b01", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2a60efcce283f3eebea03b01", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Who Dropped the First Bomb?", - "release_date": "2019-01-15", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1bbj9aqeeZ3UMUlcWN0S03" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29Xq81kppwk8whpFIdUFrM/clip_384506_444506.mp3", - "description": "The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2263640, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0" - }, - "href": "https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0", - "html_description": "

The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4zui8zWBisCfnTkZ1vgIc0", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a15b2cb1cf646a9b161d1226b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f15b2cb1cf646a9b161d1226b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d15b2cb1cf646a9b161d1226b", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault-Tec Corporation", - "release_date": "2019-01-22", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4zui8zWBisCfnTkZ1vgIc0" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2Gl0P5Eit50XryFyCAGwG5/clip_202281_262281.mp3", - "description": "Most of the vaults are terrible, this one is ghoulish.Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 520044, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF" - }, - "href": "https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF", - "html_description": "

Most of the vaults are terrible, this one is ghoulish.

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "7wH4iaoceRIympxiLVZPHF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aace3770451596db4137aa9e5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1face3770451596db4137aa9e5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dace3770451596db4137aa9e5", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 3 A Fiendish Finish", - "release_date": "2019-01-24", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:7wH4iaoceRIympxiLVZPHF" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/615513Vr8mT2vIfzKyE07J/clip_652466_712466.mp3", - "description": "The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 814027, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl" - }, - "href": "https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl", - "html_description": "

The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4Z2MUOz9GBHzHsEIAc5Ltl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a13d0eefc4d146b76eea15d67", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f13d0eefc4d146b76eea15d67", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d13d0eefc4d146b76eea15d67", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 8 & Vault City", - "release_date": "2019-01-26", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1IU4s7yN8BguHeSYGtsVhN/clip_132961_192961.mp3", - "description": "The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2312124, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V" - }, - "href": "https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V", - "html_description": "

The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "24IzdUok36xLkgQEjOjS6V", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a0c6fc7fba3ac1ee8579693db", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f0c6fc7fba3ac1ee8579693db", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d0c6fc7fba3ac1ee8579693db", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Brotherhood of Steel (Origin)", - "release_date": "2019-01-28", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:24IzdUok36xLkgQEjOjS6V" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3U6ehsNGxMpR6NppP8Sv1t/clip_404185_464185.mp3", - "description": "The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 833097, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX" - }, - "href": "https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX", - "html_description": "

The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "6fUziggVu74s6JwZ0lsIjX", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a177e9739e349a411d3feaeb8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f177e9739e349a411d3feaeb8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d177e9739e349a411d3feaeb8", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 11 The Sacrifice", - "release_date": "2019-01-31", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:6fUziggVu74s6JwZ0lsIjX" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5t7Bbh0PeOT51HG8TKU6d2/clip_131424_191424.mp3", - "description": "The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 549668, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx" - }, - "href": "https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx", - "html_description": "

The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1pYEeMveLHGbbIo10G34dx", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac219ed826eed5a53e8630fd1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc219ed826eed5a53e8630fd1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc219ed826eed5a53e8630fd1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 12 A Ghoulish Experience", - "release_date": "2019-02-02", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1pYEeMveLHGbbIo10G34dx" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2MmgcnXeIBQbYGvS6U77Oa/clip_178564_238564.mp3", - "description": "The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2096979, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl" - }, - "href": "https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl", - "html_description": "

The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1h69SINnBwMCqfEXjPAVIl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a8bc610b5319ed5d7174131af", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f8bc610b5319ed5d7174131af", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d8bc610b5319ed5d7174131af", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Origin of the Enclave", - "release_date": "2019-02-04", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1h69SINnBwMCqfEXjPAVIl" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KWEyZ1ucu9JBOUOBwJxYp/clip_147647_207647.mp3", - "description": "The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1026089, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO" - }, - "href": "https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO", - "html_description": "

The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "33UquUg4oftJ4ereH4nrNO", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a409536212a26657ac7eefa5a", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f409536212a26657ac7eefa5a", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d409536212a26657ac7eefa5a", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 13 & Intelligent Deathclaws", - "release_date": "2019-02-07", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:33UquUg4oftJ4ereH4nrNO" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3bEayi2Mx8F1bq2dFbzLSv/clip_417827_477827.mp3", - "description": "Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2362592, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er" - }, - "href": "https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er", - "html_description": "

Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5nkbQDDCKSH4CwYalm62er", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "[SNEAK PEEK] - Elder Scrolls Lorecast First Episode", - "release_date": "2019-02-11", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:5nkbQDDCKSH4CwYalm62er" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4Mave1BG7EHeU0qq1twtAn/clip_459968_519968.mp3", - "description": "Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4749139, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ" - }, - "href": "https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ", - "html_description": "

Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "18tLLTavfPIPoJxau3xDQJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ae51cfa015cbd544a002bccbe", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fe51cfa015cbd544a002bccbe", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68de51cfa015cbd544a002bccbe", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Power Armor w/ Duke from Out of the Vault", - "release_date": "2019-02-13", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:18tLLTavfPIPoJxau3xDQJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7fz7lIYIOwji5rAzsPnPLl/clip_149474_209474.mp3", - "description": "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 806974, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm" - }, - "href": "https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm", - "html_description": "

The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1EQ6z4eaCRs6kJeVXjWIcm", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5ec46a0a8e2a9bd2da0ff0ed", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5ec46a0a8e2a9bd2da0ff0ed", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5ec46a0a8e2a9bd2da0ff0ed", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 15 The Origin of The Khans", - "release_date": "2019-02-16", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/13AFXYxT2YCrDCMzgN2jh8/clip_437695_497695.mp3", - "description": "In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2198700, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn" - }, - "href": "https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn", - "html_description": "

In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5ia7J0CaNRhuxsB0yVxdcn", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ad78d04bb088afb0a28507ae3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fd78d04bb088afb0a28507ae3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dd78d04bb088afb0a28507ae3", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "West Tek - FEV & Power Armor", - "release_date": "2019-02-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:5ia7J0CaNRhuxsB0yVxdcn" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/513rEkpn7WJz0Htlf4U1mW/clip_264594_324594.mp3", - "description": "In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 882076, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V" - }, - "href": "https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V", - "html_description": "

In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1rzpxakE5YSwvSX6rXlG1V", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aff81331e3ff9b334529acf3d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fff81331e3ff9b334529acf3d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dff81331e3ff9b334529acf3d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 19 Red vs Blue (or On Tribalism)", - "release_date": "2019-02-25", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1rzpxakE5YSwvSX6rXlG1V" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7E5XBMlZJ1xDCikgXyFWD9/clip_417053_477053.mp3", - "description": "Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2252251, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV" - }, - "href": "https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV", - "html_description": "

Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1PI4CPzbfD5HFEMWlaNQAV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac6f34f6430f9c4a3ad47c295", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc6f34f6430f9c4a3ad47c295", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc6f34f6430f9c4a3ad47c295", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Super Mutants", - "release_date": "2019-02-27", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1PI4CPzbfD5HFEMWlaNQAV" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59AarJkmlwPHocAqoRzmjL/clip_506150_566150.mp3", - "description": "Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2875219, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6" - }, - "href": "https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6", - "html_description": "

Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4CZKdqqXWP5ez2rOzT5eL6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a671b875905fa85a37794e728", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f671b875905fa85a37794e728", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d671b875905fa85a37794e728", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "West Virginia and Fallout 76 w/ Dave from Vault Boys WV", - "release_date": "2019-03-06", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4CZKdqqXWP5ez2rOzT5eL6" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4uCmQqEm9FvkGJde3XNGq3/clip_499141_559141.mp3", - "description": "This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2147004, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj" - }, - "href": "https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj", - "html_description": "

This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1SOZlOQl3FYwatj6Zvfrsj", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a231f303240fb4cff66631727", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f231f303240fb4cff66631727", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d231f303240fb4cff66631727", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Ghouls!", - "release_date": "2019-03-13", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1SOZlOQl3FYwatj6Zvfrsj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/10pW151AvQJo91XBk3nhOv/clip_491656_551656.mp3", - "description": "Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2028669, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA" - }, - "href": "https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA", - "html_description": "

Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "16hX5oaM52mREneUOHdBiA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3b1dde4fdcf1bd80837f188d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3b1dde4fdcf1bd80837f188d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3b1dde4fdcf1bd80837f188d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 21 - A Roll of the Dice", - "release_date": "2019-03-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:16hX5oaM52mREneUOHdBiA" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3VLKYxi0uNf6K5jvCWQKZe/clip_192390_252390.mp3", - "description": "This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2764538, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS" - }, - "href": "https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS", - "html_description": "

This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2qvIReQpMaGK9OEeuW47VS", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a96e9fbfd524c6a0c883d9600", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f96e9fbfd524c6a0c883d9600", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d96e9fbfd524c6a0c883d9600", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Deathclaws", - "release_date": "2019-03-28", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:2qvIReQpMaGK9OEeuW47VS" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/674KUlwHqUgINDmE1ktTSH/clip_169257_229257.mp3", - "description": "How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2129684, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3zEdqLh9PXFGCKAdvZcVPa" - }, - "href": "https://api.spotify.com/v1/episodes/3zEdqLh9PXFGCKAdvZcVPa", - "html_description": "

How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3zEdqLh9PXFGCKAdvZcVPa", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2a2b2c2191341a700f6357f5", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2a2b2c2191341a700f6357f5", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2a2b2c2191341a700f6357f5", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 22 - Fungus Zombies", - "release_date": "2019-04-03", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3zEdqLh9PXFGCKAdvZcVPa" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/33k0bqpfn2GmKl1EFtbiYm/clip_356761_416761.mp3", - "description": "How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4128705, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2tTa25CiLYBnlJtYc2B5Mj" - }, - "href": "https://api.spotify.com/v1/episodes/2tTa25CiLYBnlJtYc2B5Mj", - "html_description": "

How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2tTa25CiLYBnlJtYc2B5Mj", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a2bf6dc2d6838fab7ab17e223", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f2bf6dc2d6838fab7ab17e223", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d2bf6dc2d6838fab7ab17e223", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Movie Influences w/ Stuart from Committee Quest", - "release_date": "2019-04-11", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:2tTa25CiLYBnlJtYc2B5Mj" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6AiDmRa0IIvAzEjFKuE0Kf/clip_590064_650064.mp3", - "description": "The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2118086, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4Tyt0Prd9yqd2vv4wC1TJE" - }, - "href": "https://api.spotify.com/v1/episodes/4Tyt0Prd9yqd2vv4wC1TJE", - "html_description": "

The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4Tyt0Prd9yqd2vv4wC1TJE", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aaf31ef37c37e6cdc2262e0cb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1faf31ef37c37e6cdc2262e0cb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68daf31ef37c37e6cdc2262e0cb", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The New California Republic (NCR)", - "release_date": "2019-04-17", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4Tyt0Prd9yqd2vv4wC1TJE" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1jpHL9hopn1ql3h84em1qI/clip_478118_538118.mp3", - "description": "Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1838393, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2N9dQBdUq02DWnZ7NalLGv" - }, - "href": "https://api.spotify.com/v1/episodes/2N9dQBdUq02DWnZ7NalLGv", - "html_description": "

Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2N9dQBdUq02DWnZ7NalLGv", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3bbb6db2291ce62d8e50e6cf", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3bbb6db2291ce62d8e50e6cf", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3bbb6db2291ce62d8e50e6cf", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Extra Episode - Generational Perspectives w/ Tom's Daughter Laney", - "release_date": "2019-04-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:2N9dQBdUq02DWnZ7NalLGv" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1B7LR09SzOeCKeJ1nSisFz/clip_232334_292334.mp3", - "description": "What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1894478, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/7sTC5e0OLOn1e164IRsoUH" - }, - "href": "https://api.spotify.com/v1/episodes/7sTC5e0OLOn1e164IRsoUH", - "html_description": "

What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "7sTC5e0OLOn1e164IRsoUH", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a52c5396a2915758428a83fbb", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f52c5396a2915758428a83fbb", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d52c5396a2915758428a83fbb", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Fallout Bible & Vault 27", - "release_date": "2019-04-24", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:7sTC5e0OLOn1e164IRsoUH" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1FCDxILnIZHfeeJHj5KpCo/clip_142855_202855.mp3", - "description": "Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 831451, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4hkn51b92Zss7v41zODTHV" - }, - "href": "https://api.spotify.com/v1/episodes/4hkn51b92Zss7v41zODTHV", - "html_description": "

Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4hkn51b92Zss7v41zODTHV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8af3df1626a78fac918e9c928e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1ff3df1626a78fac918e9c928e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68df3df1626a78fac918e9c928e", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Robots Thoughts - Safest Place During Nuclear Fallout", - "release_date": "2019-04-27", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4hkn51b92Zss7v41zODTHV" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5f3X21w0sDwecfDILNhWFO/clip_177316_237316.mp3", - "description": "What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2550804, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1yQIvJJLlJMphCsGMqAcPk" - }, - "href": "https://api.spotify.com/v1/episodes/1yQIvJJLlJMphCsGMqAcPk", - "html_description": "

What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1yQIvJJLlJMphCsGMqAcPk", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a143949ea0c4c48ee398a2f84", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f143949ea0c4c48ee398a2f84", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d143949ea0c4c48ee398a2f84", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Synths & The Institute", - "release_date": "2019-05-01", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1yQIvJJLlJMphCsGMqAcPk" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1oOFshFO0CVzi3QUMyLcP4/clip_543693_603693.mp3", - "description": "A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2160404, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/69MYgP6oCkzkcwXZjBYkCp" - }, - "href": "https://api.spotify.com/v1/episodes/69MYgP6oCkzkcwXZjBYkCp", - "html_description": "

A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "69MYgP6oCkzkcwXZjBYkCp", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a8a4ef3ed09c6169d6f23bfff", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f8a4ef3ed09c6169d6f23bfff", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d8a4ef3ed09c6169d6f23bfff", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Derek Greenway, Vault 29, Twin Mothers & The Goddess Diana", - "release_date": "2019-05-08", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:69MYgP6oCkzkcwXZjBYkCp" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3P5BCmuFZZ1cCxFReOWCtj/clip_509707_569707.mp3", - "description": "A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2430223, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/67FIGQqDzfYVrXOoPMrQge" - }, - "href": "https://api.spotify.com/v1/episodes/67FIGQqDzfYVrXOoPMrQge", - "html_description": "

A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "67FIGQqDzfYVrXOoPMrQge", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8adee8b3a349e65a704ec081f2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fdee8b3a349e65a704ec081f2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68ddee8b3a349e65a704ec081f2", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Fallout: A Post Nuclear Role Playing Game - A Recap of Fallout 1", - "release_date": "2019-05-20", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:67FIGQqDzfYVrXOoPMrQge" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3h1CaMJCD0IFLSisLJzzsC/clip_433092_493092.mp3", - "description": "What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2052571, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4e4V4bLrK56k996hd2oPUo" - }, - "href": "https://api.spotify.com/v1/episodes/4e4V4bLrK56k996hd2oPUo", - "html_description": "

What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4e4V4bLrK56k996hd2oPUo", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a0b647fbec32544ce2d4eac1b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f0b647fbec32544ce2d4eac1b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d0b647fbec32544ce2d4eac1b", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 34, Boomers & a Pulse Rifle", - "release_date": "2019-05-29", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4e4V4bLrK56k996hd2oPUo" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1icAMgzGw40UTMZogcEFNz/clip_172139_232139.mp3", - "description": "Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3112228, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1XhqJdNSG4odYRhtH8G6nJ" - }, - "href": "https://api.spotify.com/v1/episodes/1XhqJdNSG4odYRhtH8G6nJ", - "html_description": "

Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1XhqJdNSG4odYRhtH8G6nJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ab4343aace50ee621af668691", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fb4343aace50ee621af668691", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68db4343aace50ee621af668691", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Mr Handy Line of Robots", - "release_date": "2019-06-04", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1XhqJdNSG4odYRhtH8G6nJ" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6UOiTaXUelyxAmPy0ri7rc/clip_462757_522757.mp3", - "description": "Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4420466, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1WQVLB4QRJj4QKZ4z1RRhr" - }, - "href": "https://api.spotify.com/v1/episodes/1WQVLB4QRJj4QKZ4z1RRhr", - "html_description": "

Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1WQVLB4QRJj4QKZ4z1RRhr", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a3f66f4de0e3b85f69b2d0092", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f3f66f4de0e3b85f69b2d0092", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d3f66f4de0e3b85f69b2d0092", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Bethesda E3 2019 w/ Jameson from The DL", - "release_date": "2019-06-11", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1WQVLB4QRJj4QKZ4z1RRhr" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3hXn3LiOepTXswCkiRogl2/clip_0_60000.mp3", - "description": "A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2413217, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/394kPEIAQCUgZCw48L4zae" - }, - "href": "https://api.spotify.com/v1/episodes/394kPEIAQCUgZCw48L4zae", - "html_description": "

A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "394kPEIAQCUgZCw48L4zae", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a82acca7a8cf9e7c32dd33bc7", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f82acca7a8cf9e7c32dd33bc7", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d82acca7a8cf9e7c32dd33bc7", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "My Fallout RPG Play Instructions", - "release_date": "2019-06-13", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:394kPEIAQCUgZCw48L4zae" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4zo4oiGxqAGWjryjaBwnGs/clip_434147_494147.mp3", - "description": "These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1768359, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/4eM1aVDBA5eMyrXD0ymk0w" - }, - "href": "https://api.spotify.com/v1/episodes/4eM1aVDBA5eMyrXD0ymk0w", - "html_description": "

These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "4eM1aVDBA5eMyrXD0ymk0w", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a25115c8baee2b48ed33d245f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f25115c8baee2b48ed33d245f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d25115c8baee2b48ed33d245f", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault Oddities - 36, 42, 43", - "release_date": "2019-06-19", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:4eM1aVDBA5eMyrXD0ymk0w" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4oqhrOVT8OcXTARawk5XRi/clip_426370_486370.mp3", - "description": "The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2481031, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3B4iAXTy5LHvMwNHSzYMRu" - }, - "href": "https://api.spotify.com/v1/episodes/3B4iAXTy5LHvMwNHSzYMRu", - "html_description": "

The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3B4iAXTy5LHvMwNHSzYMRu", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aaa912f37a83111b4f8038dc1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1faa912f37a83111b4f8038dc1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68daa912f37a83111b4f8038dc1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Fallout 2 Recap & Details", - "release_date": "2019-06-26", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3B4iAXTy5LHvMwNHSzYMRu" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QYGjgIoyhm83eR7DUQni0/clip_163978_223978.mp3", - "description": "More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net Our Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2313900, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/6fp6VYhWvDTc627nhRcY34" - }, - "href": "https://api.spotify.com/v1/episodes/6fp6VYhWvDTc627nhRcY34", - "html_description": "

More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast

Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM

Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "6fp6VYhWvDTc627nhRcY34", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a080c23afb045d70c6f5b14d2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f080c23afb045d70c6f5b14d2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d080c23afb045d70c6f5b14d2", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault Oddities 2 - 53, 55, 56", - "release_date": "2019-07-03", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:6fp6VYhWvDTc627nhRcY34" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/30gt9ujJ23p5Qac4J7LyiG/clip_395357_455357.mp3", - "description": "Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3289338, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0MldixXFwkWY2EPNX8J1U9" - }, - "href": "https://api.spotify.com/v1/episodes/0MldixXFwkWY2EPNX8J1U9", - "html_description": "

Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "0MldixXFwkWY2EPNX8J1U9", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aa1c2d6a9cf1dc66c9e3dfc8d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fa1c2d6a9cf1dc66c9e3dfc8d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68da1c2d6a9cf1dc66c9e3dfc8d", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Fallout 76 Update w/ Toon", - "release_date": "2019-07-17", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:0MldixXFwkWY2EPNX8J1U9" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5KrPsxdfcoa2pCRBHFWI50/clip_177414_237414.mp3", - "description": "Too many men? Too many women? Not enough... pants?\u00a0 Become a patron! https://patreon.com/falloutlorecast Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2086555, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3L5KhEbyCRaBSeYcE6naD6" - }, - "href": "https://api.spotify.com/v1/episodes/3L5KhEbyCRaBSeYcE6naD6", - "html_description": "

Too many men? Too many women? Not enough... pants?\u00a0

Become a patron! https://patreon.com/falloutlorecast

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3L5KhEbyCRaBSeYcE6naD6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aa3f242bdb73a658e2c7106d8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fa3f242bdb73a658e2c7106d8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68da3f242bdb73a658e2c7106d8", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault Oddities 3 - 68, 69, 70", - "release_date": "2019-07-24", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3L5KhEbyCRaBSeYcE6naD6" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/173fF8LRsjiMYfDlBqyVFO/clip_143332_203332.mp3", - "description": "Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3471281, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3iA0ZfSQpzR7zGzI5SpNgx" - }, - "href": "https://api.spotify.com/v1/episodes/3iA0ZfSQpzR7zGzI5SpNgx", - "html_description": "

Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3iA0ZfSQpzR7zGzI5SpNgx", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aa901fc638a1c1da08b6bbada", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fa901fc638a1c1da08b6bbada", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68da901fc638a1c1da08b6bbada", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Which Fallout 4 Faction was \"Right\" w/ Patron Guests Kryptex & Mustang", - "release_date": "2019-07-31", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3iA0ZfSQpzR7zGzI5SpNgx" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3aC748UISaCSNNB06EE64F/clip_371355_431355.mp3", - "description": "Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 2389838, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5OD0lEvUHg0BkNL3V1Stpg" - }, - "href": "https://api.spotify.com/v1/episodes/5OD0lEvUHg0BkNL3V1Stpg", - "html_description": "

Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5OD0lEvUHg0BkNL3V1Stpg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8abb35f07556cdd2c8e5628194", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fbb35f07556cdd2c8e5628194", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dbb35f07556cdd2c8e5628194", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault City - Fallout 2 Factions", - "release_date": "2019-08-07", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:5OD0lEvUHg0BkNL3V1Stpg" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lNoGzZ7idbXP4TydKReRL/clip_141796_201796.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1839386, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/1p1GiQSxFSvkcS3BdXNZM9" - }, - "href": "https://api.spotify.com/v1/episodes/1p1GiQSxFSvkcS3BdXNZM9", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "1p1GiQSxFSvkcS3BdXNZM9", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5938a31803fc47dac08ea6b2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5938a31803fc47dac08ea6b2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5938a31803fc47dac08ea6b2", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 75 - Human Genetic Conditioning", - "release_date": "2019-08-12", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:1p1GiQSxFSvkcS3BdXNZM9" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/69Q6ESqk0hmLhSZE2UcH8w/clip_310006_370006.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1956310, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/5lRRLF7Y9EPwzWPUjL4wBi" - }, - "href": "https://api.spotify.com/v1/episodes/5lRRLF7Y9EPwzWPUjL4wBi", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "5lRRLF7Y9EPwzWPUjL4wBi", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a5c1e373a2e0367acc93fb596", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f5c1e373a2e0367acc93fb596", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d5c1e373a2e0367acc93fb596", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "The Khans, New Khans, & Great Khans", - "release_date": "2019-08-21", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:5lRRLF7Y9EPwzWPUjL4wBi" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2jstDAomT4wI5M1c8vh2rQ/clip_163496_223496.mp3", - "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 3789453, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/0bVSlmo3VHL5egu8hacUHd" - }, - "href": "https://api.spotify.com/v1/episodes/0bVSlmo3VHL5egu8hacUHd", - "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "0bVSlmo3VHL5egu8hacUHd", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a37d92e2a399e11989028f571", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f37d92e2a399e11989028f571", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d37d92e2a399e11989028f571", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Most Evil Faction - Monthly Patron Call", - "release_date": "2019-08-28", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:0bVSlmo3VHL5egu8hacUHd" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dqqLMizQRxJXDg57KjsIR/clip_636820_696820.mp3", - "description": "Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1872326, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/53j8zWJoetnjS0borOSC68" - }, - "href": "https://api.spotify.com/v1/episodes/53j8zWJoetnjS0borOSC68", - "html_description": "

Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "53j8zWJoetnjS0borOSC68", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a9aefca1e45c07f2ba6cbcf52", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f9aefca1e45c07f2ba6cbcf52", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d9aefca1e45c07f2ba6cbcf52", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 81 & Curie", - "release_date": "2019-09-04", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:53j8zWJoetnjS0borOSC68" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2qc7zmFNhQ44hVW8YUTM9h/clip_230605_290605.mp3", - "description": "What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1950876, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2FjaAQfmyFnc12gJNr1yDT" - }, - "href": "https://api.spotify.com/v1/episodes/2FjaAQfmyFnc12gJNr1yDT", - "html_description": "

What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2FjaAQfmyFnc12gJNr1yDT", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8ac45911c1f83d566d8ceeade1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fc45911c1f83d566d8ceeade1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68dc45911c1f83d566d8ceeade1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Being Paladin Danse - The Fallout Lorecast", - "release_date": "2019-09-11", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:2FjaAQfmyFnc12gJNr1yDT" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1nNtTnZ6A7n367UjXP6InT/clip_455264_515264.mp3", - "description": "Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4927608, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3OZ75wJY5jgqxciFhjoxpd" - }, - "href": "https://api.spotify.com/v1/episodes/3OZ75wJY5jgqxciFhjoxpd", - "html_description": "

Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3OZ75wJY5jgqxciFhjoxpd", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8aa0dbb924716a66008ffa5295", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1fa0dbb924716a66008ffa5295", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68da0dbb924716a66008ffa5295", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "EXTENDED EPISODE: Mr. House w/ Ken (Chad A Fallout 76 Story)", - "release_date": "2019-09-19", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3OZ75wJY5jgqxciFhjoxpd" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7jXkeShygyis1vOR77Rsn1/clip_272656_332656.mp3", - "description": "Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 4302968, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/2BV0OCNWY2hCjArmHAQH60" - }, - "href": "https://api.spotify.com/v1/episodes/2BV0OCNWY2hCjArmHAQH60", - "html_description": "

Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "2BV0OCNWY2hCjArmHAQH60", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a270ef7e866cc87449d1ce6a1", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f270ef7e866cc87449d1ce6a1", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d270ef7e866cc87449d1ce6a1", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Who is the Best Companion? | Monthly Patron Call | Fallout Lorecast", - "release_date": "2019-09-25", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:2BV0OCNWY2hCjArmHAQH60" - }, - { - "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4hlzS7WW27RWImhiDYX3Gl/clip_342553_402553.mp3", - "description": "Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", - "duration_ms": 1998027, - "explicit": false, - "external_urls": { - "spotify": "https://open.spotify.com/episode/3Ta9ouqOcHnYRTAIo0XRGU" - }, - "href": "https://api.spotify.com/v1/episodes/3Ta9ouqOcHnYRTAIo0XRGU", - "html_description": "

Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", - "id": "3Ta9ouqOcHnYRTAIo0XRGU", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6765630000ba8a01af91e0364108d405f274d2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67656300005f1f01af91e0364108d405f274d2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab6765630000f68d01af91e0364108d405f274d2", - "width": 64 - } - ], - "is_externally_hosted": false, - "is_playable": true, - "language": "en-US", - "languages": ["en-US"], - "name": "Vault 87 & Capital Wasteland Super Mutants | Fallout Lorecast", - "release_date": "2019-10-02", - "release_date_precision": "day", - "resume_point": { "fully_played": false, "resume_position_ms": 0 }, - "type": "episode", - "uri": "spotify:episode:3Ta9ouqOcHnYRTAIo0XRGU" + "href": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=0&limit=48", + "items": [ + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3ZMPQqrY7A7LNKI7dwuGil/clip_452960_512960.mp3", + "description": "The Great War of 2077 and how the Fallout world diverged from our own. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2193893, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3ssmxnilHYaKhwRWoBGMbU" + }, + "href": "https://api.spotify.com/v1/episodes/3ssmxnilHYaKhwRWoBGMbU", + "html_description": "

The Great War of 2077 and how the Fallout world diverged from our own.

Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3ssmxnilHYaKhwRWoBGMbU", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a224b816136e4325c58a7c15b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f224b816136e4325c58a7c15b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d224b816136e4325c58a7c15b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Great War - Fallout Lorecast EP 1", + "release_date": "2019-01-09", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3ssmxnilHYaKhwRWoBGMbU" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dnqUE3bfxuhGmFbMPogR5/clip_183364_243364.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2472333, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1bbj9aqeeZ3UMUlcWN0S03" + }, + "href": "https://api.spotify.com/v1/episodes/1bbj9aqeeZ3UMUlcWN0S03", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1bbj9aqeeZ3UMUlcWN0S03", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a60efcce283f3eebea03b01", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a60efcce283f3eebea03b01", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a60efcce283f3eebea03b01", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Who Dropped the First Bomb?", + "release_date": "2019-01-15", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1bbj9aqeeZ3UMUlcWN0S03" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/29Xq81kppwk8whpFIdUFrM/clip_384506_444506.mp3", + "description": "The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2263640, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4zui8zWBisCfnTkZ1vgIc0" + }, + "href": "https://api.spotify.com/v1/episodes/4zui8zWBisCfnTkZ1vgIc0", + "html_description": "

The lore behind Vault-Tec Corporation. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4zui8zWBisCfnTkZ1vgIc0", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a15b2cb1cf646a9b161d1226b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f15b2cb1cf646a9b161d1226b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d15b2cb1cf646a9b161d1226b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault-Tec Corporation", + "release_date": "2019-01-22", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4zui8zWBisCfnTkZ1vgIc0" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2Gl0P5Eit50XryFyCAGwG5/clip_202281_262281.mp3", + "description": "Most of the vaults are terrible, this one is ghoulish.Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on Twitter: twitter.com/falloutlorecastRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 520044, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7wH4iaoceRIympxiLVZPHF" + }, + "href": "https://api.spotify.com/v1/episodes/7wH4iaoceRIympxiLVZPHF", + "html_description": "

Most of the vaults are terrible, this one is ghoulish.

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "7wH4iaoceRIympxiLVZPHF", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aace3770451596db4137aa9e5", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1face3770451596db4137aa9e5", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dace3770451596db4137aa9e5", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 3 A Fiendish Finish", + "release_date": "2019-01-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:7wH4iaoceRIympxiLVZPHF" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/615513Vr8mT2vIfzKyE07J/clip_652466_712466.mp3", + "description": "The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 814027, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4Z2MUOz9GBHzHsEIAc5Ltl" + }, + "href": "https://api.spotify.com/v1/episodes/4Z2MUOz9GBHzHsEIAc5Ltl", + "html_description": "

The lore behind Vault 8 and Vault City.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on Twitter: twitter.com/falloutlorecast

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4Z2MUOz9GBHzHsEIAc5Ltl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a13d0eefc4d146b76eea15d67", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f13d0eefc4d146b76eea15d67", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d13d0eefc4d146b76eea15d67", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 8 & Vault City", + "release_date": "2019-01-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4Z2MUOz9GBHzHsEIAc5Ltl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1IU4s7yN8BguHeSYGtsVhN/clip_132961_192961.mp3", + "description": "The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2312124, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/24IzdUok36xLkgQEjOjS6V" + }, + "href": "https://api.spotify.com/v1/episodes/24IzdUok36xLkgQEjOjS6V", + "html_description": "

The origins of the Brotherhood of Steel and Roger Maxson.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "24IzdUok36xLkgQEjOjS6V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a0c6fc7fba3ac1ee8579693db", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f0c6fc7fba3ac1ee8579693db", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d0c6fc7fba3ac1ee8579693db", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Brotherhood of Steel (Origin)", + "release_date": "2019-01-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:24IzdUok36xLkgQEjOjS6V" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3U6ehsNGxMpR6NppP8Sv1t/clip_404185_464185.mp3", + "description": "The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 833097, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6fUziggVu74s6JwZ0lsIjX" + }, + "href": "https://api.spotify.com/v1/episodes/6fUziggVu74s6JwZ0lsIjX", + "html_description": "

The lore behind Vault 11 and the dilemma of self-preservation versus morality.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "6fUziggVu74s6JwZ0lsIjX", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a177e9739e349a411d3feaeb8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f177e9739e349a411d3feaeb8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d177e9739e349a411d3feaeb8", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 11 The Sacrifice", + "release_date": "2019-01-31", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:6fUziggVu74s6JwZ0lsIjX" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5t7Bbh0PeOT51HG8TKU6d2/clip_131424_191424.mp3", + "description": "The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 549668, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1pYEeMveLHGbbIo10G34dx" + }, + "href": "https://api.spotify.com/v1/episodes/1pYEeMveLHGbbIo10G34dx", + "html_description": "

The lore behind Vault 12 and the origins of a ghoulish city.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1pYEeMveLHGbbIo10G34dx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac219ed826eed5a53e8630fd1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc219ed826eed5a53e8630fd1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc219ed826eed5a53e8630fd1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 12 A Ghoulish Experience", + "release_date": "2019-02-02", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1pYEeMveLHGbbIo10G34dx" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2MmgcnXeIBQbYGvS6U77Oa/clip_178564_238564.mp3", + "description": "The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2096979, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1h69SINnBwMCqfEXjPAVIl" + }, + "href": "https://api.spotify.com/v1/episodes/1h69SINnBwMCqfEXjPAVIl", + "html_description": "

The origins and ideology of the Enclave.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1h69SINnBwMCqfEXjPAVIl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a8bc610b5319ed5d7174131af", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f8bc610b5319ed5d7174131af", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d8bc610b5319ed5d7174131af", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Origin of the Enclave", + "release_date": "2019-02-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1h69SINnBwMCqfEXjPAVIl" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3KWEyZ1ucu9JBOUOBwJxYp/clip_147647_207647.mp3", + "description": "The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1026089, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/33UquUg4oftJ4ereH4nrNO" + }, + "href": "https://api.spotify.com/v1/episodes/33UquUg4oftJ4ereH4nrNO", + "html_description": "

The lore behind Vault 13 and an invasion by intelligent deathclaws.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "33UquUg4oftJ4ereH4nrNO", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a409536212a26657ac7eefa5a", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f409536212a26657ac7eefa5a", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d409536212a26657ac7eefa5a", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 13 & Intelligent Deathclaws", + "release_date": "2019-02-07", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:33UquUg4oftJ4ereH4nrNO" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3bEayi2Mx8F1bq2dFbzLSv/clip_417827_477827.mp3", + "description": "Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2362592, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5nkbQDDCKSH4CwYalm62er" + }, + "href": "https://api.spotify.com/v1/episodes/5nkbQDDCKSH4CwYalm62er", + "html_description": "

Get an early listen to the 1st episode of the upcoming Elder Scrolls Lorecast! Brought to you by: Storyblocks.com: Storyblocks.com/robotsradio Gamefly Game Rentals FREE for 30 Days! Click here: https://www.dpbolvw.net/click-100173810-10495782?sid=flore 15% off Loot Crate click: https://www.dpbolvw.net/click-100173810-13902093?sid=flore and use coupon code: ROBOTSRADIO Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/esolorecast Check out live streams most evenings on Twitch: twitch.tv/robotsradio Send me a note! Email: elderscrollslorecast@gmail.com Get a cool shirt, hat, or sticker, and support the show.\u00a0Merch: https://robotsradio.net/store/ Dsicover more Robots Radio shows at robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5nkbQDDCKSH4CwYalm62er", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab123bf90e3b34c113ab95837", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb123bf90e3b34c113ab95837", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db123bf90e3b34c113ab95837", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "[SNEAK PEEK] - Elder Scrolls Lorecast First Episode", + "release_date": "2019-02-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5nkbQDDCKSH4CwYalm62er" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4Mave1BG7EHeU0qq1twtAn/clip_459968_519968.mp3", + "description": "Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecastTalk Fallout and join the Robots Radio fam: discord.gg/JXKfVhMStay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0tsSend me a note! Email: falloutlorecast@gmail.comwww.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4749139, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/18tLLTavfPIPoJxau3xDQJ" + }, + "href": "https://api.spotify.com/v1/episodes/18tLLTavfPIPoJxau3xDQJ", + "html_description": "

Duke from Out of the Vault joins me to discuss our thoughts on Power Armor. www.outofthevaultshow.com\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "18tLLTavfPIPoJxau3xDQJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ae51cfa015cbd544a002bccbe", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fe51cfa015cbd544a002bccbe", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68de51cfa015cbd544a002bccbe", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Power Armor w/ Duke from Out of the Vault", + "release_date": "2019-02-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:18tLLTavfPIPoJxau3xDQJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7fz7lIYIOwji5rAzsPnPLl/clip_149474_209474.mp3", + "description": "The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 806974, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1EQ6z4eaCRs6kJeVXjWIcm" + }, + "href": "https://api.spotify.com/v1/episodes/1EQ6z4eaCRs6kJeVXjWIcm", + "html_description": "

The lore behind Vault 15 and it's connection to Shady Sands and 3 of the most vile groups of raiders in the wasteland.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1EQ6z4eaCRs6kJeVXjWIcm", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5ec46a0a8e2a9bd2da0ff0ed", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5ec46a0a8e2a9bd2da0ff0ed", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5ec46a0a8e2a9bd2da0ff0ed", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 15 The Origin of The Khans", + "release_date": "2019-02-16", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1EQ6z4eaCRs6kJeVXjWIcm" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/13AFXYxT2YCrDCMzgN2jh8/clip_437695_497695.mp3", + "description": "In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2198700, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5ia7J0CaNRhuxsB0yVxdcn" + }, + "href": "https://api.spotify.com/v1/episodes/5ia7J0CaNRhuxsB0yVxdcn", + "html_description": "

In this episode, we discuss the origin, research, and importance of West Tek.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5ia7J0CaNRhuxsB0yVxdcn", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ad78d04bb088afb0a28507ae3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fd78d04bb088afb0a28507ae3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dd78d04bb088afb0a28507ae3", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "West Tek - FEV & Power Armor", + "release_date": "2019-02-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5ia7J0CaNRhuxsB0yVxdcn" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/513rEkpn7WJz0Htlf4U1mW/clip_264594_324594.mp3", + "description": "In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 882076, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1rzpxakE5YSwvSX6rXlG1V" + }, + "href": "https://api.spotify.com/v1/episodes/1rzpxakE5YSwvSX6rXlG1V", + "html_description": "

In this minisode we discuss the lore behind Vault 19 and the psychology of tribalism.\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1rzpxakE5YSwvSX6rXlG1V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aff81331e3ff9b334529acf3d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fff81331e3ff9b334529acf3d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dff81331e3ff9b334529acf3d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 19 Red vs Blue (or On Tribalism)", + "release_date": "2019-02-25", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1rzpxakE5YSwvSX6rXlG1V" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7E5XBMlZJ1xDCikgXyFWD9/clip_417053_477053.mp3", + "description": "Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2252251, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1PI4CPzbfD5HFEMWlaNQAV" + }, + "href": "https://api.spotify.com/v1/episodes/1PI4CPzbfD5HFEMWlaNQAV", + "html_description": "

Super Mutants. Nuff said. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1PI4CPzbfD5HFEMWlaNQAV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac6f34f6430f9c4a3ad47c295", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc6f34f6430f9c4a3ad47c295", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc6f34f6430f9c4a3ad47c295", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Super Mutants", + "release_date": "2019-02-27", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1PI4CPzbfD5HFEMWlaNQAV" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/59AarJkmlwPHocAqoRzmjL/clip_506150_566150.mp3", + "description": "Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2875219, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4CZKdqqXWP5ez2rOzT5eL6" + }, + "href": "https://api.spotify.com/v1/episodes/4CZKdqqXWP5ez2rOzT5eL6", + "html_description": "

Welcome Dave from the Vault Boys WV to the show. We chat about Fallout 76, West Virginia, and what got him into the series. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4CZKdqqXWP5ez2rOzT5eL6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a671b875905fa85a37794e728", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f671b875905fa85a37794e728", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d671b875905fa85a37794e728", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "West Virginia and Fallout 76 w/ Dave from Vault Boys WV", + "release_date": "2019-03-06", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4CZKdqqXWP5ez2rOzT5eL6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4uCmQqEm9FvkGJde3XNGq3/clip_499141_559141.mp3", + "description": "This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2147004, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1SOZlOQl3FYwatj6Zvfrsj" + }, + "href": "https://api.spotify.com/v1/episodes/1SOZlOQl3FYwatj6Zvfrsj", + "html_description": "

This episode we discuss Ghouls! Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1SOZlOQl3FYwatj6Zvfrsj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a231f303240fb4cff66631727", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f231f303240fb4cff66631727", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d231f303240fb4cff66631727", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Ghouls!", + "release_date": "2019-03-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1SOZlOQl3FYwatj6Zvfrsj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/10pW151AvQJo91XBk3nhOv/clip_491656_551656.mp3", + "description": "Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2028669, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/16hX5oaM52mREneUOHdBiA" + }, + "href": "https://api.spotify.com/v1/episodes/16hX5oaM52mREneUOHdBiA", + "html_description": "

Vault 21, where everything was determined randomly. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "16hX5oaM52mREneUOHdBiA", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3b1dde4fdcf1bd80837f188d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3b1dde4fdcf1bd80837f188d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3b1dde4fdcf1bd80837f188d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 21 - A Roll of the Dice", + "release_date": "2019-03-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:16hX5oaM52mREneUOHdBiA" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3VLKYxi0uNf6K5jvCWQKZe/clip_192390_252390.mp3", + "description": "This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2764538, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2qvIReQpMaGK9OEeuW47VS" + }, + "href": "https://api.spotify.com/v1/episodes/2qvIReQpMaGK9OEeuW47VS", + "html_description": "

This episode is all about Deathclaws, plus a great question from our Patron Emily G. and reviews. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2qvIReQpMaGK9OEeuW47VS", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a96e9fbfd524c6a0c883d9600", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f96e9fbfd524c6a0c883d9600", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d96e9fbfd524c6a0c883d9600", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Deathclaws", + "release_date": "2019-03-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2qvIReQpMaGK9OEeuW47VS" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/674KUlwHqUgINDmE1ktTSH/clip_169257_229257.mp3", + "description": "How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2129684, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3zEdqLh9PXFGCKAdvZcVPa" + }, + "href": "https://api.spotify.com/v1/episodes/3zEdqLh9PXFGCKAdvZcVPa", + "html_description": "

How'd you like to be mind controlled by fungus?\u00a0Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3zEdqLh9PXFGCKAdvZcVPa", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2a2b2c2191341a700f6357f5", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2a2b2c2191341a700f6357f5", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2a2b2c2191341a700f6357f5", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 22 - Fungus Zombies", + "release_date": "2019-04-03", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3zEdqLh9PXFGCKAdvZcVPa" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/33k0bqpfn2GmKl1EFtbiYm/clip_356761_416761.mp3", + "description": "How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4128705, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2tTa25CiLYBnlJtYc2B5Mj" + }, + "href": "https://api.spotify.com/v1/episodes/2tTa25CiLYBnlJtYc2B5Mj", + "html_description": "

How 4 movies influenced the creation of one of our favorite game universes. Sponsors: Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2tTa25CiLYBnlJtYc2B5Mj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a2bf6dc2d6838fab7ab17e223", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f2bf6dc2d6838fab7ab17e223", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d2bf6dc2d6838fab7ab17e223", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Movie Influences w/ Stuart from Committee Quest", + "release_date": "2019-04-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2tTa25CiLYBnlJtYc2B5Mj" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6AiDmRa0IIvAzEjFKuE0Kf/clip_590064_650064.mp3", + "description": "The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.socialRobots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2118086, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4Tyt0Prd9yqd2vv4wC1TJE" + }, + "href": "https://api.spotify.com/v1/episodes/4Tyt0Prd9yqd2vv4wC1TJE", + "html_description": "

The New California Republic (NCR) patrols the wasteland in an attempt to re-establish American ideals. Become a patron! https://patreon.com/falloutlorecast

Talk Fallout and join the Robots Radio fam: discord.gg/JXKfVhM

Stay plugged in on BlueSky: https://bsky.app/profile/robotsradio.bsky.social

Robots Radio Youtube: youtube.com/c/r0b0ts

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net




Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4Tyt0Prd9yqd2vv4wC1TJE", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aaf31ef37c37e6cdc2262e0cb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1faf31ef37c37e6cdc2262e0cb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68daf31ef37c37e6cdc2262e0cb", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The New California Republic (NCR)", + "release_date": "2019-04-17", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4Tyt0Prd9yqd2vv4wC1TJE" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1jpHL9hopn1ql3h84em1qI/clip_478118_538118.mp3", + "description": "Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1838393, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2N9dQBdUq02DWnZ7NalLGv" + }, + "href": "https://api.spotify.com/v1/episodes/2N9dQBdUq02DWnZ7NalLGv", + "html_description": "

Throwing in an extra episode this week - a wonderful interview with my daughter about Fallout and discovering Bethesda's games. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2N9dQBdUq02DWnZ7NalLGv", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3bbb6db2291ce62d8e50e6cf", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3bbb6db2291ce62d8e50e6cf", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3bbb6db2291ce62d8e50e6cf", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Extra Episode - Generational Perspectives w/ Tom's Daughter Laney", + "release_date": "2019-04-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2N9dQBdUq02DWnZ7NalLGv" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1B7LR09SzOeCKeJ1nSisFz/clip_232334_292334.mp3", + "description": "What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1894478, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/7sTC5e0OLOn1e164IRsoUH" + }, + "href": "https://api.spotify.com/v1/episodes/7sTC5e0OLOn1e164IRsoUH", + "html_description": "

What is the Fallout Bible and what would have happened in Vault 27? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "7sTC5e0OLOn1e164IRsoUH", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a52c5396a2915758428a83fbb", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f52c5396a2915758428a83fbb", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d52c5396a2915758428a83fbb", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Fallout Bible & Vault 27", + "release_date": "2019-04-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:7sTC5e0OLOn1e164IRsoUH" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1FCDxILnIZHfeeJHj5KpCo/clip_142855_202855.mp3", + "description": "Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 831451, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4hkn51b92Zss7v41zODTHV" + }, + "href": "https://api.spotify.com/v1/episodes/4hkn51b92Zss7v41zODTHV", + "html_description": "

Enjoy this quick episode of Robots Thoughts where he ponders the safest place to ride out a nuclear war. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4hkn51b92Zss7v41zODTHV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8af3df1626a78fac918e9c928e", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1ff3df1626a78fac918e9c928e", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68df3df1626a78fac918e9c928e", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Robots Thoughts - Safest Place During Nuclear Fallout", + "release_date": "2019-04-27", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4hkn51b92Zss7v41zODTHV" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5f3X21w0sDwecfDILNhWFO/clip_177316_237316.mp3", + "description": "What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2550804, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1yQIvJJLlJMphCsGMqAcPk" + }, + "href": "https://api.spotify.com/v1/episodes/1yQIvJJLlJMphCsGMqAcPk", + "html_description": "

What's going on with the Institute and those crazy synths? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1yQIvJJLlJMphCsGMqAcPk", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a143949ea0c4c48ee398a2f84", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f143949ea0c4c48ee398a2f84", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d143949ea0c4c48ee398a2f84", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Synths & The Institute", + "release_date": "2019-05-01", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1yQIvJJLlJMphCsGMqAcPk" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1oOFshFO0CVzi3QUMyLcP4/clip_543693_603693.mp3", + "description": "A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2160404, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/69MYgP6oCkzkcwXZjBYkCp" + }, + "href": "https://api.spotify.com/v1/episodes/69MYgP6oCkzkcwXZjBYkCp", + "html_description": "

A genius, a brain in a machine, and children = a new culture for a new time. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "69MYgP6oCkzkcwXZjBYkCp", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a8a4ef3ed09c6169d6f23bfff", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f8a4ef3ed09c6169d6f23bfff", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d8a4ef3ed09c6169d6f23bfff", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Derek Greenway, Vault 29, Twin Mothers & The Goddess Diana", + "release_date": "2019-05-08", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:69MYgP6oCkzkcwXZjBYkCp" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3P5BCmuFZZ1cCxFReOWCtj/clip_509707_569707.mp3", + "description": "A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2430223, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/67FIGQqDzfYVrXOoPMrQge" + }, + "href": "https://api.spotify.com/v1/episodes/67FIGQqDzfYVrXOoPMrQge", + "html_description": "

A recap of the main events of Fallout 1. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "67FIGQqDzfYVrXOoPMrQge", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8adee8b3a349e65a704ec081f2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fdee8b3a349e65a704ec081f2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68ddee8b3a349e65a704ec081f2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout: A Post Nuclear Role Playing Game - A Recap of Fallout 1", + "release_date": "2019-05-20", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:67FIGQqDzfYVrXOoPMrQge" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3h1CaMJCD0IFLSisLJzzsC/clip_433092_493092.mp3", + "description": "What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2052571, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4e4V4bLrK56k996hd2oPUo" + }, + "href": "https://api.spotify.com/v1/episodes/4e4V4bLrK56k996hd2oPUo", + "html_description": "

What happens when an entire vault community has access to all of it's weapons? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4e4V4bLrK56k996hd2oPUo", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a0b647fbec32544ce2d4eac1b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f0b647fbec32544ce2d4eac1b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d0b647fbec32544ce2d4eac1b", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 34, Boomers & a Pulse Rifle", + "release_date": "2019-05-29", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4e4V4bLrK56k996hd2oPUo" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1icAMgzGw40UTMZogcEFNz/clip_172139_232139.mp3", + "description": "Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3112228, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1XhqJdNSG4odYRhtH8G6nJ" + }, + "href": "https://api.spotify.com/v1/episodes/1XhqJdNSG4odYRhtH8G6nJ", + "html_description": "

Mr Handy and all of it's variations. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1XhqJdNSG4odYRhtH8G6nJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ab4343aace50ee621af668691", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fb4343aace50ee621af668691", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68db4343aace50ee621af668691", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Mr Handy Line of Robots", + "release_date": "2019-06-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1XhqJdNSG4odYRhtH8G6nJ" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/6UOiTaXUelyxAmPy0ri7rc/clip_462757_522757.mp3", + "description": "Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4420466, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1WQVLB4QRJj4QKZ4z1RRhr" + }, + "href": "https://api.spotify.com/v1/episodes/1WQVLB4QRJj4QKZ4z1RRhr", + "html_description": "

Jameson from The DL: Weekly Gaming News has me on to discuss the Bethesda E3 conference. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1WQVLB4QRJj4QKZ4z1RRhr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a3f66f4de0e3b85f69b2d0092", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f3f66f4de0e3b85f69b2d0092", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d3f66f4de0e3b85f69b2d0092", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Bethesda E3 2019 w/ Jameson from The DL", + "release_date": "2019-06-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1WQVLB4QRJj4QKZ4z1RRhr" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3hXn3LiOepTXswCkiRogl2/clip_0_60000.mp3", + "description": "A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2413217, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/394kPEIAQCUgZCw48L4zae" + }, + "href": "https://api.spotify.com/v1/episodes/394kPEIAQCUgZCw48L4zae", + "html_description": "

A number of people have asked about how to play the Fallout RPG game I've been creating. Here's the basics of gameplay.\u00a0Fallout RPG by Robots: https://drive.google.com/open?id=1MY7yGoiG4c5-jTo_Q13rzYmwTKlXoezn Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "394kPEIAQCUgZCw48L4zae", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a82acca7a8cf9e7c32dd33bc7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f82acca7a8cf9e7c32dd33bc7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d82acca7a8cf9e7c32dd33bc7", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "My Fallout RPG Play Instructions", + "release_date": "2019-06-13", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:394kPEIAQCUgZCw48L4zae" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4zo4oiGxqAGWjryjaBwnGs/clip_434147_494147.mp3", + "description": "These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1768359, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/4eM1aVDBA5eMyrXD0ymk0w" + }, + "href": "https://api.spotify.com/v1/episodes/4eM1aVDBA5eMyrXD0ymk0w", + "html_description": "

These vaults are all described with a single line of text. Let's brainstorm what they may have been like. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "4eM1aVDBA5eMyrXD0ymk0w", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a25115c8baee2b48ed33d245f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f25115c8baee2b48ed33d245f", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d25115c8baee2b48ed33d245f", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities - 36, 42, 43", + "release_date": "2019-06-19", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:4eM1aVDBA5eMyrXD0ymk0w" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4oqhrOVT8OcXTARawk5XRi/clip_426370_486370.mp3", + "description": "The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2481031, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3B4iAXTy5LHvMwNHSzYMRu" + }, + "href": "https://api.spotify.com/v1/episodes/3B4iAXTy5LHvMwNHSzYMRu", + "html_description": "

The main storyline of Fallout 2. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3B4iAXTy5LHvMwNHSzYMRu", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aaa912f37a83111b4f8038dc1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1faa912f37a83111b4f8038dc1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68daa912f37a83111b4f8038dc1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout 2 Recap & Details", + "release_date": "2019-06-26", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3B4iAXTy5LHvMwNHSzYMRu" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1QYGjgIoyhm83eR7DUQni0/clip_163978_223978.mp3", + "description": "More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net Our Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2313900, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/6fp6VYhWvDTc627nhRcY34" + }, + "href": "https://api.spotify.com/v1/episodes/6fp6VYhWvDTc627nhRcY34", + "html_description": "

More vaults from the Fallout Bible with only a short description. How would these play out?\u00a0Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast

Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM

Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "6fp6VYhWvDTc627nhRcY34", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a080c23afb045d70c6f5b14d2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f080c23afb045d70c6f5b14d2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d080c23afb045d70c6f5b14d2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities 2 - 53, 55, 56", + "release_date": "2019-07-03", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:6fp6VYhWvDTc627nhRcY34" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/30gt9ujJ23p5Qac4J7LyiG/clip_395357_455357.mp3", + "description": "Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3289338, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0MldixXFwkWY2EPNX8J1U9" + }, + "href": "https://api.spotify.com/v1/episodes/0MldixXFwkWY2EPNX8J1U9", + "html_description": "

Toon (from twitch.tv/tooniversal) join me this week to talk about recent Fallout 76 updates, future, streaming the game, and more. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "0MldixXFwkWY2EPNX8J1U9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa1c2d6a9cf1dc66c9e3dfc8d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa1c2d6a9cf1dc66c9e3dfc8d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da1c2d6a9cf1dc66c9e3dfc8d", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Fallout 76 Update w/ Toon", + "release_date": "2019-07-17", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:0MldixXFwkWY2EPNX8J1U9" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/5KrPsxdfcoa2pCRBHFWI50/clip_177414_237414.mp3", + "description": "Too many men? Too many women? Not enough... pants?\u00a0 Become a patron! https://patreon.com/falloutlorecast Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2086555, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3L5KhEbyCRaBSeYcE6naD6" + }, + "href": "https://api.spotify.com/v1/episodes/3L5KhEbyCRaBSeYcE6naD6", + "html_description": "

Too many men? Too many women? Not enough... pants?\u00a0

Become a patron! https://patreon.com/falloutlorecast

Send me a note! Email: falloutlorecast@gmail.com

www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3L5KhEbyCRaBSeYcE6naD6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa3f242bdb73a658e2c7106d8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa3f242bdb73a658e2c7106d8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da3f242bdb73a658e2c7106d8", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault Oddities 3 - 68, 69, 70", + "release_date": "2019-07-24", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3L5KhEbyCRaBSeYcE6naD6" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/173fF8LRsjiMYfDlBqyVFO/clip_143332_203332.mp3", + "description": "Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3471281, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3iA0ZfSQpzR7zGzI5SpNgx" + }, + "href": "https://api.spotify.com/v1/episodes/3iA0ZfSQpzR7zGzI5SpNgx", + "html_description": "

Patron guests Kryptex & Mustang talk with R0B0TS about Fallout 4 factions, morality, network news, and more on this very special episode.\u00a0If you're interested in joining us on the show next month, check out patreon.com/falloutlorecast. All tier 4 patrons and up can join in for our live episode. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3iA0ZfSQpzR7zGzI5SpNgx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa901fc638a1c1da08b6bbada", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa901fc638a1c1da08b6bbada", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da901fc638a1c1da08b6bbada", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Which Fallout 4 Faction was \"Right\" w/ Patron Guests Kryptex & Mustang", + "release_date": "2019-07-31", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3iA0ZfSQpzR7zGzI5SpNgx" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/3aC748UISaCSNNB06EE64F/clip_371355_431355.mp3", + "description": "Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 2389838, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5OD0lEvUHg0BkNL3V1Stpg" + }, + "href": "https://api.spotify.com/v1/episodes/5OD0lEvUHg0BkNL3V1Stpg", + "html_description": "

Vault City from Fallout 2. The culture, rules, government, & community. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5OD0lEvUHg0BkNL3V1Stpg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8abb35f07556cdd2c8e5628194", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fbb35f07556cdd2c8e5628194", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dbb35f07556cdd2c8e5628194", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault City - Fallout 2 Factions", + "release_date": "2019-08-07", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5OD0lEvUHg0BkNL3V1Stpg" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/0lNoGzZ7idbXP4TydKReRL/clip_141796_201796.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1839386, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/1p1GiQSxFSvkcS3BdXNZM9" + }, + "href": "https://api.spotify.com/v1/episodes/1p1GiQSxFSvkcS3BdXNZM9", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "1p1GiQSxFSvkcS3BdXNZM9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5938a31803fc47dac08ea6b2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5938a31803fc47dac08ea6b2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5938a31803fc47dac08ea6b2", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 75 - Human Genetic Conditioning", + "release_date": "2019-08-12", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:1p1GiQSxFSvkcS3BdXNZM9" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/69Q6ESqk0hmLhSZE2UcH8w/clip_310006_370006.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1956310, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/5lRRLF7Y9EPwzWPUjL4wBi" + }, + "href": "https://api.spotify.com/v1/episodes/5lRRLF7Y9EPwzWPUjL4wBi", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "5lRRLF7Y9EPwzWPUjL4wBi", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a5c1e373a2e0367acc93fb596", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f5c1e373a2e0367acc93fb596", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d5c1e373a2e0367acc93fb596", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "The Khans, New Khans, & Great Khans", + "release_date": "2019-08-21", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:5lRRLF7Y9EPwzWPUjL4wBi" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2jstDAomT4wI5M1c8vh2rQ/clip_163496_223496.mp3", + "description": "Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 3789453, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/0bVSlmo3VHL5egu8hacUHd" + }, + "href": "https://api.spotify.com/v1/episodes/0bVSlmo3VHL5egu8hacUHd", + "html_description": "

Support the show to keep it going, plus get great rewards at patreon.com/falloutlorecast Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "0bVSlmo3VHL5egu8hacUHd", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a37d92e2a399e11989028f571", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f37d92e2a399e11989028f571", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d37d92e2a399e11989028f571", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Most Evil Faction - Monthly Patron Call", + "release_date": "2019-08-28", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:0bVSlmo3VHL5egu8hacUHd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2dqqLMizQRxJXDg57KjsIR/clip_636820_696820.mp3", + "description": "Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1872326, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/53j8zWJoetnjS0borOSC68" + }, + "href": "https://api.spotify.com/v1/episodes/53j8zWJoetnjS0borOSC68", + "html_description": "

Is it ever okay to experiment on humans against their will? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "53j8zWJoetnjS0borOSC68", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a9aefca1e45c07f2ba6cbcf52", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f9aefca1e45c07f2ba6cbcf52", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d9aefca1e45c07f2ba6cbcf52", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 81 & Curie", + "release_date": "2019-09-04", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:53j8zWJoetnjS0borOSC68" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/2qc7zmFNhQ44hVW8YUTM9h/clip_230605_290605.mp3", + "description": "What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1950876, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2FjaAQfmyFnc12gJNr1yDT" + }, + "href": "https://api.spotify.com/v1/episodes/2FjaAQfmyFnc12gJNr1yDT", + "html_description": "

What do you do when you realize what you believed about yourself was a lie? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2FjaAQfmyFnc12gJNr1yDT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8ac45911c1f83d566d8ceeade1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fc45911c1f83d566d8ceeade1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68dc45911c1f83d566d8ceeade1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Being Paladin Danse - The Fallout Lorecast", + "release_date": "2019-09-11", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2FjaAQfmyFnc12gJNr1yDT" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/1nNtTnZ6A7n367UjXP6InT/clip_455264_515264.mp3", + "description": "Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4927608, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3OZ75wJY5jgqxciFhjoxpd" + }, + "href": "https://api.spotify.com/v1/episodes/3OZ75wJY5jgqxciFhjoxpd", + "html_description": "

Extended Episode! Ken joins me to talk about all the awesome details of one of the wasteland's most influential individuals - Mr. House. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3OZ75wJY5jgqxciFhjoxpd", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8aa0dbb924716a66008ffa5295", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1fa0dbb924716a66008ffa5295", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68da0dbb924716a66008ffa5295", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "EXTENDED EPISODE: Mr. House w/ Ken (Chad A Fallout 76 Story)", + "release_date": "2019-09-19", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3OZ75wJY5jgqxciFhjoxpd" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/7jXkeShygyis1vOR77Rsn1/clip_272656_332656.mp3", + "description": "Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 4302968, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/2BV0OCNWY2hCjArmHAQH60" + }, + "href": "https://api.spotify.com/v1/episodes/2BV0OCNWY2hCjArmHAQH60", + "html_description": "

Robots is joined by 4 of our tier 4 patrons to discuss who the best companion is and why. Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "2BV0OCNWY2hCjArmHAQH60", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a270ef7e866cc87449d1ce6a1", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f270ef7e866cc87449d1ce6a1", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d270ef7e866cc87449d1ce6a1", + "width": 64 + } + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Who is the Best Companion? | Monthly Patron Call | Fallout Lorecast", + "release_date": "2019-09-25", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:2BV0OCNWY2hCjArmHAQH60" + }, + { + "audio_preview_url": "https://podz-content.spotifycdn.com/audio/clips/4hlzS7WW27RWImhiDYX3Gl/clip_342553_402553.mp3", + "description": "Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.netOur Sponsors:* Check out Quince: https://quince.com/FALLOUTLOREAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy", + "duration_ms": 1998027, + "explicit": false, + "external_urls": { + "spotify": "https://open.spotify.com/episode/3Ta9ouqOcHnYRTAIo0XRGU" + }, + "href": "https://api.spotify.com/v1/episodes/3Ta9ouqOcHnYRTAIo0XRGU", + "html_description": "

Vault 87 was the source for the super mutants of the capital wastes... but why were the scientists okay with this? Sponsors: Storyblocks.com: Storyblocks.com/robotsradio Patreon: Become a patron! https://patreon.com/falloutlorecast Audiobooks.com - Get 3 FREE Audiobooks! https://www.dpbolvw.net/click-100173810-11099382?sid=flore Gamefly - Want 2 months of rentals for the price of 1 at Gamefly? https://www.dpbolvw.net/click-100173810-10495782?sid=flore Loot Crate - 15% off Loot Crate. Click the link and use coupon code: ROBOTSRADIO https://www.dpbolvw.net/click-100173810-13902093?sid=flore GreenMan Gaming - Get awesome discounts on games. https://www.dpbolvw.net/click-100173810-13764551?sid=flore NordVPN - Stay Safe on the Internet and get 68% off. https://www.dpbolvw.net/click-100173810-12814552?sid=flore Buy cool stuff and support the show! Fallout 76: https://amzn.to/3h99B3U Fallout Cookbook: https://amzn.to/3aGjeod Fallout Boardgame: https://amzn.to/2EgmBq3 The Art of Fallout 4: https://amzn.to/3gfQST3 Get a REAL Nuca-Cola Quantum! https://amzn.to/322O3zG Fallout Funco Pop Figures: https://amzn.to/3gcYsOc Links: Live Shows every Monday Night and game streams: twitch.tv/robotsradio Fallout Hub Podcast w/ Tom & others:\u00a0https://anchor.fm/the-fallout-hub Talk Fallout and join the Robots Radio fam:\u00a0Discord: discord.gg/JXKfVhM Stay plugged in on Twitter: twitter.com/falloutlorecast Robots Radio Youtube: youtube.com/c/r0b0ts Send me a note! Email: falloutlorecast@gmail.com www.robotsradio.net



Our Sponsors:
* Check out Quince: https://quince.com/FALLOUTLORE


Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy", + "id": "3Ta9ouqOcHnYRTAIo0XRGU", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6765630000ba8a01af91e0364108d405f274d2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67656300005f1f01af91e0364108d405f274d2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab6765630000f68d01af91e0364108d405f274d2", + "width": 64 } - ], - "limit": 48, - "next": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=48&limit=48", - "offset": 0, - "previous": null, - "total": 395 + ], + "is_externally_hosted": false, + "is_playable": true, + "language": "en-US", + "languages": ["en-US"], + "name": "Vault 87 & Capital Wasteland Super Mutants | Fallout Lorecast", + "release_date": "2019-10-02", + "release_date_precision": "day", + "resume_point": { "fully_played": false, "resume_position_ms": 0 }, + "type": "episode", + "uri": "spotify:episode:3Ta9ouqOcHnYRTAIo0XRGU" + } + ], + "limit": 48, + "next": "https://api.spotify.com/v1/shows/0e30iIgSffe6xJhFKe35Db/episodes?offset=48&limit=48", + "offset": 0, + "previous": null, + "total": 395 } diff --git a/tests/fixtures/top_artists.json b/tests/fixtures/top_artists.json index 7d7746c..56b22b9 100644 --- a/tests/fixtures/top_artists.json +++ b/tests/fixtures/top_artists.json @@ -1,1512 +1,1502 @@ { - "items": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "followers": { "href": null, "total": 68073 }, - "genres": ["power metal"], - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb1f6d7d07049a2e47d19ac5fc", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051741f6d7d07049a2e47d19ac5fc", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1781f6d7d07049a2e47d19ac5fc", - "width": 160 - } - ], - "name": "Machinae Supremacy", - "popularity": 37, - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" - }, - "followers": { "href": null, "total": 1078839 }, - "genres": [ - "power metal", - "metal", - "symphonic metal", - "folk metal", - "medieval metal", - "heavy metal" - ], - "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", - "id": "5HFkc3t0HYETL4JeEbDB1v", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb7eebe31d9542992df74099f3", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051747eebe31d9542992df74099f3", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1787eebe31d9542992df74099f3", - "width": 160 - } - ], - "name": "Powerwolf", - "popularity": 60, - "type": "artist", - "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "followers": { "href": null, "total": 28638 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc", - "width": 160 - } - ], - "name": "Area 11", - "popularity": 28, - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "followers": { "href": null, "total": 64722 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb0dc6a1a0c7741d136176c027", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051740dc6a1a0c7741d136176c027", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1780dc6a1a0c7741d136176c027", - "width": 160 - } - ], - "name": "Starbenders", - "popularity": 39, - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "followers": { "href": null, "total": 51318 }, - "genres": [ - "german indie", - "german indie pop", - "neue deutsche welle", - "german pop" - ], - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebfa3d426be3f5de7abfa48e74", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174fa3d426be3f5de7abfa48e74", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178fa3d426be3f5de7abfa48e74", - "width": 160 - } - ], - "name": "Dilla", - "popularity": 43, - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" - }, - "followers": { "href": null, "total": 424114 }, - "genres": ["comedy"], - "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", - "id": "3jsyANBBy6gOZUSQhiGclx", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb39f5c5c876f9c86fb1f7869e", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517439f5c5c876f9c86fb1f7869e", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17839f5c5c876f9c86fb1f7869e", - "width": 160 - } - ], - "name": "Ninja Sex Party", - "popularity": 50, - "type": "artist", - "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" - }, - "followers": { "href": null, "total": 29781 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", - "id": "5UlJRJmlRLhQJX8lJuerVq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", - "width": 160 - } - ], - "name": "Telenova", - "popularity": 39, - "type": "artist", - "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "followers": { "href": null, "total": 740284 }, - "genres": ["norwegian pop"], - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", - "width": 160 - } - ], - "name": "Sigrid", - "popularity": 55, - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "followers": { "href": null, "total": 2506437 }, - "genres": [ - "power metal", - "metal", - "heavy metal", - "symphonic metal", - "folk metal" - ], - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", - "width": 160 - } - ], - "name": "Sabaton", - "popularity": 70, - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "followers": { "href": null, "total": 2464287 }, - "genres": ["stutter house", "house", "edm"], - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", - "width": 160 - } - ], - "name": "Fred again..", - "popularity": 78, - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "followers": { "href": null, "total": 1734133 }, - "genres": ["chillwave", "chillstep"], - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", - "width": 160 - } - ], - "name": "ODESZA", - "popularity": 65, - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" - }, - "followers": { "href": null, "total": 57004 }, - "genres": ["power metal", "symphonic metal"], - "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", - "id": "0r6IrOHMBaKiiZPV1zeIu2", - "images": [ - { - "height": 1000, - "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", - "width": 1000 - }, - { - "height": 640, - "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", - "width": 640 - }, - { - "height": 200, - "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", - "width": 200 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", - "width": 64 - } - ], - "name": "Follow The Cipher", - "popularity": 42, - "type": "artist", - "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" - }, - "followers": { "href": null, "total": 3744534 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", - "id": "4NHQUGzhtTLFvgF5SZesLK", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb2360c963315739fc33b01687", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051742360c963315739fc33b01687", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1782360c963315739fc33b01687", - "width": 160 - } - ], - "name": "Tove Lo", - "popularity": 72, - "type": "artist", - "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6tkhw6PSVw7b2M7h5fLBLE" - }, - "followers": { "href": null, "total": 46596 }, - "genres": ["power metal", "symphonic metal"], - "href": "https://api.spotify.com/v1/artists/6tkhw6PSVw7b2M7h5fLBLE", - "id": "6tkhw6PSVw7b2M7h5fLBLE", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5a6feb4fd2ea111ae426e789", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745a6feb4fd2ea111ae426e789", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785a6feb4fd2ea111ae426e789", - "width": 160 - } - ], - "name": "Cyhra", - "popularity": 38, - "type": "artist", - "uri": "spotify:artist:6tkhw6PSVw7b2M7h5fLBLE" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" - }, - "followers": { "href": null, "total": 961706 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", - "id": "7A0awCXkE1FtSU8B0qwOJQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", - "width": 160 - } - ], - "name": "Jamie xx", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" - }, - "followers": { "href": null, "total": 259619 }, - "genres": [ - "gothic rock", - "gothic metal", - "industrial rock", - "industrial", - "darkwave" - ], - "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", - "id": "16AVsBqzmIZTNHd0eX8VbK", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb916d2275e3b91d069e6e7683", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174916d2275e3b91d069e6e7683", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178916d2275e3b91d069e6e7683", - "width": 160 - } - ], - "name": "The Birthday Massacre", - "popularity": 46, - "type": "artist", - "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" - }, - "followers": { "href": null, "total": 210183 }, - "genres": [ - "gothic metal", - "industrial metal", - "gothic rock", - "medieval metal", - "industrial", - "industrial rock" - ], - "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", - "id": "28eLrVsohdXynlnIzQ2VvI", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5e090d979d9e9811a0f4e434", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745e090d979d9e9811a0f4e434", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785e090d979d9e9811a0f4e434", - "width": 160 - } - ], - "name": "Lord Of The Lost", - "popularity": 51, - "type": "artist", - "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" - }, - "followers": { "href": null, "total": 301337 }, - "genres": [ - "power metal", - "symphonic metal", - "metal", - "heavy metal" - ], - "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", - "id": "7k5jeohQCF20a8foBD9ize", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb736a6608998f7d7b5d8d3205", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174736a6608998f7d7b5d8d3205", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178736a6608998f7d7b5d8d3205", - "width": 160 - } - ], - "name": "Battle Beast", - "popularity": 53, - "type": "artist", - "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "followers": { "href": null, "total": 8621 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb44659e33a0314ddfb9bfae77", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517444659e33a0314ddfb9bfae77", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17844659e33a0314ddfb9bfae77", - "width": 160 - } - ], - "name": "The Bardic DM", - "popularity": 44, - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" - }, - "followers": { "href": null, "total": 6175 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", - "id": "6JslXiAQgoATL9rPmLE5du", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebb66006f5c150c98afb32adab", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174b66006f5c150c98afb32adab", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178b66006f5c150c98afb32adab", - "width": 160 - } - ], - "name": "Anike Ekina", - "popularity": 21, - "type": "artist", - "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" - }, - "followers": { "href": null, "total": 172224 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", - "id": "6QzMY3tnu0m56eKUnr4uCF", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", - "width": 160 - } - ], - "name": "Alfie Templeman", - "popularity": 46, - "type": "artist", - "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hE8S8ohRErocpkY7uJW4a" - }, - "followers": { "href": null, "total": 1441830 }, - "genres": [ - "symphonic metal", - "gothic metal", - "gothic rock", - "power metal", - "metal" - ], - "href": "https://api.spotify.com/v1/artists/3hE8S8ohRErocpkY7uJW4a", - "id": "3hE8S8ohRErocpkY7uJW4a", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb9d081a5e8f131e9076ac74de", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051749d081a5e8f131e9076ac74de", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1789d081a5e8f131e9076ac74de", - "width": 160 - } - ], - "name": "Within Temptation", - "popularity": 61, - "type": "artist", - "uri": "spotify:artist:3hE8S8ohRErocpkY7uJW4a" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" - }, - "followers": { "href": null, "total": 146164 }, - "genres": ["slap house"], - "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", - "id": "25sJFKMqDENdsTF7zRXoif", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", - "width": 160 - } - ], - "name": "Klaas", - "popularity": 63, - "type": "artist", - "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" - }, - "followers": { "href": null, "total": 636869 }, - "genres": ["phonk", "brazilian phonk"], - "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", - "id": "5IpS1TN1Crp8Ym4zjiIrtK", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb649f083a33e92e1e03ea77a0", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174649f083a33e92e1e03ea77a0", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178649f083a33e92e1e03ea77a0", - "width": 160 - } - ], - "name": "LXNGVX", - "popularity": 65, - "type": "artist", - "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" - }, - "followers": { "href": null, "total": 31244 }, - "genres": [ - "industrial metal", - "industrial rock", - "industrial", - "symphonic metal" - ], - "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", - "id": "1NcsVSxFdXsnwvE64zV9xX", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb24f41a362f0e9217226ec0c0", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517424f41a362f0e9217226ec0c0", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17824f41a362f0e9217226ec0c0", - "width": 160 - } - ], - "name": "Rave The Reqviem", - "popularity": 36, - "type": "artist", - "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5KKpBU5eC2tJDzf0wmlRp2" - }, - "followers": { "href": null, "total": 3524083 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5KKpBU5eC2tJDzf0wmlRp2", - "id": "5KKpBU5eC2tJDzf0wmlRp2", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebde2e2ac1d53fdf9518354798", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174de2e2ac1d53fdf9518354798", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178de2e2ac1d53fdf9518354798", - "width": 160 - } - ], - "name": "RAYE", - "popularity": 82, - "type": "artist", - "uri": "spotify:artist:5KKpBU5eC2tJDzf0wmlRp2" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" - }, - "followers": { "href": null, "total": 399626 }, - "genres": ["power metal", "symphonic metal", "metal"], - "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", - "id": "0rEuaTPLMhlViNCJrg3NEH", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", - "width": 160 - } - ], - "name": "Beast In Black", - "popularity": 58, - "type": "artist", - "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" - }, - "followers": { "href": null, "total": 1282232 }, - "genres": [ - "power metal", - "speed metal", - "metal", - "symphonic metal" - ], - "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", - "id": "2pH3wEn4eYlMMIIQyKPbVR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", - "width": 160 - } - ], - "name": "DragonForce", - "popularity": 56, - "type": "artist", - "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" - }, - "followers": { "href": null, "total": 981067 }, - "genres": ["gabber", "europop"], - "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", - "id": "6s5ubAp65wXoTZefE01RNR", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", - "width": 160 - } - ], - "name": "Joost", - "popularity": 65, - "type": "artist", - "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2PQVMx0BpRQhzMWLa7X0T6" - }, - "followers": { "href": null, "total": 153017 }, - "genres": [ - "melodic death metal", - "metal", - "death metal", - "progressive metal" - ], - "href": "https://api.spotify.com/v1/artists/2PQVMx0BpRQhzMWLa7X0T6", - "id": "2PQVMx0BpRQhzMWLa7X0T6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb371a2a051989643acde8cd83", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174371a2a051989643acde8cd83", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178371a2a051989643acde8cd83", - "width": 160 - } - ], - "name": "Scar Symmetry", - "popularity": 40, - "type": "artist", - "uri": "spotify:artist:2PQVMx0BpRQhzMWLa7X0T6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" - }, - "followers": { "href": null, "total": 259421 }, - "genres": ["nu disco"], - "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", - "id": "2x7EATekOPhFGRx3syMGEC", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb05dacd07ad341a94d7bf33fe", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517405dacd07ad341a94d7bf33fe", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17805dacd07ad341a94d7bf33fe", - "width": 160 - } - ], - "name": "The Knocks", - "popularity": 57, - "type": "artist", - "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3kcwSBHk3lMgHMHuxjJLNZ" - }, - "followers": { "href": null, "total": 103284 }, - "genres": ["nederpop"], - "href": "https://api.spotify.com/v1/artists/3kcwSBHk3lMgHMHuxjJLNZ", - "id": "3kcwSBHk3lMgHMHuxjJLNZ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb6cb811eb3e3f4e65ef1931fe", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051746cb811eb3e3f4e65ef1931fe", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1786cb811eb3e3f4e65ef1931fe", - "width": 160 - } - ], - "name": "Bazart", - "popularity": 46, - "type": "artist", - "uri": "spotify:artist:3kcwSBHk3lMgHMHuxjJLNZ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" - }, - "followers": { "href": null, "total": 347387 }, - "genres": ["dubstep", "edm", "drumstep", "glitch", "electro house"], - "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", - "id": "0lLY20XpZ9yDobkbHI7u1y", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e", - "width": 160 - } - ], - "name": "Pegboard Nerds", - "popularity": 47, - "type": "artist", - "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/12Zk1DFhCbHY6v3xep2ZjI" - }, - "followers": { "href": null, "total": 742195 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/12Zk1DFhCbHY6v3xep2ZjI", - "id": "12Zk1DFhCbHY6v3xep2ZjI", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb6338990250f5d5a447650ba9", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051746338990250f5d5a447650ba9", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1786338990250f5d5a447650ba9", - "width": 160 - } - ], - "name": "070 Shake", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:12Zk1DFhCbHY6v3xep2ZjI" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5WId4o5jdGVhptNU0uqKxu" - }, - "followers": { "href": null, "total": 247134 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5WId4o5jdGVhptNU0uqKxu", - "id": "5WId4o5jdGVhptNU0uqKxu", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb8a5ad7938183d6c07858d8f6", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051748a5ad7938183d6c07858d8f6", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1788a5ad7938183d6c07858d8f6", - "width": 160 - } - ], - "name": "St. Lucia", - "popularity": 43, - "type": "artist", - "uri": "spotify:artist:5WId4o5jdGVhptNU0uqKxu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2KaW48xlLnXC2v8tvyhWsa" - }, - "followers": { "href": null, "total": 632068 }, - "genres": ["symphonic metal", "power metal", "metal"], - "href": "https://api.spotify.com/v1/artists/2KaW48xlLnXC2v8tvyhWsa", - "id": "2KaW48xlLnXC2v8tvyhWsa", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb293f7f4aebb31292f607bf3b", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174293f7f4aebb31292f607bf3b", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178293f7f4aebb31292f607bf3b", - "width": 160 - } - ], - "name": "Amaranthe", - "popularity": 56, - "type": "artist", - "uri": "spotify:artist:2KaW48xlLnXC2v8tvyhWsa" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/538iX6YCTybcgzsrjDTrFi" - }, - "followers": { "href": null, "total": 57806 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/538iX6YCTybcgzsrjDTrFi", - "id": "538iX6YCTybcgzsrjDTrFi", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb107cf7007e710fc7c68046fe", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174107cf7007e710fc7c68046fe", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178107cf7007e710fc7c68046fe", - "width": 160 - } - ], - "name": "LEAP", - "popularity": 52, - "type": "artist", - "uri": "spotify:artist:538iX6YCTybcgzsrjDTrFi" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6RbFulf0Q38msfpcgh8e0m" - }, - "followers": { "href": null, "total": 22406 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6RbFulf0Q38msfpcgh8e0m", - "id": "6RbFulf0Q38msfpcgh8e0m", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eba8406532e63d57825205e082", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174a8406532e63d57825205e082", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178a8406532e63d57825205e082", - "width": 160 - } - ], - "name": "Ember Falls", - "popularity": 28, - "type": "artist", - "uri": "spotify:artist:6RbFulf0Q38msfpcgh8e0m" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0GG2cWaonE4JPrjcCCQ1EG" - }, - "followers": { "href": null, "total": 405797 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0GG2cWaonE4JPrjcCCQ1EG", - "id": "0GG2cWaonE4JPrjcCCQ1EG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb3e048d910001f75091fd46f3", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051743e048d910001f75091fd46f3", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1783e048d910001f75091fd46f3", - "width": 160 - } - ], - "name": "SG Lewis", - "popularity": 60, - "type": "artist", - "uri": "spotify:artist:0GG2cWaonE4JPrjcCCQ1EG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" - }, - "followers": { "href": null, "total": 1144334 }, - "genres": ["indie soul"], - "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", - "id": "3oKRxpszQKUjjaHz388fVA", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", - "width": 160 - } - ], - "name": "Parcels", - "popularity": 68, - "type": "artist", - "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" - }, - "followers": { "href": null, "total": 154064 }, - "genres": ["nederpop", "hollands"], - "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", - "id": "6mS5GeFyhea6w9OKo8PO3p", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", - "width": 160 - } - ], - "name": "Goldband", - "popularity": 50, - "type": "artist", - "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6nDLku5uL3ou60kvCGZorh" - }, - "followers": { "href": null, "total": 1147281 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/6nDLku5uL3ou60kvCGZorh", - "id": "6nDLku5uL3ou60kvCGZorh", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebb37fd268f79456bf904d617e", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174b37fd268f79456bf904d617e", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178b37fd268f79456bf904d617e", - "width": 160 - } - ], - "name": "Bloodhound Gang", - "popularity": 62, - "type": "artist", - "uri": "spotify:artist:6nDLku5uL3ou60kvCGZorh" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5J9s2Y6roGagMAipTa5XqV" - }, - "followers": { "href": null, "total": 32248 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5J9s2Y6roGagMAipTa5XqV", - "id": "5J9s2Y6roGagMAipTa5XqV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5f08c6f971b426cceb0738cc", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745f08c6f971b426cceb0738cc", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785f08c6f971b426cceb0738cc", - "width": 160 - } - ], - "name": "HONEYMOAN", - "popularity": 42, - "type": "artist", - "uri": "spotify:artist:5J9s2Y6roGagMAipTa5XqV" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" - }, - "followers": { "href": null, "total": 148270 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", - "id": "5TrkbV9x6OdTBlzWPJeBz5", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebb866041cc76e685f65b40474", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174b866041cc76e685f65b40474", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178b866041cc76e685f65b40474", - "width": 160 - } - ], - "name": "Youngr", - "popularity": 41, - "type": "artist", - "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0gCEvTSonJD4GLMZwBnMzg" - }, - "followers": { "href": null, "total": 7079 }, - "genres": [], - "href": "https://api.spotify.com/v1/artists/0gCEvTSonJD4GLMZwBnMzg", - "id": "0gCEvTSonJD4GLMZwBnMzg", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5ebec2eb89a9ed518335d17330b", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab67616100005174ec2eb89a9ed518335d17330b", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f178ec2eb89a9ed518335d17330b", - "width": 160 - } - ], - "name": "Walking On Rivers", - "popularity": 41, - "type": "artist", - "uri": "spotify:artist:0gCEvTSonJD4GLMZwBnMzg" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/57ylwQTnFnIhJh4nu4rxCs" - }, - "followers": { "href": null, "total": 1314180 }, - "genres": ["melodic death metal", "metal", "death metal"], - "href": "https://api.spotify.com/v1/artists/57ylwQTnFnIhJh4nu4rxCs", - "id": "57ylwQTnFnIhJh4nu4rxCs", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb5c3bd919d1344a738af14136", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051745c3bd919d1344a738af14136", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1785c3bd919d1344a738af14136", - "width": 160 - } - ], - "name": "In Flames", - "popularity": 61, - "type": "artist", - "uri": "spotify:artist:57ylwQTnFnIhJh4nu4rxCs" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4wKbEwlRYNLlwUu9OCgLBr" - }, - "followers": { "href": null, "total": 13844 }, - "genres": ["synthwave"], - "href": "https://api.spotify.com/v1/artists/4wKbEwlRYNLlwUu9OCgLBr", - "id": "4wKbEwlRYNLlwUu9OCgLBr", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb39fa4c7432b484e90689df14", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab6761610000517439fa4c7432b484e90689df14", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f17839fa4c7432b484e90689df14", - "width": 160 - } - ], - "name": "Jeremiah Kane", - "popularity": 36, - "type": "artist", - "uri": "spotify:artist:4wKbEwlRYNLlwUu9OCgLBr" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1Qp56T7n950O3EGMsSl81D" - }, - "followers": { "href": null, "total": 3880121 }, - "genres": ["metal", "hard rock"], - "href": "https://api.spotify.com/v1/artists/1Qp56T7n950O3EGMsSl81D", - "id": "1Qp56T7n950O3EGMsSl81D", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab6761610000e5eb2d972470f1f8110be7c07017", - "width": 640 - }, - { - "height": 320, - "url": "https://i.scdn.co/image/ab676161000051742d972470f1f8110be7c07017", - "width": 320 - }, - { - "height": 160, - "url": "https://i.scdn.co/image/ab6761610000f1782d972470f1f8110be7c07017", - "width": 160 - } - ], - "name": "Ghost", - "popularity": 72, - "type": "artist", - "uri": "spotify:artist:1Qp56T7n950O3EGMsSl81D" + "items": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "followers": { "href": null, "total": 68073 }, + "genres": ["power metal"], + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb1f6d7d07049a2e47d19ac5fc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051741f6d7d07049a2e47d19ac5fc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1781f6d7d07049a2e47d19ac5fc", + "width": 160 + } + ], + "name": "Machinae Supremacy", + "popularity": 37, + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5HFkc3t0HYETL4JeEbDB1v" + }, + "followers": { "href": null, "total": 1078839 }, + "genres": [ + "power metal", + "metal", + "symphonic metal", + "folk metal", + "medieval metal", + "heavy metal" + ], + "href": "https://api.spotify.com/v1/artists/5HFkc3t0HYETL4JeEbDB1v", + "id": "5HFkc3t0HYETL4JeEbDB1v", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb7eebe31d9542992df74099f3", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051747eebe31d9542992df74099f3", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1787eebe31d9542992df74099f3", + "width": 160 + } + ], + "name": "Powerwolf", + "popularity": 60, + "type": "artist", + "uri": "spotify:artist:5HFkc3t0HYETL4JeEbDB1v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "followers": { "href": null, "total": 28638 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb4c4e09e55e5b83bb9f35e3dc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051744c4e09e55e5b83bb9f35e3dc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1784c4e09e55e5b83bb9f35e3dc", + "width": 160 + } + ], + "name": "Area 11", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "followers": { "href": null, "total": 64722 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb0dc6a1a0c7741d136176c027", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051740dc6a1a0c7741d136176c027", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1780dc6a1a0c7741d136176c027", + "width": 160 + } + ], + "name": "Starbenders", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "followers": { "href": null, "total": 51318 }, + "genres": [ + "german indie", + "german indie pop", + "neue deutsche welle", + "german pop" + ], + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebfa3d426be3f5de7abfa48e74", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174fa3d426be3f5de7abfa48e74", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178fa3d426be3f5de7abfa48e74", + "width": 160 + } + ], + "name": "Dilla", + "popularity": 43, + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jsyANBBy6gOZUSQhiGclx" + }, + "followers": { "href": null, "total": 424114 }, + "genres": ["comedy"], + "href": "https://api.spotify.com/v1/artists/3jsyANBBy6gOZUSQhiGclx", + "id": "3jsyANBBy6gOZUSQhiGclx", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb39f5c5c876f9c86fb1f7869e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517439f5c5c876f9c86fb1f7869e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17839f5c5c876f9c86fb1f7869e", + "width": 160 + } + ], + "name": "Ninja Sex Party", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:3jsyANBBy6gOZUSQhiGclx" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5UlJRJmlRLhQJX8lJuerVq" + }, + "followers": { "href": null, "total": 29781 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5UlJRJmlRLhQJX8lJuerVq", + "id": "5UlJRJmlRLhQJX8lJuerVq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebe8dba2f5aadd542097eefba4", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174e8dba2f5aadd542097eefba4", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178e8dba2f5aadd542097eefba4", + "width": 160 + } + ], + "name": "Telenova", + "popularity": 39, + "type": "artist", + "uri": "spotify:artist:5UlJRJmlRLhQJX8lJuerVq" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "followers": { "href": null, "total": 740284 }, + "genres": ["norwegian pop"], + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebe264eb6c9a66b212bb108f85", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174e264eb6c9a66b212bb108f85", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178e264eb6c9a66b212bb108f85", + "width": 160 + } + ], + "name": "Sigrid", + "popularity": 55, + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "followers": { "href": null, "total": 2506437 }, + "genres": [ + "power metal", + "metal", + "heavy metal", + "symphonic metal", + "folk metal" + ], + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebfc0524cca1171fac8678f4bf", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174fc0524cca1171fac8678f4bf", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178fc0524cca1171fac8678f4bf", + "width": 160 + } + ], + "name": "Sabaton", + "popularity": 70, + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "followers": { "href": null, "total": 2464287 }, + "genres": ["stutter house", "house", "edm"], + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb381c41adc678e4ce864eb274", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174381c41adc678e4ce864eb274", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178381c41adc678e4ce864eb274", + "width": 160 + } + ], + "name": "Fred again..", + "popularity": 78, + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "followers": { "href": null, "total": 1734133 }, + "genres": ["chillwave", "chillstep"], + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb9f4a0cbfcc9b274344681ccb", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051749f4a0cbfcc9b274344681ccb", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1789f4a0cbfcc9b274344681ccb", + "width": 160 + } + ], + "name": "ODESZA", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0r6IrOHMBaKiiZPV1zeIu2" + }, + "followers": { "href": null, "total": 57004 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/0r6IrOHMBaKiiZPV1zeIu2", + "id": "0r6IrOHMBaKiiZPV1zeIu2", + "images": [ + { + "height": 1000, + "url": "https://i.scdn.co/image/b1cf96c8cca5f174dbe58b8f150672f2582ed204", + "width": 1000 + }, + { + "height": 640, + "url": "https://i.scdn.co/image/9a397c48779c6739b878a66bf15fcfb7416cb783", + "width": 640 + }, + { + "height": 200, + "url": "https://i.scdn.co/image/9e4383625df14ed99fba104d5731e4a8738b51e9", + "width": 200 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/8c8571ddd48c725da78754043c127093f66dd1d4", + "width": 64 + } + ], + "name": "Follow The Cipher", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:0r6IrOHMBaKiiZPV1zeIu2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" + }, + "followers": { "href": null, "total": 3744534 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2360c963315739fc33b01687", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742360c963315739fc33b01687", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782360c963315739fc33b01687", + "width": 160 + } + ], + "name": "Tove Lo", + "popularity": 72, + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6tkhw6PSVw7b2M7h5fLBLE" + }, + "followers": { "href": null, "total": 46596 }, + "genres": ["power metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/6tkhw6PSVw7b2M7h5fLBLE", + "id": "6tkhw6PSVw7b2M7h5fLBLE", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5a6feb4fd2ea111ae426e789", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745a6feb4fd2ea111ae426e789", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785a6feb4fd2ea111ae426e789", + "width": 160 + } + ], + "name": "Cyhra", + "popularity": 38, + "type": "artist", + "uri": "spotify:artist:6tkhw6PSVw7b2M7h5fLBLE" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7A0awCXkE1FtSU8B0qwOJQ" + }, + "followers": { "href": null, "total": 961706 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/7A0awCXkE1FtSU8B0qwOJQ", + "id": "7A0awCXkE1FtSU8B0qwOJQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5b2ba819fa89b17d6ae81567", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745b2ba819fa89b17d6ae81567", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785b2ba819fa89b17d6ae81567", + "width": 160 + } + ], + "name": "Jamie xx", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:7A0awCXkE1FtSU8B0qwOJQ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/16AVsBqzmIZTNHd0eX8VbK" + }, + "followers": { "href": null, "total": 259619 }, + "genres": [ + "gothic rock", + "gothic metal", + "industrial rock", + "industrial", + "darkwave" + ], + "href": "https://api.spotify.com/v1/artists/16AVsBqzmIZTNHd0eX8VbK", + "id": "16AVsBqzmIZTNHd0eX8VbK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb916d2275e3b91d069e6e7683", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174916d2275e3b91d069e6e7683", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178916d2275e3b91d069e6e7683", + "width": 160 + } + ], + "name": "The Birthday Massacre", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:16AVsBqzmIZTNHd0eX8VbK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "followers": { "href": null, "total": 210183 }, + "genres": [ + "gothic metal", + "industrial metal", + "gothic rock", + "medieval metal", + "industrial", + "industrial rock" + ], + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5e090d979d9e9811a0f4e434", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745e090d979d9e9811a0f4e434", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785e090d979d9e9811a0f4e434", + "width": 160 + } + ], + "name": "Lord Of The Lost", + "popularity": 51, + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "followers": { "href": null, "total": 301337 }, + "genres": ["power metal", "symphonic metal", "metal", "heavy metal"], + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb736a6608998f7d7b5d8d3205", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174736a6608998f7d7b5d8d3205", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178736a6608998f7d7b5d8d3205", + "width": 160 + } + ], + "name": "Battle Beast", + "popularity": 53, + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "followers": { "href": null, "total": 8621 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb44659e33a0314ddfb9bfae77", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517444659e33a0314ddfb9bfae77", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17844659e33a0314ddfb9bfae77", + "width": 160 + } + ], + "name": "The Bardic DM", + "popularity": 44, + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "followers": { "href": null, "total": 6175 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb66006f5c150c98afb32adab", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b66006f5c150c98afb32adab", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b66006f5c150c98afb32adab", + "width": 160 + } + ], + "name": "Anike Ekina", + "popularity": 21, + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6QzMY3tnu0m56eKUnr4uCF" + }, + "followers": { "href": null, "total": 172224 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6QzMY3tnu0m56eKUnr4uCF", + "id": "6QzMY3tnu0m56eKUnr4uCF", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb1c878723fffd5445c38e5778", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051741c878723fffd5445c38e5778", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1781c878723fffd5445c38e5778", + "width": 160 + } + ], + "name": "Alfie Templeman", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:6QzMY3tnu0m56eKUnr4uCF" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hE8S8ohRErocpkY7uJW4a" + }, + "followers": { "href": null, "total": 1441830 }, + "genres": [ + "symphonic metal", + "gothic metal", + "gothic rock", + "power metal", + "metal" + ], + "href": "https://api.spotify.com/v1/artists/3hE8S8ohRErocpkY7uJW4a", + "id": "3hE8S8ohRErocpkY7uJW4a", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb9d081a5e8f131e9076ac74de", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051749d081a5e8f131e9076ac74de", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1789d081a5e8f131e9076ac74de", + "width": 160 + } + ], + "name": "Within Temptation", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:3hE8S8ohRErocpkY7uJW4a" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/25sJFKMqDENdsTF7zRXoif" + }, + "followers": { "href": null, "total": 146164 }, + "genres": ["slap house"], + "href": "https://api.spotify.com/v1/artists/25sJFKMqDENdsTF7zRXoif", + "id": "25sJFKMqDENdsTF7zRXoif", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebed9ed4f6ed4b2fe64a67efa7", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174ed9ed4f6ed4b2fe64a67efa7", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178ed9ed4f6ed4b2fe64a67efa7", + "width": 160 + } + ], + "name": "Klaas", + "popularity": 63, + "type": "artist", + "uri": "spotify:artist:25sJFKMqDENdsTF7zRXoif" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" + }, + "followers": { "href": null, "total": 636869 }, + "genres": ["phonk", "brazilian phonk"], + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb649f083a33e92e1e03ea77a0", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174649f083a33e92e1e03ea77a0", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178649f083a33e92e1e03ea77a0", + "width": 160 + } + ], + "name": "LXNGVX", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "followers": { "href": null, "total": 31244 }, + "genres": [ + "industrial metal", + "industrial rock", + "industrial", + "symphonic metal" + ], + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb24f41a362f0e9217226ec0c0", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517424f41a362f0e9217226ec0c0", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17824f41a362f0e9217226ec0c0", + "width": 160 + } + ], + "name": "Rave The Reqviem", + "popularity": 36, + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5KKpBU5eC2tJDzf0wmlRp2" + }, + "followers": { "href": null, "total": 3524083 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5KKpBU5eC2tJDzf0wmlRp2", + "id": "5KKpBU5eC2tJDzf0wmlRp2", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebde2e2ac1d53fdf9518354798", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174de2e2ac1d53fdf9518354798", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178de2e2ac1d53fdf9518354798", + "width": 160 + } + ], + "name": "RAYE", + "popularity": 82, + "type": "artist", + "uri": "spotify:artist:5KKpBU5eC2tJDzf0wmlRp2" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "followers": { "href": null, "total": 399626 }, + "genres": ["power metal", "symphonic metal", "metal"], + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebc3eeafedc823cf781661e4bb", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174c3eeafedc823cf781661e4bb", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178c3eeafedc823cf781661e4bb", + "width": 160 + } + ], + "name": "Beast In Black", + "popularity": 58, + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2pH3wEn4eYlMMIIQyKPbVR" + }, + "followers": { "href": null, "total": 1282232 }, + "genres": ["power metal", "speed metal", "metal", "symphonic metal"], + "href": "https://api.spotify.com/v1/artists/2pH3wEn4eYlMMIIQyKPbVR", + "id": "2pH3wEn4eYlMMIIQyKPbVR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2c0d92dae9b4af4c8a565c3b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742c0d92dae9b4af4c8a565c3b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782c0d92dae9b4af4c8a565c3b", + "width": 160 + } + ], + "name": "DragonForce", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2pH3wEn4eYlMMIIQyKPbVR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6s5ubAp65wXoTZefE01RNR" + }, + "followers": { "href": null, "total": 981067 }, + "genres": ["gabber", "europop"], + "href": "https://api.spotify.com/v1/artists/6s5ubAp65wXoTZefE01RNR", + "id": "6s5ubAp65wXoTZefE01RNR", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eba317ca98cdf346619c07c3cd", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174a317ca98cdf346619c07c3cd", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178a317ca98cdf346619c07c3cd", + "width": 160 + } + ], + "name": "Joost", + "popularity": 65, + "type": "artist", + "uri": "spotify:artist:6s5ubAp65wXoTZefE01RNR" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2PQVMx0BpRQhzMWLa7X0T6" + }, + "followers": { "href": null, "total": 153017 }, + "genres": [ + "melodic death metal", + "metal", + "death metal", + "progressive metal" + ], + "href": "https://api.spotify.com/v1/artists/2PQVMx0BpRQhzMWLa7X0T6", + "id": "2PQVMx0BpRQhzMWLa7X0T6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb371a2a051989643acde8cd83", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174371a2a051989643acde8cd83", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178371a2a051989643acde8cd83", + "width": 160 + } + ], + "name": "Scar Symmetry", + "popularity": 40, + "type": "artist", + "uri": "spotify:artist:2PQVMx0BpRQhzMWLa7X0T6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2x7EATekOPhFGRx3syMGEC" + }, + "followers": { "href": null, "total": 259421 }, + "genres": ["nu disco"], + "href": "https://api.spotify.com/v1/artists/2x7EATekOPhFGRx3syMGEC", + "id": "2x7EATekOPhFGRx3syMGEC", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb05dacd07ad341a94d7bf33fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517405dacd07ad341a94d7bf33fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17805dacd07ad341a94d7bf33fe", + "width": 160 + } + ], + "name": "The Knocks", + "popularity": 57, + "type": "artist", + "uri": "spotify:artist:2x7EATekOPhFGRx3syMGEC" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3kcwSBHk3lMgHMHuxjJLNZ" + }, + "followers": { "href": null, "total": 103284 }, + "genres": ["nederpop"], + "href": "https://api.spotify.com/v1/artists/3kcwSBHk3lMgHMHuxjJLNZ", + "id": "3kcwSBHk3lMgHMHuxjJLNZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6cb811eb3e3f4e65ef1931fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746cb811eb3e3f4e65ef1931fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786cb811eb3e3f4e65ef1931fe", + "width": 160 + } + ], + "name": "Bazart", + "popularity": 46, + "type": "artist", + "uri": "spotify:artist:3kcwSBHk3lMgHMHuxjJLNZ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lLY20XpZ9yDobkbHI7u1y" + }, + "followers": { "href": null, "total": 347387 }, + "genres": ["dubstep", "edm", "drumstep", "glitch", "electro house"], + "href": "https://api.spotify.com/v1/artists/0lLY20XpZ9yDobkbHI7u1y", + "id": "0lLY20XpZ9yDobkbHI7u1y", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb0fb1220e7e3ace47ebad023e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051740fb1220e7e3ace47ebad023e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1780fb1220e7e3ace47ebad023e", + "width": 160 + } + ], + "name": "Pegboard Nerds", + "popularity": 47, + "type": "artist", + "uri": "spotify:artist:0lLY20XpZ9yDobkbHI7u1y" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/12Zk1DFhCbHY6v3xep2ZjI" + }, + "followers": { "href": null, "total": 742195 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/12Zk1DFhCbHY6v3xep2ZjI", + "id": "12Zk1DFhCbHY6v3xep2ZjI", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6338990250f5d5a447650ba9", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746338990250f5d5a447650ba9", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786338990250f5d5a447650ba9", + "width": 160 + } + ], + "name": "070 Shake", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:12Zk1DFhCbHY6v3xep2ZjI" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5WId4o5jdGVhptNU0uqKxu" + }, + "followers": { "href": null, "total": 247134 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5WId4o5jdGVhptNU0uqKxu", + "id": "5WId4o5jdGVhptNU0uqKxu", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb8a5ad7938183d6c07858d8f6", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051748a5ad7938183d6c07858d8f6", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1788a5ad7938183d6c07858d8f6", + "width": 160 + } + ], + "name": "St. Lucia", + "popularity": 43, + "type": "artist", + "uri": "spotify:artist:5WId4o5jdGVhptNU0uqKxu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2KaW48xlLnXC2v8tvyhWsa" + }, + "followers": { "href": null, "total": 632068 }, + "genres": ["symphonic metal", "power metal", "metal"], + "href": "https://api.spotify.com/v1/artists/2KaW48xlLnXC2v8tvyhWsa", + "id": "2KaW48xlLnXC2v8tvyhWsa", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb293f7f4aebb31292f607bf3b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174293f7f4aebb31292f607bf3b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178293f7f4aebb31292f607bf3b", + "width": 160 + } + ], + "name": "Amaranthe", + "popularity": 56, + "type": "artist", + "uri": "spotify:artist:2KaW48xlLnXC2v8tvyhWsa" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/538iX6YCTybcgzsrjDTrFi" + }, + "followers": { "href": null, "total": 57806 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/538iX6YCTybcgzsrjDTrFi", + "id": "538iX6YCTybcgzsrjDTrFi", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb107cf7007e710fc7c68046fe", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174107cf7007e710fc7c68046fe", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178107cf7007e710fc7c68046fe", + "width": 160 + } + ], + "name": "LEAP", + "popularity": 52, + "type": "artist", + "uri": "spotify:artist:538iX6YCTybcgzsrjDTrFi" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6RbFulf0Q38msfpcgh8e0m" + }, + "followers": { "href": null, "total": 22406 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6RbFulf0Q38msfpcgh8e0m", + "id": "6RbFulf0Q38msfpcgh8e0m", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eba8406532e63d57825205e082", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174a8406532e63d57825205e082", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178a8406532e63d57825205e082", + "width": 160 + } + ], + "name": "Ember Falls", + "popularity": 28, + "type": "artist", + "uri": "spotify:artist:6RbFulf0Q38msfpcgh8e0m" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0GG2cWaonE4JPrjcCCQ1EG" + }, + "followers": { "href": null, "total": 405797 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0GG2cWaonE4JPrjcCCQ1EG", + "id": "0GG2cWaonE4JPrjcCCQ1EG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb3e048d910001f75091fd46f3", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051743e048d910001f75091fd46f3", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1783e048d910001f75091fd46f3", + "width": 160 + } + ], + "name": "SG Lewis", + "popularity": 60, + "type": "artist", + "uri": "spotify:artist:0GG2cWaonE4JPrjcCCQ1EG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3oKRxpszQKUjjaHz388fVA" + }, + "followers": { "href": null, "total": 1144334 }, + "genres": ["indie soul"], + "href": "https://api.spotify.com/v1/artists/3oKRxpszQKUjjaHz388fVA", + "id": "3oKRxpszQKUjjaHz388fVA", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb3f64ee564d3617f6a764f933", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051743f64ee564d3617f6a764f933", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1783f64ee564d3617f6a764f933", + "width": 160 + } + ], + "name": "Parcels", + "popularity": 68, + "type": "artist", + "uri": "spotify:artist:3oKRxpszQKUjjaHz388fVA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6mS5GeFyhea6w9OKo8PO3p" + }, + "followers": { "href": null, "total": 154064 }, + "genres": ["nederpop", "hollands"], + "href": "https://api.spotify.com/v1/artists/6mS5GeFyhea6w9OKo8PO3p", + "id": "6mS5GeFyhea6w9OKo8PO3p", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb6b0979bff02a5a668cd2f457", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051746b0979bff02a5a668cd2f457", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1786b0979bff02a5a668cd2f457", + "width": 160 + } + ], + "name": "Goldband", + "popularity": 50, + "type": "artist", + "uri": "spotify:artist:6mS5GeFyhea6w9OKo8PO3p" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6nDLku5uL3ou60kvCGZorh" + }, + "followers": { "href": null, "total": 1147281 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/6nDLku5uL3ou60kvCGZorh", + "id": "6nDLku5uL3ou60kvCGZorh", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb37fd268f79456bf904d617e", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b37fd268f79456bf904d617e", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b37fd268f79456bf904d617e", + "width": 160 + } + ], + "name": "Bloodhound Gang", + "popularity": 62, + "type": "artist", + "uri": "spotify:artist:6nDLku5uL3ou60kvCGZorh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5J9s2Y6roGagMAipTa5XqV" + }, + "followers": { "href": null, "total": 32248 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5J9s2Y6roGagMAipTa5XqV", + "id": "5J9s2Y6roGagMAipTa5XqV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5f08c6f971b426cceb0738cc", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745f08c6f971b426cceb0738cc", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785f08c6f971b426cceb0738cc", + "width": 160 + } + ], + "name": "HONEYMOAN", + "popularity": 42, + "type": "artist", + "uri": "spotify:artist:5J9s2Y6roGagMAipTa5XqV" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5TrkbV9x6OdTBlzWPJeBz5" + }, + "followers": { "href": null, "total": 148270 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/5TrkbV9x6OdTBlzWPJeBz5", + "id": "5TrkbV9x6OdTBlzWPJeBz5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebb866041cc76e685f65b40474", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174b866041cc76e685f65b40474", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178b866041cc76e685f65b40474", + "width": 160 + } + ], + "name": "Youngr", + "popularity": 41, + "type": "artist", + "uri": "spotify:artist:5TrkbV9x6OdTBlzWPJeBz5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0gCEvTSonJD4GLMZwBnMzg" + }, + "followers": { "href": null, "total": 7079 }, + "genres": [], + "href": "https://api.spotify.com/v1/artists/0gCEvTSonJD4GLMZwBnMzg", + "id": "0gCEvTSonJD4GLMZwBnMzg", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5ebec2eb89a9ed518335d17330b", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab67616100005174ec2eb89a9ed518335d17330b", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f178ec2eb89a9ed518335d17330b", + "width": 160 + } + ], + "name": "Walking On Rivers", + "popularity": 41, + "type": "artist", + "uri": "spotify:artist:0gCEvTSonJD4GLMZwBnMzg" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/57ylwQTnFnIhJh4nu4rxCs" + }, + "followers": { "href": null, "total": 1314180 }, + "genres": ["melodic death metal", "metal", "death metal"], + "href": "https://api.spotify.com/v1/artists/57ylwQTnFnIhJh4nu4rxCs", + "id": "57ylwQTnFnIhJh4nu4rxCs", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb5c3bd919d1344a738af14136", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051745c3bd919d1344a738af14136", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1785c3bd919d1344a738af14136", + "width": 160 + } + ], + "name": "In Flames", + "popularity": 61, + "type": "artist", + "uri": "spotify:artist:57ylwQTnFnIhJh4nu4rxCs" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4wKbEwlRYNLlwUu9OCgLBr" + }, + "followers": { "href": null, "total": 13844 }, + "genres": ["synthwave"], + "href": "https://api.spotify.com/v1/artists/4wKbEwlRYNLlwUu9OCgLBr", + "id": "4wKbEwlRYNLlwUu9OCgLBr", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb39fa4c7432b484e90689df14", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab6761610000517439fa4c7432b484e90689df14", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f17839fa4c7432b484e90689df14", + "width": 160 + } + ], + "name": "Jeremiah Kane", + "popularity": 36, + "type": "artist", + "uri": "spotify:artist:4wKbEwlRYNLlwUu9OCgLBr" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1Qp56T7n950O3EGMsSl81D" + }, + "followers": { "href": null, "total": 3880121 }, + "genres": ["metal", "hard rock"], + "href": "https://api.spotify.com/v1/artists/1Qp56T7n950O3EGMsSl81D", + "id": "1Qp56T7n950O3EGMsSl81D", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab6761610000e5eb2d972470f1f8110be7c07017", + "width": 640 + }, + { + "height": 320, + "url": "https://i.scdn.co/image/ab676161000051742d972470f1f8110be7c07017", + "width": 320 + }, + { + "height": 160, + "url": "https://i.scdn.co/image/ab6761610000f1782d972470f1f8110be7c07017", + "width": 160 } - ], - "total": 198, - "limit": 48, - "offset": 0, - "href": "https://api.spotify.com/v1/me/top/artists?limit=48", - "next": "https://api.spotify.com/v1/me/top/artists?offset=48&limit=48", - "previous": null + ], + "name": "Ghost", + "popularity": 72, + "type": "artist", + "uri": "spotify:artist:1Qp56T7n950O3EGMsSl81D" + } + ], + "total": 198, + "limit": 48, + "offset": 0, + "href": "https://api.spotify.com/v1/me/top/artists?limit=48", + "next": "https://api.spotify.com/v1/me/top/artists?offset=48&limit=48", + "previous": null } diff --git a/tests/fixtures/top_tracks.json b/tests/fixtures/top_tracks.json index c24b87f..39409a9 100644 --- a/tests/fixtures/top_tracks.json +++ b/tests/fixtures/top_tracks.json @@ -1,19979 +1,19979 @@ { - "items": [ - { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" - }, - "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", - "id": "28eLrVsohdXynlnIzQ2VvI", - "name": "Lord Of The Lost", - "type": "artist", - "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/30g6j2xuqynpAiohatDOW6" - }, - "href": "https://api.spotify.com/v1/albums/30g6j2xuqynpAiohatDOW6", - "id": "30g6j2xuqynpAiohatDOW6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27322e8fe51124a59f85957aa1b", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0222e8fe51124a59f85957aa1b", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485122e8fe51124a59f85957aa1b", - "width": 64 - } - ], - "is_playable": true, - "name": "OPVS NOIR Vol. 1", - "release_date": "2025-08-08", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:30g6j2xuqynpAiohatDOW6" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" - }, - "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", - "id": "28eLrVsohdXynlnIzQ2VvI", - "name": "Lord Of The Lost", - "type": "artist", - "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 173023, - "explicit": false, - "external_ids": { "isrc": "ATN262528501" }, + "items": [ + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/28p5fdZ2TAGx8z88KFZo5d" + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" }, - "href": "https://api.spotify.com/v1/tracks/28p5fdZ2TAGx8z88KFZo5d", - "id": "28p5fdZ2TAGx8z88KFZo5d", - "is_local": false, - "is_playable": true, - "name": "My Sanctuary", - "popularity": 37, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:28p5fdZ2TAGx8z88KFZo5d" + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/30g6j2xuqynpAiohatDOW6" }, + "href": "https://api.spotify.com/v1/albums/30g6j2xuqynpAiohatDOW6", + "id": "30g6j2xuqynpAiohatDOW6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27322e8fe51124a59f85957aa1b", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0222e8fe51124a59f85957aa1b", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485122e8fe51124a59f85957aa1b", + "width": 64 + } + ], + "is_playable": true, + "name": "OPVS NOIR Vol. 1", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:30g6j2xuqynpAiohatDOW6" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" - }, - "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", - "id": "1N2FgBLehaq77UEdJhCt7f", - "name": "Saint Etienne", - "type": "artist", - "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5CEt8piPRnEk8BAE9gpdAz" - }, - "href": "https://api.spotify.com/v1/albums/5CEt8piPRnEk8BAE9gpdAz", - "id": "5CEt8piPRnEk8BAE9gpdAz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731cef74bb3b67d18911704d1c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021cef74bb3b67d18911704d1c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511cef74bb3b67d18911704d1c", - "width": 64 - } - ], - "is_playable": true, - "name": "International", - "release_date": "2025-09-05", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:5CEt8piPRnEk8BAE9gpdAz" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" - }, - "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", - "id": "1N2FgBLehaq77UEdJhCt7f", - "name": "Saint Etienne", - "type": "artist", - "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" - }, - "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", - "id": "0RwXnFrEoI8tltFvYpJgP6", - "name": "Confidence Man", - "type": "artist", - "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 183960, - "explicit": false, - "external_ids": { "isrc": "GBPVV2400755" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/28eLrVsohdXynlnIzQ2VvI" + }, + "href": "https://api.spotify.com/v1/artists/28eLrVsohdXynlnIzQ2VvI", + "id": "28eLrVsohdXynlnIzQ2VvI", + "name": "Lord Of The Lost", + "type": "artist", + "uri": "spotify:artist:28eLrVsohdXynlnIzQ2VvI" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173023, + "explicit": false, + "external_ids": { "isrc": "ATN262528501" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/28p5fdZ2TAGx8z88KFZo5d" + }, + "href": "https://api.spotify.com/v1/tracks/28p5fdZ2TAGx8z88KFZo5d", + "id": "28p5fdZ2TAGx8z88KFZo5d", + "is_local": false, + "is_playable": true, + "name": "My Sanctuary", + "popularity": 37, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:28p5fdZ2TAGx8z88KFZo5d" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6UYzOKGh4hXae0reTWKK24" + "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" }, - "href": "https://api.spotify.com/v1/tracks/6UYzOKGh4hXae0reTWKK24", - "id": "6UYzOKGh4hXae0reTWKK24", - "is_local": false, - "is_playable": true, - "name": "Brand New Me", - "popularity": 32, - "preview_url": null, - "track_number": 7, - "type": "track", - "uri": "spotify:track:6UYzOKGh4hXae0reTWKK24" + "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", + "id": "1N2FgBLehaq77UEdJhCt7f", + "name": "Saint Etienne", + "type": "artist", + "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5CEt8piPRnEk8BAE9gpdAz" }, + "href": "https://api.spotify.com/v1/albums/5CEt8piPRnEk8BAE9gpdAz", + "id": "5CEt8piPRnEk8BAE9gpdAz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731cef74bb3b67d18911704d1c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021cef74bb3b67d18911704d1c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511cef74bb3b67d18911704d1c", + "width": 64 + } + ], + "is_playable": true, + "name": "International", + "release_date": "2025-09-05", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:5CEt8piPRnEk8BAE9gpdAz" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" - }, - "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", - "id": "5IpS1TN1Crp8Ym4zjiIrtK", - "name": "LXNGVX", - "type": "artist", - "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1l8if9zQ8F0MEHVWYrMREe" - }, - "href": "https://api.spotify.com/v1/albums/1l8if9zQ8F0MEHVWYrMREe", - "id": "1l8if9zQ8F0MEHVWYrMREe", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273427c80da235cb76fc89b8e27", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02427c80da235cb76fc89b8e27", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851427c80da235cb76fc89b8e27", - "width": 64 - } - ], - "is_playable": true, - "name": "Montagem Mysterious Game", - "release_date": "2023-12-01", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:1l8if9zQ8F0MEHVWYrMREe" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" - }, - "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", - "id": "5IpS1TN1Crp8Ym4zjiIrtK", - "name": "LXNGVX", - "type": "artist", - "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 103495, - "explicit": false, - "external_ids": { "isrc": "QZTBF2315869" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f" + }, + "href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f", + "id": "1N2FgBLehaq77UEdJhCt7f", + "name": "Saint Etienne", + "type": "artist", + "uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0RwXnFrEoI8tltFvYpJgP6" + }, + "href": "https://api.spotify.com/v1/artists/0RwXnFrEoI8tltFvYpJgP6", + "id": "0RwXnFrEoI8tltFvYpJgP6", + "name": "Confidence Man", + "type": "artist", + "uri": "spotify:artist:0RwXnFrEoI8tltFvYpJgP6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 183960, + "explicit": false, + "external_ids": { "isrc": "GBPVV2400755" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6UYzOKGh4hXae0reTWKK24" + }, + "href": "https://api.spotify.com/v1/tracks/6UYzOKGh4hXae0reTWKK24", + "id": "6UYzOKGh4hXae0reTWKK24", + "is_local": false, + "is_playable": true, + "name": "Brand New Me", + "popularity": 32, + "preview_url": null, + "track_number": 7, + "type": "track", + "uri": "spotify:track:6UYzOKGh4hXae0reTWKK24" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/7vOmSP2647oNUGGEhWd1cr" + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" }, - "href": "https://api.spotify.com/v1/tracks/7vOmSP2647oNUGGEhWd1cr", - "id": "7vOmSP2647oNUGGEhWd1cr", - "is_local": false, - "is_playable": true, - "name": "Montagem Mysterious Game", - "popularity": 71, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7vOmSP2647oNUGGEhWd1cr" + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "name": "LXNGVX", + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1l8if9zQ8F0MEHVWYrMREe" }, + "href": "https://api.spotify.com/v1/albums/1l8if9zQ8F0MEHVWYrMREe", + "id": "1l8if9zQ8F0MEHVWYrMREe", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273427c80da235cb76fc89b8e27", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02427c80da235cb76fc89b8e27", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851427c80da235cb76fc89b8e27", + "width": 64 + } + ], + "is_playable": true, + "name": "Montagem Mysterious Game", + "release_date": "2023-12-01", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1l8if9zQ8F0MEHVWYrMREe" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" - }, - "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", - "id": "3Jvz71ZoKZaTQbbQyXfHwT", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", - "width": 64 - } - ], - "is_playable": true, - "name": "USB", - "release_date": "2026-01-23", - "release_date_precision": "day", - "total_tracks": 35, - "type": "album", - "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" - }, - "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", - "id": "3NqV2DJoAWsjl787bWaHW7", - "name": "Amyl and The Sniffers", - "type": "artist", - "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 219130, - "explicit": false, - "external_ids": { "isrc": "GBAHS2501375" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/5IpS1TN1Crp8Ym4zjiIrtK" + }, + "href": "https://api.spotify.com/v1/artists/5IpS1TN1Crp8Ym4zjiIrtK", + "id": "5IpS1TN1Crp8Ym4zjiIrtK", + "name": "LXNGVX", + "type": "artist", + "uri": "spotify:artist:5IpS1TN1Crp8Ym4zjiIrtK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 103495, + "explicit": false, + "external_ids": { "isrc": "QZTBF2315869" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7vOmSP2647oNUGGEhWd1cr" + }, + "href": "https://api.spotify.com/v1/tracks/7vOmSP2647oNUGGEhWd1cr", + "id": "7vOmSP2647oNUGGEhWd1cr", + "is_local": false, + "is_playable": true, + "name": "Montagem Mysterious Game", + "popularity": 71, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7vOmSP2647oNUGGEhWd1cr" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/1A3XE7nDuLKrgnzXNNoFlW" + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" }, - "href": "https://api.spotify.com/v1/tracks/1A3XE7nDuLKrgnzXNNoFlW", - "id": "1A3XE7nDuLKrgnzXNNoFlW", - "is_local": false, - "is_playable": true, - "name": "you're a star", - "popularity": 55, - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:1A3XE7nDuLKrgnzXNNoFlW" + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" }, + "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", + "id": "3Jvz71ZoKZaTQbbQyXfHwT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", + "width": 64 + } + ], + "is_playable": true, + "name": "USB", + "release_date": "2026-01-23", + "release_date_precision": "day", + "total_tracks": 35, + "type": "album", + "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" - }, - "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", - "id": "6kACVPfCOnqzgfEF5ryl0x", - "name": "Johnny Cash", - "type": "artist", - "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" - } - ], - "available_markets": ["ES", "PT"], - "external_urls": { - "spotify": "https://open.spotify.com/album/2D071Op9WrIRHEfQYRdjDc" - }, - "href": "https://api.spotify.com/v1/albums/2D071Op9WrIRHEfQYRdjDc", - "id": "2D071Op9WrIRHEfQYRdjDc", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733323a7383204e24a5f91f54c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023323a7383204e24a5f91f54c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513323a7383204e24a5f91f54c", - "width": 64 - } - ], - "is_playable": true, - "name": "Silver", - "release_date": "1979", - "release_date_precision": "year", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:2D071Op9WrIRHEfQYRdjDc" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" - }, - "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", - "id": "6kACVPfCOnqzgfEF5ryl0x", - "name": "Johnny Cash", - "type": "artist", - "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" - } - ], - "available_markets": ["ES", "PT"], - "disc_number": 1, - "duration_ms": 225493, - "explicit": false, - "external_ids": { "isrc": "USSM17900687" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3NqV2DJoAWsjl787bWaHW7" + }, + "href": "https://api.spotify.com/v1/artists/3NqV2DJoAWsjl787bWaHW7", + "id": "3NqV2DJoAWsjl787bWaHW7", + "name": "Amyl and The Sniffers", + "type": "artist", + "uri": "spotify:artist:3NqV2DJoAWsjl787bWaHW7" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 219130, + "explicit": false, + "external_ids": { "isrc": "GBAHS2501375" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1A3XE7nDuLKrgnzXNNoFlW" + }, + "href": "https://api.spotify.com/v1/tracks/1A3XE7nDuLKrgnzXNNoFlW", + "id": "1A3XE7nDuLKrgnzXNNoFlW", + "is_local": false, + "is_playable": true, + "name": "you're a star", + "popularity": 55, + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:1A3XE7nDuLKrgnzXNNoFlW" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6WrgT3Ztfis3E9V64u7u6t" + "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" }, - "href": "https://api.spotify.com/v1/tracks/6WrgT3Ztfis3E9V64u7u6t", - "id": "6WrgT3Ztfis3E9V64u7u6t", - "is_local": false, - "is_playable": true, - "name": "(Ghost) Riders in the Sky", - "popularity": 29, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:6WrgT3Ztfis3E9V64u7u6t" + "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", + "id": "6kACVPfCOnqzgfEF5ryl0x", + "name": "Johnny Cash", + "type": "artist", + "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" + } + ], + "available_markets": ["ES", "PT"], + "external_urls": { + "spotify": "https://open.spotify.com/album/2D071Op9WrIRHEfQYRdjDc" }, + "href": "https://api.spotify.com/v1/albums/2D071Op9WrIRHEfQYRdjDc", + "id": "2D071Op9WrIRHEfQYRdjDc", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2733323a7383204e24a5f91f54c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e023323a7383204e24a5f91f54c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048513323a7383204e24a5f91f54c", + "width": 64 + } + ], + "is_playable": true, + "name": "Silver", + "release_date": "1979", + "release_date_precision": "year", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2D071Op9WrIRHEfQYRdjDc" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" - }, - "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", - "id": "6os1temnovzJIEGRUmn3fG", - "name": "BNYX\u00ae", - "type": "artist", - "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" - }, - "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", - "id": "0fA0VVWsXO9YnASrzqfmYu", - "name": "Kid Cudi", - "type": "artist", - "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "name": "R\u00f6yksopp", - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" - }, - "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", - "id": "05U0USUzKB8vLfdOWggfqC", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491", - "width": 64 - } - ], - "is_playable": true, - "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", - "release_date": "2026-01-30", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" + "external_urls": { + "spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x" + }, + "href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x", + "id": "6kACVPfCOnqzgfEF5ryl0x", + "name": "Johnny Cash", + "type": "artist", + "uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x" + } + ], + "available_markets": ["ES", "PT"], + "disc_number": 1, + "duration_ms": 225493, + "explicit": false, + "external_ids": { "isrc": "USSM17900687" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6WrgT3Ztfis3E9V64u7u6t" + }, + "href": "https://api.spotify.com/v1/tracks/6WrgT3Ztfis3E9V64u7u6t", + "id": "6WrgT3Ztfis3E9V64u7u6t", + "is_local": false, + "is_playable": true, + "name": "(Ghost) Riders in the Sky", + "popularity": 29, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:6WrgT3Ztfis3E9V64u7u6t" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" - }, - "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", - "id": "6os1temnovzJIEGRUmn3fG", - "name": "BNYX\u00ae", - "type": "artist", - "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" - }, - "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", - "id": "0fA0VVWsXO9YnASrzqfmYu", - "name": "Kid Cudi", - "type": "artist", - "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" - }, - "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", - "id": "5nPOO9iTcrs9k6yFffPxjH", - "name": "R\u00f6yksopp", - "type": "artist", - "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 217243, - "explicit": true, - "external_ids": { "isrc": "USUG12508483" }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" }, - "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", - "id": "55QDC1UHFcqlnH0xSvvB7T", - "is_local": false, - "is_playable": true, - "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", - "popularity": 63, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/05U0USUzKB8vLfdOWggfqC" }, + "href": "https://api.spotify.com/v1/albums/05U0USUzKB8vLfdOWggfqC", + "id": "05U0USUzKB8vLfdOWggfqC", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27329b9d44066f5211cc732f491", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0229b9d44066f5211cc732f491", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485129b9d44066f5211cc732f491", + "width": 64 + } + ], + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:05U0USUzKB8vLfdOWggfqC" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5Oc8vZtWeKU5aikCtKXDYK" - }, - "href": "https://api.spotify.com/v1/albums/5Oc8vZtWeKU5aikCtKXDYK", - "id": "5Oc8vZtWeKU5aikCtKXDYK", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273060527443968eda6776ba762", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02060527443968eda6776ba762", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851060527443968eda6776ba762", - "width": 64 - } - ], - "is_playable": true, - "name": "Modern Synthesis", - "release_date": "2016-07-01", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:5Oc8vZtWeKU5aikCtKXDYK" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" - }, - "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", - "id": "3jULn43a6xfzqleyeFjPIq", - "name": "Area 11", - "type": "artist", - "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 216506, - "explicit": false, - "external_ids": { "isrc": "UK9291600010" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/6os1temnovzJIEGRUmn3fG" + }, + "href": "https://api.spotify.com/v1/artists/6os1temnovzJIEGRUmn3fG", + "id": "6os1temnovzJIEGRUmn3fG", + "name": "BNYX\u00ae", + "type": "artist", + "uri": "spotify:artist:6os1temnovzJIEGRUmn3fG" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0fA0VVWsXO9YnASrzqfmYu" + }, + "href": "https://api.spotify.com/v1/artists/0fA0VVWsXO9YnASrzqfmYu", + "id": "0fA0VVWsXO9YnASrzqfmYu", + "name": "Kid Cudi", + "type": "artist", + "uri": "spotify:artist:0fA0VVWsXO9YnASrzqfmYu" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5nPOO9iTcrs9k6yFffPxjH" + }, + "href": "https://api.spotify.com/v1/artists/5nPOO9iTcrs9k6yFffPxjH", + "id": "5nPOO9iTcrs9k6yFffPxjH", + "name": "R\u00f6yksopp", + "type": "artist", + "uri": "spotify:artist:5nPOO9iTcrs9k6yFffPxjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 217243, + "explicit": true, + "external_ids": { "isrc": "USUG12508483" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/55QDC1UHFcqlnH0xSvvB7T" + }, + "href": "https://api.spotify.com/v1/tracks/55QDC1UHFcqlnH0xSvvB7T", + "id": "55QDC1UHFcqlnH0xSvvB7T", + "is_local": false, + "is_playable": true, + "name": "EVERYWHERE I GO (REMIND ME) feat. Kid Cudi", + "popularity": 63, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:55QDC1UHFcqlnH0xSvvB7T" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/1PkSZNDQNdgCLG4RtgMjlD" + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" }, - "href": "https://api.spotify.com/v1/tracks/1PkSZNDQNdgCLG4RtgMjlD", - "id": "1PkSZNDQNdgCLG4RtgMjlD", - "is_local": false, - "is_playable": true, - "name": "After the Flags", - "popularity": 15, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:1PkSZNDQNdgCLG4RtgMjlD" + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5Oc8vZtWeKU5aikCtKXDYK" }, + "href": "https://api.spotify.com/v1/albums/5Oc8vZtWeKU5aikCtKXDYK", + "id": "5Oc8vZtWeKU5aikCtKXDYK", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273060527443968eda6776ba762", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02060527443968eda6776ba762", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851060527443968eda6776ba762", + "width": 64 + } + ], + "is_playable": true, + "name": "Modern Synthesis", + "release_date": "2016-07-01", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:5Oc8vZtWeKU5aikCtKXDYK" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" - }, - "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", - "id": "7ouEqUl1PCVPlNninecdcz", - "name": "HAVEN.", - "type": "artist", - "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" - }, - "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", - "id": "29G5je6tT7As2ZFY72CdXs", - "name": "Kaitlin Aragon", - "type": "artist", - "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" - }, - "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", - "id": "6gePAokYlEquPQ4LDVc1ri", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099", - "width": 64 - } - ], - "is_playable": true, - "name": "I Run", - "release_date": "2025-11-21", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" + "external_urls": { + "spotify": "https://open.spotify.com/artist/3jULn43a6xfzqleyeFjPIq" + }, + "href": "https://api.spotify.com/v1/artists/3jULn43a6xfzqleyeFjPIq", + "id": "3jULn43a6xfzqleyeFjPIq", + "name": "Area 11", + "type": "artist", + "uri": "spotify:artist:3jULn43a6xfzqleyeFjPIq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 216506, + "explicit": false, + "external_ids": { "isrc": "UK9291600010" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1PkSZNDQNdgCLG4RtgMjlD" + }, + "href": "https://api.spotify.com/v1/tracks/1PkSZNDQNdgCLG4RtgMjlD", + "id": "1PkSZNDQNdgCLG4RtgMjlD", + "is_local": false, + "is_playable": true, + "name": "After the Flags", + "popularity": 15, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:1PkSZNDQNdgCLG4RtgMjlD" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" - }, - "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", - "id": "7ouEqUl1PCVPlNninecdcz", - "name": "HAVEN.", - "type": "artist", - "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" - }, - "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", - "id": "29G5je6tT7As2ZFY72CdXs", - "name": "Kaitlin Aragon", - "type": "artist", - "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 129565, - "explicit": false, - "external_ids": { "isrc": "CA5KR2603887" }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" }, - "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", - "id": "1WwQ714xuznu44tEnkem2g", - "is_local": false, - "is_playable": true, - "name": "I Run", - "popularity": 86, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6gePAokYlEquPQ4LDVc1ri" }, + "href": "https://api.spotify.com/v1/albums/6gePAokYlEquPQ4LDVc1ri", + "id": "6gePAokYlEquPQ4LDVc1ri", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27337085d118f1f004df8511099", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0237085d118f1f004df8511099", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485137085d118f1f004df8511099", + "width": 64 + } + ], + "is_playable": true, + "name": "I Run", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6gePAokYlEquPQ4LDVc1ri" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" - }, - "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", - "id": "76TvRLbqtgOcAoIsBplbfz", - "name": "Soft Faith", - "type": "artist", - "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" - }, - "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", - "id": "0lDo9zbShSX0EXnxLpUZIU", - "name": "LEXXE", - "type": "artist", - "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2k9qbwMJmO8HTT9TiYIeTG" - }, - "href": "https://api.spotify.com/v1/albums/2k9qbwMJmO8HTT9TiYIeTG", - "id": "2k9qbwMJmO8HTT9TiYIeTG", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27340a6359bfce111ee9afedf92", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0240a6359bfce111ee9afedf92", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485140a6359bfce111ee9afedf92", - "width": 64 - } - ], - "is_playable": true, - "name": "Hold Me Closer", - "release_date": "2025-07-03", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2k9qbwMJmO8HTT9TiYIeTG" + "external_urls": { + "spotify": "https://open.spotify.com/artist/7ouEqUl1PCVPlNninecdcz" + }, + "href": "https://api.spotify.com/v1/artists/7ouEqUl1PCVPlNninecdcz", + "id": "7ouEqUl1PCVPlNninecdcz", + "name": "HAVEN.", + "type": "artist", + "uri": "spotify:artist:7ouEqUl1PCVPlNninecdcz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/29G5je6tT7As2ZFY72CdXs" + }, + "href": "https://api.spotify.com/v1/artists/29G5je6tT7As2ZFY72CdXs", + "id": "29G5je6tT7As2ZFY72CdXs", + "name": "Kaitlin Aragon", + "type": "artist", + "uri": "spotify:artist:29G5je6tT7As2ZFY72CdXs" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 129565, + "explicit": false, + "external_ids": { "isrc": "CA5KR2603887" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1WwQ714xuznu44tEnkem2g" + }, + "href": "https://api.spotify.com/v1/tracks/1WwQ714xuznu44tEnkem2g", + "id": "1WwQ714xuznu44tEnkem2g", + "is_local": false, + "is_playable": true, + "name": "I Run", + "popularity": 86, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1WwQ714xuznu44tEnkem2g" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" - }, - "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", - "id": "76TvRLbqtgOcAoIsBplbfz", - "name": "Soft Faith", - "type": "artist", - "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" - }, - "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", - "id": "0lDo9zbShSX0EXnxLpUZIU", - "name": "LEXXE", - "type": "artist", - "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 199680, - "explicit": false, - "external_ids": { "isrc": "QZTB52535927" }, + "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", + "id": "76TvRLbqtgOcAoIsBplbfz", + "name": "Soft Faith", + "type": "artist", + "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/3Z9opAvcyRGRJBV6VcaptT" + "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" }, - "href": "https://api.spotify.com/v1/tracks/3Z9opAvcyRGRJBV6VcaptT", - "id": "3Z9opAvcyRGRJBV6VcaptT", - "is_local": false, - "is_playable": true, - "name": "Hold Me Closer", - "popularity": 18, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:3Z9opAvcyRGRJBV6VcaptT" + "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", + "id": "0lDo9zbShSX0EXnxLpUZIU", + "name": "LEXXE", + "type": "artist", + "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2k9qbwMJmO8HTT9TiYIeTG" }, + "href": "https://api.spotify.com/v1/albums/2k9qbwMJmO8HTT9TiYIeTG", + "id": "2k9qbwMJmO8HTT9TiYIeTG", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27340a6359bfce111ee9afedf92", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0240a6359bfce111ee9afedf92", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485140a6359bfce111ee9afedf92", + "width": 64 + } + ], + "is_playable": true, + "name": "Hold Me Closer", + "release_date": "2025-07-03", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2k9qbwMJmO8HTT9TiYIeTG" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" - }, - "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", - "id": "5pdyjBIaY5o1yOyexGIUc6", - "name": "Lights", - "type": "artist", - "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4aR6RrvJDzBrXYQTx7x5p5" - }, - "href": "https://api.spotify.com/v1/albums/4aR6RrvJDzBrXYQTx7x5p5", - "id": "4aR6RrvJDzBrXYQTx7x5p5", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c9f25860a66cf9f593b38b57", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c9f25860a66cf9f593b38b57", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c9f25860a66cf9f593b38b57", - "width": 64 - } - ], - "is_playable": true, - "name": "A6EXTENDED", - "release_date": "2026-01-30", - "release_date_precision": "day", - "total_tracks": 21, - "type": "album", - "uri": "spotify:album:4aR6RrvJDzBrXYQTx7x5p5" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" - }, - "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", - "id": "5pdyjBIaY5o1yOyexGIUc6", - "name": "Lights", - "type": "artist", - "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 230117, - "explicit": false, - "external_ids": { "isrc": "CACN02500016" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/76TvRLbqtgOcAoIsBplbfz" + }, + "href": "https://api.spotify.com/v1/artists/76TvRLbqtgOcAoIsBplbfz", + "id": "76TvRLbqtgOcAoIsBplbfz", + "name": "Soft Faith", + "type": "artist", + "uri": "spotify:artist:76TvRLbqtgOcAoIsBplbfz" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0lDo9zbShSX0EXnxLpUZIU" + }, + "href": "https://api.spotify.com/v1/artists/0lDo9zbShSX0EXnxLpUZIU", + "id": "0lDo9zbShSX0EXnxLpUZIU", + "name": "LEXXE", + "type": "artist", + "uri": "spotify:artist:0lDo9zbShSX0EXnxLpUZIU" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 199680, + "explicit": false, + "external_ids": { "isrc": "QZTB52535927" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3Z9opAvcyRGRJBV6VcaptT" + }, + "href": "https://api.spotify.com/v1/tracks/3Z9opAvcyRGRJBV6VcaptT", + "id": "3Z9opAvcyRGRJBV6VcaptT", + "is_local": false, + "is_playable": true, + "name": "Hold Me Closer", + "popularity": 18, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:3Z9opAvcyRGRJBV6VcaptT" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3J3RYcIvUlauZxZI6hPLun" + "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" }, - "href": "https://api.spotify.com/v1/tracks/3J3RYcIvUlauZxZI6hPLun", - "id": "3J3RYcIvUlauZxZI6hPLun", - "is_local": false, - "is_playable": true, - "name": "EDUCATION", - "popularity": 41, - "preview_url": null, - "track_number": 14, - "type": "track", - "uri": "spotify:track:3J3RYcIvUlauZxZI6hPLun" + "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", + "id": "5pdyjBIaY5o1yOyexGIUc6", + "name": "Lights", + "type": "artist", + "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4aR6RrvJDzBrXYQTx7x5p5" }, + "href": "https://api.spotify.com/v1/albums/4aR6RrvJDzBrXYQTx7x5p5", + "id": "4aR6RrvJDzBrXYQTx7x5p5", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c9f25860a66cf9f593b38b57", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c9f25860a66cf9f593b38b57", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c9f25860a66cf9f593b38b57", + "width": 64 + } + ], + "is_playable": true, + "name": "A6EXTENDED", + "release_date": "2026-01-30", + "release_date_precision": "day", + "total_tracks": 21, + "type": "album", + "uri": "spotify:album:4aR6RrvJDzBrXYQTx7x5p5" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" - }, - "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", - "id": "54apQNp3ruFrK20sYZvmdf", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95", - "width": 64 - } - ], - "is_playable": true, - "name": "Bardcore Mayhem, Vol. 1", - "release_date": "2025-09-24", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 172079, - "explicit": false, - "external_ids": { "isrc": "QT3F22572862" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/5pdyjBIaY5o1yOyexGIUc6" + }, + "href": "https://api.spotify.com/v1/artists/5pdyjBIaY5o1yOyexGIUc6", + "id": "5pdyjBIaY5o1yOyexGIUc6", + "name": "Lights", + "type": "artist", + "uri": "spotify:artist:5pdyjBIaY5o1yOyexGIUc6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230117, + "explicit": false, + "external_ids": { "isrc": "CACN02500016" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3J3RYcIvUlauZxZI6hPLun" + }, + "href": "https://api.spotify.com/v1/tracks/3J3RYcIvUlauZxZI6hPLun", + "id": "3J3RYcIvUlauZxZI6hPLun", + "is_local": false, + "is_playable": true, + "name": "EDUCATION", + "popularity": 41, + "preview_url": null, + "track_number": 14, + "type": "track", + "uri": "spotify:track:3J3RYcIvUlauZxZI6hPLun" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" }, - "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", - "id": "0f56nfzpUaXE6t5E3oza3q", - "is_local": false, - "is_playable": true, - "name": "Arrow splitter", - "popularity": 37, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/54apQNp3ruFrK20sYZvmdf" }, + "href": "https://api.spotify.com/v1/albums/54apQNp3ruFrK20sYZvmdf", + "id": "54apQNp3ruFrK20sYZvmdf", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27373af64d05e42fafa8d4cea95", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0273af64d05e42fafa8d4cea95", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485173af64d05e42fafa8d4cea95", + "width": 64 + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 1", + "release_date": "2025-09-24", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:54apQNp3ruFrK20sYZvmdf" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" - }, - "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", - "id": "37P2qivB9weEafn1Y2VeF8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", - "width": 64 - } - ], - "is_playable": true, - "name": "There\u2019s Always More That I Could Say", - "release_date": "2025-10-24", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 173251, - "explicit": false, - "external_ids": { "isrc": "GBUM72501847" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172079, + "explicit": false, + "external_ids": { "isrc": "QT3F22572862" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0f56nfzpUaXE6t5E3oza3q" + }, + "href": "https://api.spotify.com/v1/tracks/0f56nfzpUaXE6t5E3oza3q", + "id": "0f56nfzpUaXE6t5E3oza3q", + "is_local": false, + "is_playable": true, + "name": "Arrow splitter", + "popularity": 37, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:0f56nfzpUaXE6t5E3oza3q" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" }, - "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", - "id": "4qM72D1GHUQRXwnmLZUcMH", - "is_local": false, - "is_playable": true, - "name": "Do It Again", - "popularity": 42, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH" + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" }, + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "width": 64 + } + ], + "is_playable": true, + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4pPLwz3J2zEskvu1Z6ATQ6" - }, - "href": "https://api.spotify.com/v1/albums/4pPLwz3J2zEskvu1Z6ATQ6", - "id": "4pPLwz3J2zEskvu1Z6ATQ6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273209cf8ab39b8856a6ab9668e", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02209cf8ab39b8856a6ab9668e", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851209cf8ab39b8856a6ab9668e", - "width": 64 - } - ], - "is_playable": true, - "name": "Avenue", - "release_date": "2022-10-07", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:4pPLwz3J2zEskvu1Z6ATQ6" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 182013, - "explicit": false, - "external_ids": { "isrc": "DEQ322200330" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 173251, + "explicit": false, + "external_ids": { "isrc": "GBUM72501847" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4qM72D1GHUQRXwnmLZUcMH" + }, + "href": "https://api.spotify.com/v1/tracks/4qM72D1GHUQRXwnmLZUcMH", + "id": "4qM72D1GHUQRXwnmLZUcMH", + "is_local": false, + "is_playable": true, + "name": "Do It Again", + "popularity": 42, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:4qM72D1GHUQRXwnmLZUcMH" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6CjwjsGzDVn2hwREI6BKoY" + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" }, - "href": "https://api.spotify.com/v1/tracks/6CjwjsGzDVn2hwREI6BKoY", - "id": "6CjwjsGzDVn2hwREI6BKoY", - "is_local": false, - "is_playable": true, - "name": "Avenue", - "popularity": 42, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6CjwjsGzDVn2hwREI6BKoY" + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4pPLwz3J2zEskvu1Z6ATQ6" }, + "href": "https://api.spotify.com/v1/albums/4pPLwz3J2zEskvu1Z6ATQ6", + "id": "4pPLwz3J2zEskvu1Z6ATQ6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273209cf8ab39b8856a6ab9668e", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02209cf8ab39b8856a6ab9668e", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851209cf8ab39b8856a6ab9668e", + "width": 64 + } + ], + "is_playable": true, + "name": "Avenue", + "release_date": "2022-10-07", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:4pPLwz3J2zEskvu1Z6ATQ6" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6NBVjRVV1TNiZ3a9odGlOQ" - }, - "href": "https://api.spotify.com/v1/albums/6NBVjRVV1TNiZ3a9odGlOQ", - "id": "6NBVjRVV1TNiZ3a9odGlOQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736549db795138dc2b76258712", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026549db795138dc2b76258712", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516549db795138dc2b76258712", - "width": 64 - } - ], - "is_playable": true, - "name": "A View From The End Of The World", - "release_date": "2010-01-01", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:6NBVjRVV1TNiZ3a9odGlOQ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 212000, - "explicit": false, - "external_ids": { "isrc": "FIUM71001654" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 182013, + "explicit": false, + "external_ids": { "isrc": "DEQ322200330" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6CjwjsGzDVn2hwREI6BKoY" + }, + "href": "https://api.spotify.com/v1/tracks/6CjwjsGzDVn2hwREI6BKoY", + "id": "6CjwjsGzDVn2hwREI6BKoY", + "is_local": false, + "is_playable": true, + "name": "Avenue", + "popularity": 42, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6CjwjsGzDVn2hwREI6BKoY" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3YjFUYTXrJrFsYXmxaXmqY" + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" }, - "href": "https://api.spotify.com/v1/tracks/3YjFUYTXrJrFsYXmxaXmqY", - "id": "3YjFUYTXrJrFsYXmxaXmqY", - "is_local": false, - "is_playable": true, - "name": "The Greatest Show On Earth", - "popularity": 17, - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:3YjFUYTXrJrFsYXmxaXmqY" + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6NBVjRVV1TNiZ3a9odGlOQ" }, + "href": "https://api.spotify.com/v1/albums/6NBVjRVV1TNiZ3a9odGlOQ", + "id": "6NBVjRVV1TNiZ3a9odGlOQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736549db795138dc2b76258712", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026549db795138dc2b76258712", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516549db795138dc2b76258712", + "width": 64 + } + ], + "is_playable": true, + "name": "A View From The End Of The World", + "release_date": "2010-01-01", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:6NBVjRVV1TNiZ3a9odGlOQ" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" - }, - "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", - "id": "0Cs47vvRsPgEfliBU9KDiB", - "name": "D.O.D", - "type": "artist", - "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" - }, - "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", - "id": "1jmVSpWhzD8vciWg2Qtd5V", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae", - "width": 64 - } - ], - "is_playable": true, - "name": "Think About Us", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 212000, + "explicit": false, + "external_ids": { "isrc": "FIUM71001654" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3YjFUYTXrJrFsYXmxaXmqY" + }, + "href": "https://api.spotify.com/v1/tracks/3YjFUYTXrJrFsYXmxaXmqY", + "id": "3YjFUYTXrJrFsYXmxaXmqY", + "is_local": false, + "is_playable": true, + "name": "The Greatest Show On Earth", + "popularity": 17, + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:3YjFUYTXrJrFsYXmxaXmqY" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" - }, - "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", - "id": "39B7ChWwrWDs7zXlsu3MoP", - "name": "Sonny Fodera", - "type": "artist", - "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" - }, - "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", - "id": "0Cs47vvRsPgEfliBU9KDiB", - "name": "D.O.D", - "type": "artist", - "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" - }, - "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", - "id": "4STmXOXUF3UieHU46NWLVt", - "name": "Poppy Baskcomb", - "type": "artist", - "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 178148, - "explicit": false, - "external_ids": { "isrc": "US39N2510213" }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" }, - "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", - "id": "0lRnxwJeUOxwEvWMw4uQKj", - "is_local": false, - "is_playable": true, - "name": "Think About Us", - "popularity": 80, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jmVSpWhzD8vciWg2Qtd5V" }, + "href": "https://api.spotify.com/v1/albums/1jmVSpWhzD8vciWg2Qtd5V", + "id": "1jmVSpWhzD8vciWg2Qtd5V", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2734f623d698447c6ee9394c0ae", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e024f623d698447c6ee9394c0ae", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048514f623d698447c6ee9394c0ae", + "width": 64 + } + ], + "is_playable": true, + "name": "Think About Us", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1jmVSpWhzD8vciWg2Qtd5V" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" - }, - "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", - "id": "48QP1FCIq76VufzDPShGi5", - "name": "Auger", - "type": "artist", - "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/468UoiP1ZXTvpSERBIri1j" - }, - "href": "https://api.spotify.com/v1/albums/468UoiP1ZXTvpSERBIri1j", - "id": "468UoiP1ZXTvpSERBIri1j", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a61bd5bca56d2b07e1d1ee11", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a61bd5bca56d2b07e1d1ee11", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a61bd5bca56d2b07e1d1ee11", - "width": 64 - } - ], - "is_playable": true, - "name": "Too Soon", - "release_date": "2025-09-26", - "release_date_precision": "day", - "total_tracks": 2, - "type": "album", - "uri": "spotify:album:468UoiP1ZXTvpSERBIri1j" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" - }, - "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", - "id": "48QP1FCIq76VufzDPShGi5", - "name": "Auger", - "type": "artist", - "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0O6Y0Loo99vhWd86Hls3L5" - }, - "href": "https://api.spotify.com/v1/artists/0O6Y0Loo99vhWd86Hls3L5", - "id": "0O6Y0Loo99vhWd86Hls3L5", - "name": "Bonnie Mavis", - "type": "artist", - "uri": "spotify:artist:0O6Y0Loo99vhWd86Hls3L5" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 220754, - "explicit": false, - "external_ids": { "isrc": "DEZC62514448" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/39B7ChWwrWDs7zXlsu3MoP" + }, + "href": "https://api.spotify.com/v1/artists/39B7ChWwrWDs7zXlsu3MoP", + "id": "39B7ChWwrWDs7zXlsu3MoP", + "name": "Sonny Fodera", + "type": "artist", + "uri": "spotify:artist:39B7ChWwrWDs7zXlsu3MoP" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0Cs47vvRsPgEfliBU9KDiB" + }, + "href": "https://api.spotify.com/v1/artists/0Cs47vvRsPgEfliBU9KDiB", + "id": "0Cs47vvRsPgEfliBU9KDiB", + "name": "D.O.D", + "type": "artist", + "uri": "spotify:artist:0Cs47vvRsPgEfliBU9KDiB" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4STmXOXUF3UieHU46NWLVt" + }, + "href": "https://api.spotify.com/v1/artists/4STmXOXUF3UieHU46NWLVt", + "id": "4STmXOXUF3UieHU46NWLVt", + "name": "Poppy Baskcomb", + "type": "artist", + "uri": "spotify:artist:4STmXOXUF3UieHU46NWLVt" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 178148, + "explicit": false, + "external_ids": { "isrc": "US39N2510213" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0lRnxwJeUOxwEvWMw4uQKj" + }, + "href": "https://api.spotify.com/v1/tracks/0lRnxwJeUOxwEvWMw4uQKj", + "id": "0lRnxwJeUOxwEvWMw4uQKj", + "is_local": false, + "is_playable": true, + "name": "Think About Us", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0lRnxwJeUOxwEvWMw4uQKj" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/2N3GqfCKAbHkmGW69RzWN9" + "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" }, - "href": "https://api.spotify.com/v1/tracks/2N3GqfCKAbHkmGW69RzWN9", - "id": "2N3GqfCKAbHkmGW69RzWN9", - "is_local": false, - "is_playable": true, - "name": "Too Soon", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:2N3GqfCKAbHkmGW69RzWN9" + "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", + "id": "48QP1FCIq76VufzDPShGi5", + "name": "Auger", + "type": "artist", + "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/468UoiP1ZXTvpSERBIri1j" }, + "href": "https://api.spotify.com/v1/albums/468UoiP1ZXTvpSERBIri1j", + "id": "468UoiP1ZXTvpSERBIri1j", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a61bd5bca56d2b07e1d1ee11", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a61bd5bca56d2b07e1d1ee11", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a61bd5bca56d2b07e1d1ee11", + "width": 64 + } + ], + "is_playable": true, + "name": "Too Soon", + "release_date": "2025-09-26", + "release_date_precision": "day", + "total_tracks": 2, + "type": "album", + "uri": "spotify:album:468UoiP1ZXTvpSERBIri1j" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3q0YOrU7o2opcNSvPWwH5g" - }, - "href": "https://api.spotify.com/v1/albums/3q0YOrU7o2opcNSvPWwH5g", - "id": "3q0YOrU7o2opcNSvPWwH5g", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27381ddb1d811d3fbc640b4b123", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0281ddb1d811d3fbc640b4b123", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485181ddb1d811d3fbc640b4b123", - "width": 64 - } - ], - "is_playable": true, - "name": "Bardcore Mayhem, Vol. 3", - "release_date": "2025-11-02", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:3q0YOrU7o2opcNSvPWwH5g" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" - }, - "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", - "id": "0TVQlzIjzD4ToSVeXIB15H", - "name": "The Bardic DM", - "type": "artist", - "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 206439, - "explicit": false, - "external_ids": { "isrc": "QT6ED2527743" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/48QP1FCIq76VufzDPShGi5" + }, + "href": "https://api.spotify.com/v1/artists/48QP1FCIq76VufzDPShGi5", + "id": "48QP1FCIq76VufzDPShGi5", + "name": "Auger", + "type": "artist", + "uri": "spotify:artist:48QP1FCIq76VufzDPShGi5" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0O6Y0Loo99vhWd86Hls3L5" + }, + "href": "https://api.spotify.com/v1/artists/0O6Y0Loo99vhWd86Hls3L5", + "id": "0O6Y0Loo99vhWd86Hls3L5", + "name": "Bonnie Mavis", + "type": "artist", + "uri": "spotify:artist:0O6Y0Loo99vhWd86Hls3L5" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 220754, + "explicit": false, + "external_ids": { "isrc": "DEZC62514448" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2N3GqfCKAbHkmGW69RzWN9" + }, + "href": "https://api.spotify.com/v1/tracks/2N3GqfCKAbHkmGW69RzWN9", + "id": "2N3GqfCKAbHkmGW69RzWN9", + "is_local": false, + "is_playable": true, + "name": "Too Soon", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:2N3GqfCKAbHkmGW69RzWN9" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/5syCodXydzRuemOKomfq7m" + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" }, - "href": "https://api.spotify.com/v1/tracks/5syCodXydzRuemOKomfq7m", - "id": "5syCodXydzRuemOKomfq7m", - "is_local": false, - "is_playable": true, - "name": "Slay It, Then Saut\u00e9 It", - "popularity": 36, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:5syCodXydzRuemOKomfq7m" + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3q0YOrU7o2opcNSvPWwH5g" }, + "href": "https://api.spotify.com/v1/albums/3q0YOrU7o2opcNSvPWwH5g", + "id": "3q0YOrU7o2opcNSvPWwH5g", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27381ddb1d811d3fbc640b4b123", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0281ddb1d811d3fbc640b4b123", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485181ddb1d811d3fbc640b4b123", + "width": 64 + } + ], + "is_playable": true, + "name": "Bardcore Mayhem, Vol. 3", + "release_date": "2025-11-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:3q0YOrU7o2opcNSvPWwH5g" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" - }, - "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", - "id": "4NHQUGzhtTLFvgF5SZesLK", - "name": "Tove Lo", - "type": "artist", - "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0HO9NtwyP7ZqB1jZ70MJL6" - }, - "href": "https://api.spotify.com/v1/albums/0HO9NtwyP7ZqB1jZ70MJL6", - "id": "0HO9NtwyP7ZqB1jZ70MJL6", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273aeb431774ee02fb6b7a9fea3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02aeb431774ee02fb6b7a9fea3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851aeb431774ee02fb6b7a9fea3", - "width": 64 - } - ], - "is_playable": true, - "name": "Dirt Femme", - "release_date": "2022-10-14", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:0HO9NtwyP7ZqB1jZ70MJL6" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" - }, - "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", - "id": "4NHQUGzhtTLFvgF5SZesLK", - "name": "Tove Lo", - "type": "artist", - "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 231333, - "explicit": false, - "external_ids": { "isrc": "QMUY42200072" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/0TVQlzIjzD4ToSVeXIB15H" + }, + "href": "https://api.spotify.com/v1/artists/0TVQlzIjzD4ToSVeXIB15H", + "id": "0TVQlzIjzD4ToSVeXIB15H", + "name": "The Bardic DM", + "type": "artist", + "uri": "spotify:artist:0TVQlzIjzD4ToSVeXIB15H" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 206439, + "explicit": false, + "external_ids": { "isrc": "QT6ED2527743" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5syCodXydzRuemOKomfq7m" + }, + "href": "https://api.spotify.com/v1/tracks/5syCodXydzRuemOKomfq7m", + "id": "5syCodXydzRuemOKomfq7m", + "is_local": false, + "is_playable": true, + "name": "Slay It, Then Saut\u00e9 It", + "popularity": 36, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:5syCodXydzRuemOKomfq7m" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/7owdogCJWuV3VFpluGIKgH" + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" }, - "href": "https://api.spotify.com/v1/tracks/7owdogCJWuV3VFpluGIKgH", - "id": "7owdogCJWuV3VFpluGIKgH", - "is_local": false, - "is_playable": true, - "name": "Grapefruit", - "popularity": 49, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:7owdogCJWuV3VFpluGIKgH" + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "name": "Tove Lo", + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0HO9NtwyP7ZqB1jZ70MJL6" }, + "href": "https://api.spotify.com/v1/albums/0HO9NtwyP7ZqB1jZ70MJL6", + "id": "0HO9NtwyP7ZqB1jZ70MJL6", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273aeb431774ee02fb6b7a9fea3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02aeb431774ee02fb6b7a9fea3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851aeb431774ee02fb6b7a9fea3", + "width": 64 + } + ], + "is_playable": true, + "name": "Dirt Femme", + "release_date": "2022-10-14", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:0HO9NtwyP7ZqB1jZ70MJL6" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - } - ], - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" - }, - "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", - "id": "3Jvz71ZoKZaTQbbQyXfHwT", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", - "width": 64 - } - ], - "is_playable": true, - "name": "USB", - "release_date": "2026-01-23", - "release_date_precision": "day", - "total_tracks": 35, - "type": "album", - "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" - }, - "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", - "id": "4oLeXFyACqeem2VImYeBFe", - "name": "Fred again..", - "type": "artist", - "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" - }, - "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", - "id": "3an9rnsXKPCAMlZgH4A0n4", - "name": "KETTAMA", - "type": "artist", - "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" - }, - "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", - "id": "5fEdUhbIAf9JlPhlc3swPx", - "name": "Shady Nasty", - "type": "artist", - "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 286285, - "explicit": true, - "external_ids": { "isrc": "GBAHS2501370" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4NHQUGzhtTLFvgF5SZesLK" + }, + "href": "https://api.spotify.com/v1/artists/4NHQUGzhtTLFvgF5SZesLK", + "id": "4NHQUGzhtTLFvgF5SZesLK", + "name": "Tove Lo", + "type": "artist", + "uri": "spotify:artist:4NHQUGzhtTLFvgF5SZesLK" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 231333, + "explicit": false, + "external_ids": { "isrc": "QMUY42200072" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7owdogCJWuV3VFpluGIKgH" + }, + "href": "https://api.spotify.com/v1/tracks/7owdogCJWuV3VFpluGIKgH", + "id": "7owdogCJWuV3VFpluGIKgH", + "is_local": false, + "is_playable": true, + "name": "Grapefruit", + "popularity": 49, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:7owdogCJWuV3VFpluGIKgH" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/2Fxdbus1OWJBhy3NMHUF7J" + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" }, - "href": "https://api.spotify.com/v1/tracks/2Fxdbus1OWJBhy3NMHUF7J", - "id": "2Fxdbus1OWJBhy3NMHUF7J", - "is_local": false, - "is_playable": true, - "name": "HARDSTYLE 2", - "popularity": 55, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:2Fxdbus1OWJBhy3NMHUF7J" + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3Jvz71ZoKZaTQbbQyXfHwT" }, + "href": "https://api.spotify.com/v1/albums/3Jvz71ZoKZaTQbbQyXfHwT", + "id": "3Jvz71ZoKZaTQbbQyXfHwT", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27376281d4278154e7ee9d731c3", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0276281d4278154e7ee9d731c3", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485176281d4278154e7ee9d731c3", + "width": 64 + } + ], + "is_playable": true, + "name": "USB", + "release_date": "2026-01-23", + "release_date_precision": "day", + "total_tracks": 35, + "type": "album", + "uri": "spotify:album:3Jvz71ZoKZaTQbbQyXfHwT" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" - }, - "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", - "id": "1gfIkFZ4hIs2gETkRVaY68", - "name": "Sons of the Pioneers", - "type": "artist", - "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" - } - ], - "available_markets": ["PR", "US"], - "external_urls": { - "spotify": "https://open.spotify.com/album/43W6LvGekoOd3Yk5ym8Bj7" - }, - "href": "https://api.spotify.com/v1/albums/43W6LvGekoOd3Yk5ym8Bj7", - "id": "43W6LvGekoOd3Yk5ym8Bj7", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27375b0c528969decafb51425a4", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0275b0c528969decafb51425a4", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485175b0c528969decafb51425a4", - "width": 64 - } - ], - "is_playable": true, - "name": "Cool Water (With Bonus Tracks)", - "release_date": "1959-05-10", - "release_date_precision": "day", - "total_tracks": 24, - "type": "album", - "uri": "spotify:album:43W6LvGekoOd3Yk5ym8Bj7" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" - }, - "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", - "id": "1gfIkFZ4hIs2gETkRVaY68", - "name": "Sons of the Pioneers", - "type": "artist", - "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" - } - ], - "available_markets": ["PR", "US"], - "disc_number": 1, - "duration_ms": 141946, - "explicit": false, - "external_ids": { "isrc": "USRN10100775" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4oLeXFyACqeem2VImYeBFe" + }, + "href": "https://api.spotify.com/v1/artists/4oLeXFyACqeem2VImYeBFe", + "id": "4oLeXFyACqeem2VImYeBFe", + "name": "Fred again..", + "type": "artist", + "uri": "spotify:artist:4oLeXFyACqeem2VImYeBFe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/3an9rnsXKPCAMlZgH4A0n4" + }, + "href": "https://api.spotify.com/v1/artists/3an9rnsXKPCAMlZgH4A0n4", + "id": "3an9rnsXKPCAMlZgH4A0n4", + "name": "KETTAMA", + "type": "artist", + "uri": "spotify:artist:3an9rnsXKPCAMlZgH4A0n4" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5fEdUhbIAf9JlPhlc3swPx" + }, + "href": "https://api.spotify.com/v1/artists/5fEdUhbIAf9JlPhlc3swPx", + "id": "5fEdUhbIAf9JlPhlc3swPx", + "name": "Shady Nasty", + "type": "artist", + "uri": "spotify:artist:5fEdUhbIAf9JlPhlc3swPx" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 286285, + "explicit": true, + "external_ids": { "isrc": "GBAHS2501370" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2Fxdbus1OWJBhy3NMHUF7J" + }, + "href": "https://api.spotify.com/v1/tracks/2Fxdbus1OWJBhy3NMHUF7J", + "id": "2Fxdbus1OWJBhy3NMHUF7J", + "is_local": false, + "is_playable": true, + "name": "HARDSTYLE 2", + "popularity": 55, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:2Fxdbus1OWJBhy3NMHUF7J" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/5kI7vpum3qPDB8ZT6rSPNV" + "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" }, - "href": "https://api.spotify.com/v1/tracks/5kI7vpum3qPDB8ZT6rSPNV", - "id": "5kI7vpum3qPDB8ZT6rSPNV", - "is_local": false, - "is_playable": true, - "name": "Riders In The Sky", - "popularity": 38, - "preview_url": null, - "track_number": 10, - "type": "track", - "uri": "spotify:track:5kI7vpum3qPDB8ZT6rSPNV" + "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", + "id": "1gfIkFZ4hIs2gETkRVaY68", + "name": "Sons of the Pioneers", + "type": "artist", + "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" + } + ], + "available_markets": ["PR", "US"], + "external_urls": { + "spotify": "https://open.spotify.com/album/43W6LvGekoOd3Yk5ym8Bj7" }, + "href": "https://api.spotify.com/v1/albums/43W6LvGekoOd3Yk5ym8Bj7", + "id": "43W6LvGekoOd3Yk5ym8Bj7", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27375b0c528969decafb51425a4", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0275b0c528969decafb51425a4", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485175b0c528969decafb51425a4", + "width": 64 + } + ], + "is_playable": true, + "name": "Cool Water (With Bonus Tracks)", + "release_date": "1959-05-10", + "release_date_precision": "day", + "total_tracks": 24, + "type": "album", + "uri": "spotify:album:43W6LvGekoOd3Yk5ym8Bj7" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" - }, - "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", - "id": "37P2qivB9weEafn1Y2VeF8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", - "width": 64 - } - ], - "is_playable": true, - "name": "There\u2019s Always More That I Could Say", - "release_date": "2025-10-24", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" - }, - "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", - "id": "4TrraAsitQKl821DQY42cZ", - "name": "Sigrid", - "type": "artist", - "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 172889, - "explicit": false, - "external_ids": { "isrc": "GBUM72501846" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/1gfIkFZ4hIs2gETkRVaY68" + }, + "href": "https://api.spotify.com/v1/artists/1gfIkFZ4hIs2gETkRVaY68", + "id": "1gfIkFZ4hIs2gETkRVaY68", + "name": "Sons of the Pioneers", + "type": "artist", + "uri": "spotify:artist:1gfIkFZ4hIs2gETkRVaY68" + } + ], + "available_markets": ["PR", "US"], + "disc_number": 1, + "duration_ms": 141946, + "explicit": false, + "external_ids": { "isrc": "USRN10100775" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5kI7vpum3qPDB8ZT6rSPNV" + }, + "href": "https://api.spotify.com/v1/tracks/5kI7vpum3qPDB8ZT6rSPNV", + "id": "5kI7vpum3qPDB8ZT6rSPNV", + "is_local": false, + "is_playable": true, + "name": "Riders In The Sky", + "popularity": 38, + "preview_url": null, + "track_number": 10, + "type": "track", + "uri": "spotify:track:5kI7vpum3qPDB8ZT6rSPNV" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" }, - "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", - "id": "67WAthizRvsLDjgzIZs27h", - "is_local": false, - "is_playable": true, - "name": "Two Years", - "popularity": 41, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:67WAthizRvsLDjgzIZs27h" + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/37P2qivB9weEafn1Y2VeF8" }, + "href": "https://api.spotify.com/v1/albums/37P2qivB9weEafn1Y2VeF8", + "id": "37P2qivB9weEafn1Y2VeF8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735caedc2e29bf01bf567d7c24", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025caedc2e29bf01bf567d7c24", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515caedc2e29bf01bf567d7c24", + "width": 64 + } + ], + "is_playable": true, + "name": "There\u2019s Always More That I Could Say", + "release_date": "2025-10-24", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:37P2qivB9weEafn1Y2VeF8" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" - }, - "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", - "id": "2ZRQcIgzPCVaT9XKhXZIzh", - "name": "Gryffin", - "type": "artist", - "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2IAVHJdaRPFA6MQqXHoG75" - }, - "href": "https://api.spotify.com/v1/albums/2IAVHJdaRPFA6MQqXHoG75", - "id": "2IAVHJdaRPFA6MQqXHoG75", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730e5311993a01fb2e7169f6a7", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020e5311993a01fb2e7169f6a7", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048510e5311993a01fb2e7169f6a7", - "width": 64 - } - ], - "is_playable": true, - "name": "Gravity", - "release_date": "2019-10-24", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:2IAVHJdaRPFA6MQqXHoG75" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" - }, - "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", - "id": "2ZRQcIgzPCVaT9XKhXZIzh", - "name": "Gryffin", - "type": "artist", - "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2JfoFQs5wPHgLz8wnJ4wL2" - }, - "href": "https://api.spotify.com/v1/artists/2JfoFQs5wPHgLz8wnJ4wL2", - "id": "2JfoFQs5wPHgLz8wnJ4wL2", - "name": "ZOHARA", - "type": "artist", - "uri": "spotify:artist:2JfoFQs5wPHgLz8wnJ4wL2" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "RW", - "TG", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 221129, - "explicit": false, - "external_ids": { "isrc": "USUM71817462" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4TrraAsitQKl821DQY42cZ" + }, + "href": "https://api.spotify.com/v1/artists/4TrraAsitQKl821DQY42cZ", + "id": "4TrraAsitQKl821DQY42cZ", + "name": "Sigrid", + "type": "artist", + "uri": "spotify:artist:4TrraAsitQKl821DQY42cZ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 172889, + "explicit": false, + "external_ids": { "isrc": "GBUM72501846" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/67WAthizRvsLDjgzIZs27h" + }, + "href": "https://api.spotify.com/v1/tracks/67WAthizRvsLDjgzIZs27h", + "id": "67WAthizRvsLDjgzIZs27h", + "is_local": false, + "is_playable": true, + "name": "Two Years", + "popularity": 41, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:67WAthizRvsLDjgzIZs27h" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3aFxfpfeATHYg1n750dhgq" + "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" }, - "href": "https://api.spotify.com/v1/tracks/3aFxfpfeATHYg1n750dhgq", - "id": "3aFxfpfeATHYg1n750dhgq", - "is_local": false, - "is_playable": true, - "name": "Remember (with ZOHARA)", - "popularity": 54, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3aFxfpfeATHYg1n750dhgq" + "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", + "id": "2ZRQcIgzPCVaT9XKhXZIzh", + "name": "Gryffin", + "type": "artist", + "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2IAVHJdaRPFA6MQqXHoG75" }, + "href": "https://api.spotify.com/v1/albums/2IAVHJdaRPFA6MQqXHoG75", + "id": "2IAVHJdaRPFA6MQqXHoG75", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730e5311993a01fb2e7169f6a7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020e5311993a01fb2e7169f6a7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048510e5311993a01fb2e7169f6a7", + "width": 64 + } + ], + "is_playable": true, + "name": "Gravity", + "release_date": "2019-10-24", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:2IAVHJdaRPFA6MQqXHoG75" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" - }, - "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", - "id": "543ccHFPnZfJMD8tRGPtu7", - "name": "James Smith", - "type": "artist", - "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/7qo7ithHnDDufzWRUkpTHq" - }, - "href": "https://api.spotify.com/v1/albums/7qo7ithHnDDufzWRUkpTHq", - "id": "7qo7ithHnDDufzWRUkpTHq", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2733ef65e80e82a07db7d2ce6f8", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e023ef65e80e82a07db7d2ce6f8", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048513ef65e80e82a07db7d2ce6f8", - "width": 64 - } - ], - "is_playable": true, - "name": "Jesus Is A Woman", - "release_date": "2025-08-29", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:7qo7ithHnDDufzWRUkpTHq" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" - }, - "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", - "id": "543ccHFPnZfJMD8tRGPtu7", - "name": "James Smith", - "type": "artist", - "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 190529, - "explicit": false, - "external_ids": { "isrc": "GBQGW2500068" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/2ZRQcIgzPCVaT9XKhXZIzh" + }, + "href": "https://api.spotify.com/v1/artists/2ZRQcIgzPCVaT9XKhXZIzh", + "id": "2ZRQcIgzPCVaT9XKhXZIzh", + "name": "Gryffin", + "type": "artist", + "uri": "spotify:artist:2ZRQcIgzPCVaT9XKhXZIzh" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2JfoFQs5wPHgLz8wnJ4wL2" + }, + "href": "https://api.spotify.com/v1/artists/2JfoFQs5wPHgLz8wnJ4wL2", + "id": "2JfoFQs5wPHgLz8wnJ4wL2", + "name": "ZOHARA", + "type": "artist", + "uri": "spotify:artist:2JfoFQs5wPHgLz8wnJ4wL2" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "RW", + "TG", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 221129, + "explicit": false, + "external_ids": { "isrc": "USUM71817462" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3aFxfpfeATHYg1n750dhgq" + }, + "href": "https://api.spotify.com/v1/tracks/3aFxfpfeATHYg1n750dhgq", + "id": "3aFxfpfeATHYg1n750dhgq", + "is_local": false, + "is_playable": true, + "name": "Remember (with ZOHARA)", + "popularity": 54, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3aFxfpfeATHYg1n750dhgq" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/10ZuUH8nrb4IbRRJUmsFXq" + "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" }, - "href": "https://api.spotify.com/v1/tracks/10ZuUH8nrb4IbRRJUmsFXq", - "id": "10ZuUH8nrb4IbRRJUmsFXq", - "is_local": false, - "is_playable": true, - "name": "Jesus Is A Woman", - "popularity": 29, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:10ZuUH8nrb4IbRRJUmsFXq" + "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", + "id": "543ccHFPnZfJMD8tRGPtu7", + "name": "James Smith", + "type": "artist", + "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/7qo7ithHnDDufzWRUkpTHq" }, + "href": "https://api.spotify.com/v1/albums/7qo7ithHnDDufzWRUkpTHq", + "id": "7qo7ithHnDDufzWRUkpTHq", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2733ef65e80e82a07db7d2ce6f8", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e023ef65e80e82a07db7d2ce6f8", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048513ef65e80e82a07db7d2ce6f8", + "width": 64 + } + ], + "is_playable": true, + "name": "Jesus Is A Woman", + "release_date": "2025-08-29", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:7qo7ithHnDDufzWRUkpTHq" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" - }, - "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", - "id": "0QaSiI5TLA4N7mcsdxShDO", - "name": "Sub Focus", - "type": "artist", - "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/06z3wshQtpYwZnDoVle3pw" - }, - "href": "https://api.spotify.com/v1/albums/06z3wshQtpYwZnDoVle3pw", - "id": "06z3wshQtpYwZnDoVle3pw", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c7f55a59f035464b5b97b305", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c7f55a59f035464b5b97b305", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c7f55a59f035464b5b97b305", - "width": 64 - } - ], - "is_playable": true, - "name": "Contact", - "release_date": "2025-11-21", - "release_date_precision": "day", - "total_tracks": 14, - "type": "album", - "uri": "spotify:album:06z3wshQtpYwZnDoVle3pw" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" - }, - "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", - "id": "0QaSiI5TLA4N7mcsdxShDO", - "name": "Sub Focus", - "type": "artist", - "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" - }, - "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", - "id": "2UNjfzEkfsdWVDwnuD6vdH", - "name": "bbyclose", - "type": "artist", - "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 184827, - "explicit": false, - "external_ids": { "isrc": "GBUM72500754" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/543ccHFPnZfJMD8tRGPtu7" + }, + "href": "https://api.spotify.com/v1/artists/543ccHFPnZfJMD8tRGPtu7", + "id": "543ccHFPnZfJMD8tRGPtu7", + "name": "James Smith", + "type": "artist", + "uri": "spotify:artist:543ccHFPnZfJMD8tRGPtu7" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 190529, + "explicit": false, + "external_ids": { "isrc": "GBQGW2500068" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/10ZuUH8nrb4IbRRJUmsFXq" + }, + "href": "https://api.spotify.com/v1/tracks/10ZuUH8nrb4IbRRJUmsFXq", + "id": "10ZuUH8nrb4IbRRJUmsFXq", + "is_local": false, + "is_playable": true, + "name": "Jesus Is A Woman", + "popularity": 29, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:10ZuUH8nrb4IbRRJUmsFXq" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3zMBJKHkqDqm0ZVMKGLHak" + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" }, - "href": "https://api.spotify.com/v1/tracks/3zMBJKHkqDqm0ZVMKGLHak", - "id": "3zMBJKHkqDqm0ZVMKGLHak", - "is_local": false, - "is_playable": true, - "name": "On & On (feat. bbyclose)", - "popularity": 59, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:3zMBJKHkqDqm0ZVMKGLHak" + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/06z3wshQtpYwZnDoVle3pw" }, + "href": "https://api.spotify.com/v1/albums/06z3wshQtpYwZnDoVle3pw", + "id": "06z3wshQtpYwZnDoVle3pw", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c7f55a59f035464b5b97b305", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c7f55a59f035464b5b97b305", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c7f55a59f035464b5b97b305", + "width": 64 + } + ], + "is_playable": true, + "name": "Contact", + "release_date": "2025-11-21", + "release_date_precision": "day", + "total_tracks": 14, + "type": "album", + "uri": "spotify:album:06z3wshQtpYwZnDoVle3pw" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" - }, - "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", - "id": "6JslXiAQgoATL9rPmLE5du", - "name": "Anike Ekina", - "type": "artist", - "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" - }, - "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", - "id": "10VNoWgGKiAas5dWkpCUHL", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0", - "width": 64 - } - ], - "is_playable": true, - "name": "Light Back In (Special Metal version)", - "release_date": "2025-08-01", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" - }, - "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", - "id": "6JslXiAQgoATL9rPmLE5du", - "name": "Anike Ekina", - "type": "artist", - "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 202805, - "explicit": false, - "external_ids": { "isrc": "DEA372013916" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/0QaSiI5TLA4N7mcsdxShDO" + }, + "href": "https://api.spotify.com/v1/artists/0QaSiI5TLA4N7mcsdxShDO", + "id": "0QaSiI5TLA4N7mcsdxShDO", + "name": "Sub Focus", + "type": "artist", + "uri": "spotify:artist:0QaSiI5TLA4N7mcsdxShDO" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2UNjfzEkfsdWVDwnuD6vdH" + }, + "href": "https://api.spotify.com/v1/artists/2UNjfzEkfsdWVDwnuD6vdH", + "id": "2UNjfzEkfsdWVDwnuD6vdH", + "name": "bbyclose", + "type": "artist", + "uri": "spotify:artist:2UNjfzEkfsdWVDwnuD6vdH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 184827, + "explicit": false, + "external_ids": { "isrc": "GBUM72500754" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3zMBJKHkqDqm0ZVMKGLHak" + }, + "href": "https://api.spotify.com/v1/tracks/3zMBJKHkqDqm0ZVMKGLHak", + "id": "3zMBJKHkqDqm0ZVMKGLHak", + "is_local": false, + "is_playable": true, + "name": "On & On (feat. bbyclose)", + "popularity": 59, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:3zMBJKHkqDqm0ZVMKGLHak" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" }, - "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", - "id": "34vearIqjyFqWWPZKPPxvH", - "is_local": false, - "is_playable": true, - "name": "Light Back In - Special Metal Version - Radio Edit", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/10VNoWgGKiAas5dWkpCUHL" }, + "href": "https://api.spotify.com/v1/albums/10VNoWgGKiAas5dWkpCUHL", + "id": "10VNoWgGKiAas5dWkpCUHL", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27350dfe378fc89465e3d3ae2d0", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0250dfe378fc89465e3d3ae2d0", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485150dfe378fc89465e3d3ae2d0", + "width": 64 + } + ], + "is_playable": true, + "name": "Light Back In (Special Metal version)", + "release_date": "2025-08-01", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:10VNoWgGKiAas5dWkpCUHL" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" - }, - "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", - "id": "4FmJD0mpgQ70SNt2EKK8tq", - "name": "Miracle Of Sound", - "type": "artist", - "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4HUG49D7cBMLrcavbReCG8" - }, - "href": "https://api.spotify.com/v1/albums/4HUG49D7cBMLrcavbReCG8", - "id": "4HUG49D7cBMLrcavbReCG8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736e156986dc730ab3f4379381", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026e156986dc730ab3f4379381", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516e156986dc730ab3f4379381", - "width": 64 - } - ], - "is_playable": true, - "name": "Level 12", - "release_date": "2023-06-02", - "release_date_precision": "day", - "total_tracks": 15, - "type": "album", - "uri": "spotify:album:4HUG49D7cBMLrcavbReCG8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" - }, - "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", - "id": "4FmJD0mpgQ70SNt2EKK8tq", - "name": "Miracle Of Sound", - "type": "artist", - "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 168948, - "explicit": false, - "external_ids": { "isrc": "QZK6K2302976" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/6JslXiAQgoATL9rPmLE5du" + }, + "href": "https://api.spotify.com/v1/artists/6JslXiAQgoATL9rPmLE5du", + "id": "6JslXiAQgoATL9rPmLE5du", + "name": "Anike Ekina", + "type": "artist", + "uri": "spotify:artist:6JslXiAQgoATL9rPmLE5du" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 202805, + "explicit": false, + "external_ids": { "isrc": "DEA372013916" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/34vearIqjyFqWWPZKPPxvH" + }, + "href": "https://api.spotify.com/v1/tracks/34vearIqjyFqWWPZKPPxvH", + "id": "34vearIqjyFqWWPZKPPxvH", + "is_local": false, + "is_playable": true, + "name": "Light Back In - Special Metal Version - Radio Edit", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:34vearIqjyFqWWPZKPPxvH" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6ybRWbM4jdku0Pk8SzjORB" + "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" }, - "href": "https://api.spotify.com/v1/tracks/6ybRWbM4jdku0Pk8SzjORB", - "id": "6ybRWbM4jdku0Pk8SzjORB", - "is_local": false, - "is_playable": true, - "name": "Skal", - "popularity": 62, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:6ybRWbM4jdku0Pk8SzjORB" + "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", + "id": "4FmJD0mpgQ70SNt2EKK8tq", + "name": "Miracle Of Sound", + "type": "artist", + "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4HUG49D7cBMLrcavbReCG8" }, + "href": "https://api.spotify.com/v1/albums/4HUG49D7cBMLrcavbReCG8", + "id": "4HUG49D7cBMLrcavbReCG8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736e156986dc730ab3f4379381", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026e156986dc730ab3f4379381", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516e156986dc730ab3f4379381", + "width": 64 + } + ], + "is_playable": true, + "name": "Level 12", + "release_date": "2023-06-02", + "release_date_precision": "day", + "total_tracks": 15, + "type": "album", + "uri": "spotify:album:4HUG49D7cBMLrcavbReCG8" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" - }, - "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", - "id": "5Uw20NgiZnH2WMcpQ7FdRB", - "name": "Mia Morgan", - "type": "artist", - "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/0IsgnhTThoZkeCzY0Bh5JN" - }, - "href": "https://api.spotify.com/v1/albums/0IsgnhTThoZkeCzY0Bh5JN", - "id": "0IsgnhTThoZkeCzY0Bh5JN", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e48fff336e78369502ba3ab7", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e48fff336e78369502ba3ab7", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e48fff336e78369502ba3ab7", - "width": 64 - } - ], - "is_playable": true, - "name": "FLEISCH", - "release_date": "2022-04-29", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:0IsgnhTThoZkeCzY0Bh5JN" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" - }, - "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", - "id": "5Uw20NgiZnH2WMcpQ7FdRB", - "name": "Mia Morgan", - "type": "artist", - "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 236015, - "explicit": false, - "external_ids": { "isrc": "FRX872179579" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4FmJD0mpgQ70SNt2EKK8tq" + }, + "href": "https://api.spotify.com/v1/artists/4FmJD0mpgQ70SNt2EKK8tq", + "id": "4FmJD0mpgQ70SNt2EKK8tq", + "name": "Miracle Of Sound", + "type": "artist", + "uri": "spotify:artist:4FmJD0mpgQ70SNt2EKK8tq" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 168948, + "explicit": false, + "external_ids": { "isrc": "QZK6K2302976" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6ybRWbM4jdku0Pk8SzjORB" + }, + "href": "https://api.spotify.com/v1/tracks/6ybRWbM4jdku0Pk8SzjORB", + "id": "6ybRWbM4jdku0Pk8SzjORB", + "is_local": false, + "is_playable": true, + "name": "Skal", + "popularity": 62, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:6ybRWbM4jdku0Pk8SzjORB" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/4A6V42HNYeihI4miScgujq" + "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" }, - "href": "https://api.spotify.com/v1/tracks/4A6V42HNYeihI4miScgujq", - "id": "4A6V42HNYeihI4miScgujq", - "is_local": false, - "is_playable": true, - "name": "JENNIFER CHECK", - "popularity": 24, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:4A6V42HNYeihI4miScgujq" + "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", + "id": "5Uw20NgiZnH2WMcpQ7FdRB", + "name": "Mia Morgan", + "type": "artist", + "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/0IsgnhTThoZkeCzY0Bh5JN" }, + "href": "https://api.spotify.com/v1/albums/0IsgnhTThoZkeCzY0Bh5JN", + "id": "0IsgnhTThoZkeCzY0Bh5JN", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e48fff336e78369502ba3ab7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e48fff336e78369502ba3ab7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e48fff336e78369502ba3ab7", + "width": 64 + } + ], + "is_playable": true, + "name": "FLEISCH", + "release_date": "2022-04-29", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:0IsgnhTThoZkeCzY0Bh5JN" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" - }, - "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", - "id": "1HGrQZLhmqlEuACUnQY7yy", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945", - "width": 64 - } - ], - "is_playable": true, - "name": "FATE of ALL", - "release_date": "2026-02-13", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" - }, - "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", - "id": "6cmp7ut7okJAgJOSaMAVf3", - "name": "Machinae Supremacy", - "type": "artist", - "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 244360, - "explicit": false, - "external_ids": { "isrc": "QZHN52659492" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/5Uw20NgiZnH2WMcpQ7FdRB" + }, + "href": "https://api.spotify.com/v1/artists/5Uw20NgiZnH2WMcpQ7FdRB", + "id": "5Uw20NgiZnH2WMcpQ7FdRB", + "name": "Mia Morgan", + "type": "artist", + "uri": "spotify:artist:5Uw20NgiZnH2WMcpQ7FdRB" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236015, + "explicit": false, + "external_ids": { "isrc": "FRX872179579" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4A6V42HNYeihI4miScgujq" + }, + "href": "https://api.spotify.com/v1/tracks/4A6V42HNYeihI4miScgujq", + "id": "4A6V42HNYeihI4miScgujq", + "is_local": false, + "is_playable": true, + "name": "JENNIFER CHECK", + "popularity": 24, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:4A6V42HNYeihI4miScgujq" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" }, - "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", - "id": "29DpW469MK56dBqxSfzwDs", - "is_local": false, - "is_playable": true, - "name": "FATE of ALL", - "popularity": 39, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1HGrQZLhmqlEuACUnQY7yy" }, + "href": "https://api.spotify.com/v1/albums/1HGrQZLhmqlEuACUnQY7yy", + "id": "1HGrQZLhmqlEuACUnQY7yy", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2735db919ecd425e6692c12a945", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e025db919ecd425e6692c12a945", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048515db919ecd425e6692c12a945", + "width": 64 + } + ], + "is_playable": true, + "name": "FATE of ALL", + "release_date": "2026-02-13", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1HGrQZLhmqlEuACUnQY7yy" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" - }, - "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", - "id": "3hvgLXeDFNiqDOVXl0xTge", - "name": "LukHash", - "type": "artist", - "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" - }, - "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", - "id": "4Xv90HE4uhD2e71SV7gSEZ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813", - "width": 64 - } - ], - "is_playable": true, - "name": "Home Arcade", - "release_date": "2025-05-02", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" - }, - "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", - "id": "3hvgLXeDFNiqDOVXl0xTge", - "name": "LukHash", - "type": "artist", - "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 176280, - "explicit": false, - "external_ids": { "isrc": "QT3TB2405473" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/6cmp7ut7okJAgJOSaMAVf3" + }, + "href": "https://api.spotify.com/v1/artists/6cmp7ut7okJAgJOSaMAVf3", + "id": "6cmp7ut7okJAgJOSaMAVf3", + "name": "Machinae Supremacy", + "type": "artist", + "uri": "spotify:artist:6cmp7ut7okJAgJOSaMAVf3" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 244360, + "explicit": false, + "external_ids": { "isrc": "QZHN52659492" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/29DpW469MK56dBqxSfzwDs" + }, + "href": "https://api.spotify.com/v1/tracks/29DpW469MK56dBqxSfzwDs", + "id": "29DpW469MK56dBqxSfzwDs", + "is_local": false, + "is_playable": true, + "name": "FATE of ALL", + "popularity": 39, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:29DpW469MK56dBqxSfzwDs" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" }, - "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", - "id": "0qvDlGZL5TnvV80AMH3lYf", - "is_local": false, - "is_playable": true, - "name": "Touching the Sky", - "popularity": 34, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4Xv90HE4uhD2e71SV7gSEZ" }, + "href": "https://api.spotify.com/v1/albums/4Xv90HE4uhD2e71SV7gSEZ", + "id": "4Xv90HE4uhD2e71SV7gSEZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273c8e2783d3f24c010089a6813", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02c8e2783d3f24c010089a6813", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851c8e2783d3f24c010089a6813", + "width": 64 + } + ], + "is_playable": true, + "name": "Home Arcade", + "release_date": "2025-05-02", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:4Xv90HE4uhD2e71SV7gSEZ" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" - }, - "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", - "id": "0rEuaTPLMhlViNCJrg3NEH", - "name": "Beast In Black", - "type": "artist", - "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/30O1KkbyS9bbOniw7xtQux" - }, - "href": "https://api.spotify.com/v1/albums/30O1KkbyS9bbOniw7xtQux", - "id": "30O1KkbyS9bbOniw7xtQux", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273913a6d7587d853e1dd4c1580", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02913a6d7587d853e1dd4c1580", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851913a6d7587d853e1dd4c1580", - "width": 64 - } - ], - "is_playable": true, - "name": "Dark Connection", - "release_date": "2021-10-29", - "release_date_precision": "day", - "total_tracks": 13, - "type": "album", - "uri": "spotify:album:30O1KkbyS9bbOniw7xtQux" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" - }, - "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", - "id": "0rEuaTPLMhlViNCJrg3NEH", - "name": "Beast In Black", - "type": "artist", - "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 272669, - "explicit": false, - "external_ids": { "isrc": "DED832100530" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge" + }, + "href": "https://api.spotify.com/v1/artists/3hvgLXeDFNiqDOVXl0xTge", + "id": "3hvgLXeDFNiqDOVXl0xTge", + "name": "LukHash", + "type": "artist", + "uri": "spotify:artist:3hvgLXeDFNiqDOVXl0xTge" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 176280, + "explicit": false, + "external_ids": { "isrc": "QT3TB2405473" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0qvDlGZL5TnvV80AMH3lYf" + }, + "href": "https://api.spotify.com/v1/tracks/0qvDlGZL5TnvV80AMH3lYf", + "id": "0qvDlGZL5TnvV80AMH3lYf", + "is_local": false, + "is_playable": true, + "name": "Touching the Sky", + "popularity": 34, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:0qvDlGZL5TnvV80AMH3lYf" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/4cjWVc72Lp9wkwm73AtXNf" + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" }, - "href": "https://api.spotify.com/v1/tracks/4cjWVc72Lp9wkwm73AtXNf", - "id": "4cjWVc72Lp9wkwm73AtXNf", - "is_local": false, - "is_playable": true, - "name": "They Don't Care About Us", - "popularity": 61, - "preview_url": null, - "track_number": 13, - "type": "track", - "uri": "spotify:track:4cjWVc72Lp9wkwm73AtXNf" + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "name": "Beast In Black", + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/30O1KkbyS9bbOniw7xtQux" }, + "href": "https://api.spotify.com/v1/albums/30O1KkbyS9bbOniw7xtQux", + "id": "30O1KkbyS9bbOniw7xtQux", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273913a6d7587d853e1dd4c1580", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02913a6d7587d853e1dd4c1580", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851913a6d7587d853e1dd4c1580", + "width": 64 + } + ], + "is_playable": true, + "name": "Dark Connection", + "release_date": "2021-10-29", + "release_date_precision": "day", + "total_tracks": 13, + "type": "album", + "uri": "spotify:album:30O1KkbyS9bbOniw7xtQux" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6i6I3dfo8SHBqLq9MHfJt4" - }, - "href": "https://api.spotify.com/v1/albums/6i6I3dfo8SHBqLq9MHfJt4", - "id": "6i6I3dfo8SHBqLq9MHfJt4", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273fa830b43aa43aa34b512a733", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02fa830b43aa43aa34b512a733", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851fa830b43aa43aa34b512a733", - "width": 64 - } - ], - "is_playable": true, - "name": "Dreiundzwanzig", - "release_date": "2025-08-08", - "release_date_precision": "day", - "total_tracks": 6, - "type": "album", - "uri": "spotify:album:6i6I3dfo8SHBqLq9MHfJt4" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 180542, - "explicit": false, - "external_ids": { "isrc": "DEQ322500253" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/0rEuaTPLMhlViNCJrg3NEH" + }, + "href": "https://api.spotify.com/v1/artists/0rEuaTPLMhlViNCJrg3NEH", + "id": "0rEuaTPLMhlViNCJrg3NEH", + "name": "Beast In Black", + "type": "artist", + "uri": "spotify:artist:0rEuaTPLMhlViNCJrg3NEH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 272669, + "explicit": false, + "external_ids": { "isrc": "DED832100530" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/4cjWVc72Lp9wkwm73AtXNf" + }, + "href": "https://api.spotify.com/v1/tracks/4cjWVc72Lp9wkwm73AtXNf", + "id": "4cjWVc72Lp9wkwm73AtXNf", + "is_local": false, + "is_playable": true, + "name": "They Don't Care About Us", + "popularity": 61, + "preview_url": null, + "track_number": 13, + "type": "track", + "uri": "spotify:track:4cjWVc72Lp9wkwm73AtXNf" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/5flXEtnmx7VsADuAYdEiIO" + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" }, - "href": "https://api.spotify.com/v1/tracks/5flXEtnmx7VsADuAYdEiIO", - "id": "5flXEtnmx7VsADuAYdEiIO", - "is_local": false, - "is_playable": true, - "name": "Angst", - "popularity": 31, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:5flXEtnmx7VsADuAYdEiIO" + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6i6I3dfo8SHBqLq9MHfJt4" }, + "href": "https://api.spotify.com/v1/albums/6i6I3dfo8SHBqLq9MHfJt4", + "id": "6i6I3dfo8SHBqLq9MHfJt4", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273fa830b43aa43aa34b512a733", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02fa830b43aa43aa34b512a733", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851fa830b43aa43aa34b512a733", + "width": 64 + } + ], + "is_playable": true, + "name": "Dreiundzwanzig", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 6, + "type": "album", + "uri": "spotify:album:6i6I3dfo8SHBqLq9MHfJt4" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" - }, - "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", - "id": "43BxCL6t4c73BQnIJtry5v", - "name": "James Hype", - "type": "artist", - "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" - }, - "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", - "id": "0czTwfZBBvlvlOiypvDvwe", - "name": "Sam Harper", - "type": "artist", - "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" - }, - "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", - "id": "2biXipa3IRLZUOnXgtKmXc", - "name": "Bobby Harvey", - "type": "artist", - "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" - }, - "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", - "id": "1iEczV3pKJ9MPmRvYGB9bz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381", - "width": 64 - } - ], - "is_playable": true, - "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", - "release_date": "2025-08-08", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 180542, + "explicit": false, + "external_ids": { "isrc": "DEQ322500253" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5flXEtnmx7VsADuAYdEiIO" + }, + "href": "https://api.spotify.com/v1/tracks/5flXEtnmx7VsADuAYdEiIO", + "id": "5flXEtnmx7VsADuAYdEiIO", + "is_local": false, + "is_playable": true, + "name": "Angst", + "popularity": 31, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:5flXEtnmx7VsADuAYdEiIO" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" - }, - "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", - "id": "43BxCL6t4c73BQnIJtry5v", - "name": "James Hype", - "type": "artist", - "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" - }, - "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", - "id": "0czTwfZBBvlvlOiypvDvwe", - "name": "Sam Harper", - "type": "artist", - "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" - }, - "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", - "id": "2biXipa3IRLZUOnXgtKmXc", - "name": "Bobby Harvey", - "type": "artist", - "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 120578, - "explicit": false, - "external_ids": { "isrc": "GBUM72504512" }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" }, - "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", - "id": "1OcV53oesLQw3VTW9I3uD3", - "is_local": false, - "is_playable": true, - "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", - "popularity": 80, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1iEczV3pKJ9MPmRvYGB9bz" }, + "href": "https://api.spotify.com/v1/albums/1iEczV3pKJ9MPmRvYGB9bz", + "id": "1iEczV3pKJ9MPmRvYGB9bz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273f60d7f051679fab1ecb2a381", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02f60d7f051679fab1ecb2a381", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851f60d7f051679fab1ecb2a381", + "width": 64 + } + ], + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "release_date": "2025-08-08", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1iEczV3pKJ9MPmRvYGB9bz" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" - }, - "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", - "id": "7mnBLXK823vNxN3UWB7Gfz", - "name": "The Black Keys", - "type": "artist", - "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/15TCQN0DHHM3XX4TfnNkV8" - }, - "href": "https://api.spotify.com/v1/albums/15TCQN0DHHM3XX4TfnNkV8", - "id": "15TCQN0DHHM3XX4TfnNkV8", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731984ae05d586371351e056d7", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021984ae05d586371351e056d7", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511984ae05d586371351e056d7", - "width": 64 - } - ], - "is_playable": true, - "name": "El Camino (2021 Remaster)", - "release_date": "2011", - "release_date_precision": "year", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:15TCQN0DHHM3XX4TfnNkV8" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" - }, - "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", - "id": "7mnBLXK823vNxN3UWB7Gfz", - "name": "The Black Keys", - "type": "artist", - "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 251333, - "explicit": false, - "external_ids": { "isrc": "USNO12100179" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/43BxCL6t4c73BQnIJtry5v" + }, + "href": "https://api.spotify.com/v1/artists/43BxCL6t4c73BQnIJtry5v", + "id": "43BxCL6t4c73BQnIJtry5v", + "name": "James Hype", + "type": "artist", + "uri": "spotify:artist:43BxCL6t4c73BQnIJtry5v" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0czTwfZBBvlvlOiypvDvwe" + }, + "href": "https://api.spotify.com/v1/artists/0czTwfZBBvlvlOiypvDvwe", + "id": "0czTwfZBBvlvlOiypvDvwe", + "name": "Sam Harper", + "type": "artist", + "uri": "spotify:artist:0czTwfZBBvlvlOiypvDvwe" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2biXipa3IRLZUOnXgtKmXc" + }, + "href": "https://api.spotify.com/v1/artists/2biXipa3IRLZUOnXgtKmXc", + "id": "2biXipa3IRLZUOnXgtKmXc", + "name": "Bobby Harvey", + "type": "artist", + "uri": "spotify:artist:2biXipa3IRLZUOnXgtKmXc" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 120578, + "explicit": false, + "external_ids": { "isrc": "GBUM72504512" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/1OcV53oesLQw3VTW9I3uD3" + }, + "href": "https://api.spotify.com/v1/tracks/1OcV53oesLQw3VTW9I3uD3", + "id": "1OcV53oesLQw3VTW9I3uD3", + "is_local": false, + "is_playable": true, + "name": "Waterfalls (feat. Sam Harper & Bobby Harvey)", + "popularity": 80, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:1OcV53oesLQw3VTW9I3uD3" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3BR01wZsCALix7hnhZltGs" + "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" }, - "href": "https://api.spotify.com/v1/tracks/3BR01wZsCALix7hnhZltGs", - "id": "3BR01wZsCALix7hnhZltGs", - "is_local": false, - "is_playable": true, - "name": "Little Black Submarines - 2021 Remaster", - "popularity": 64, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:3BR01wZsCALix7hnhZltGs" + "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", + "id": "7mnBLXK823vNxN3UWB7Gfz", + "name": "The Black Keys", + "type": "artist", + "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/15TCQN0DHHM3XX4TfnNkV8" }, + "href": "https://api.spotify.com/v1/albums/15TCQN0DHHM3XX4TfnNkV8", + "id": "15TCQN0DHHM3XX4TfnNkV8", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731984ae05d586371351e056d7", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021984ae05d586371351e056d7", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511984ae05d586371351e056d7", + "width": 64 + } + ], + "is_playable": true, + "name": "El Camino (2021 Remaster)", + "release_date": "2011", + "release_date_precision": "year", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:15TCQN0DHHM3XX4TfnNkV8" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3VzsvmhnUb9OZ59bq2aoNZ" - }, - "href": "https://api.spotify.com/v1/albums/3VzsvmhnUb9OZ59bq2aoNZ", - "id": "3VzsvmhnUb9OZ59bq2aoNZ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27345951a69fe39a6e163122eab", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0245951a69fe39a6e163122eab", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485145951a69fe39a6e163122eab", - "width": 64 - } - ], - "is_playable": true, - "name": "A Moment Apart", - "release_date": "2017-09-08", - "release_date_precision": "day", - "total_tracks": 16, - "type": "album", - "uri": "spotify:album:3VzsvmhnUb9OZ59bq2aoNZ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" - }, - "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", - "id": "5EBlHXi71tDXnFtroEh7Rg", - "name": "Naomi Wild", - "type": "artist", - "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 215130, - "explicit": false, - "external_ids": { "isrc": "GBCFB1700211" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz" + }, + "href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz", + "id": "7mnBLXK823vNxN3UWB7Gfz", + "name": "The Black Keys", + "type": "artist", + "uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 251333, + "explicit": false, + "external_ids": { "isrc": "USNO12100179" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3BR01wZsCALix7hnhZltGs" + }, + "href": "https://api.spotify.com/v1/tracks/3BR01wZsCALix7hnhZltGs", + "id": "3BR01wZsCALix7hnhZltGs", + "is_local": false, + "is_playable": true, + "name": "Little Black Submarines - 2021 Remaster", + "popularity": 64, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3BR01wZsCALix7hnhZltGs" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/7KT7VGnPU5QVXN3q1BOeqb" + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" }, - "href": "https://api.spotify.com/v1/tracks/7KT7VGnPU5QVXN3q1BOeqb", - "id": "7KT7VGnPU5QVXN3q1BOeqb", - "is_local": false, - "is_playable": true, - "name": "Higher Ground", - "popularity": 62, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:7KT7VGnPU5QVXN3q1BOeqb" + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3VzsvmhnUb9OZ59bq2aoNZ" }, + "href": "https://api.spotify.com/v1/albums/3VzsvmhnUb9OZ59bq2aoNZ", + "id": "3VzsvmhnUb9OZ59bq2aoNZ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27345951a69fe39a6e163122eab", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0245951a69fe39a6e163122eab", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485145951a69fe39a6e163122eab", + "width": 64 + } + ], + "is_playable": true, + "name": "A Moment Apart", + "release_date": "2017-09-08", + "release_date_precision": "day", + "total_tracks": 16, + "type": "album", + "uri": "spotify:album:3VzsvmhnUb9OZ59bq2aoNZ" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" - }, - "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", - "id": "1X0ak6iQZOYqdVXzj8Tfbz", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d", - "width": 64 - } - ], - "is_playable": true, - "name": "Cold Silver", - "release_date": "2025-10-08", - "release_date_precision": "day", - "total_tracks": 3, - "type": "album", - "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" - }, - "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", - "id": "61jrgPBUklDAQV9DptCc8u", - "name": "Starbenders", - "type": "artist", - "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 222242, - "explicit": true, - "external_ids": { "isrc": "USYFZ2565101" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5EBlHXi71tDXnFtroEh7Rg" + }, + "href": "https://api.spotify.com/v1/artists/5EBlHXi71tDXnFtroEh7Rg", + "id": "5EBlHXi71tDXnFtroEh7Rg", + "name": "Naomi Wild", + "type": "artist", + "uri": "spotify:artist:5EBlHXi71tDXnFtroEh7Rg" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 215130, + "explicit": false, + "external_ids": { "isrc": "GBCFB1700211" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7KT7VGnPU5QVXN3q1BOeqb" + }, + "href": "https://api.spotify.com/v1/tracks/7KT7VGnPU5QVXN3q1BOeqb", + "id": "7KT7VGnPU5QVXN3q1BOeqb", + "is_local": false, + "is_playable": true, + "name": "Higher Ground", + "popularity": 62, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:7KT7VGnPU5QVXN3q1BOeqb" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" }, - "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", - "id": "0Y0PdrwwWtYTFhCY5Kj0iv", - "is_local": false, - "is_playable": true, - "name": "Cold Silver", - "popularity": 36, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1X0ak6iQZOYqdVXzj8Tfbz" }, + "href": "https://api.spotify.com/v1/albums/1X0ak6iQZOYqdVXzj8Tfbz", + "id": "1X0ak6iQZOYqdVXzj8Tfbz", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2736a2135afb61a9fa65676be6d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e026a2135afb61a9fa65676be6d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048516a2135afb61a9fa65676be6d", + "width": 64 + } + ], + "is_playable": true, + "name": "Cold Silver", + "release_date": "2025-10-08", + "release_date_precision": "day", + "total_tracks": 3, + "type": "album", + "uri": "spotify:album:1X0ak6iQZOYqdVXzj8Tfbz" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" - }, - "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", - "id": "7y25aQ8W1jYhdkTdDdiUjH", - "name": "KARAVIRS", - "type": "artist", - "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1ux2pdgf8Bzaz21pxEEKWQ" - }, - "href": "https://api.spotify.com/v1/albums/1ux2pdgf8Bzaz21pxEEKWQ", - "id": "1ux2pdgf8Bzaz21pxEEKWQ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2730a1d1416d7e8e0013425220d", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e020a1d1416d7e8e0013425220d", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048510a1d1416d7e8e0013425220d", - "width": 64 - } - ], - "is_playable": true, - "name": "Ribbon in my hair", - "release_date": "2025-07-04", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:1ux2pdgf8Bzaz21pxEEKWQ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" - }, - "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", - "id": "7y25aQ8W1jYhdkTdDdiUjH", - "name": "KARAVIRS", - "type": "artist", - "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 230039, - "explicit": false, - "external_ids": { "isrc": "QZTBD2562114" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/61jrgPBUklDAQV9DptCc8u" + }, + "href": "https://api.spotify.com/v1/artists/61jrgPBUklDAQV9DptCc8u", + "id": "61jrgPBUklDAQV9DptCc8u", + "name": "Starbenders", + "type": "artist", + "uri": "spotify:artist:61jrgPBUklDAQV9DptCc8u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 222242, + "explicit": true, + "external_ids": { "isrc": "USYFZ2565101" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0Y0PdrwwWtYTFhCY5Kj0iv" + }, + "href": "https://api.spotify.com/v1/tracks/0Y0PdrwwWtYTFhCY5Kj0iv", + "id": "0Y0PdrwwWtYTFhCY5Kj0iv", + "is_local": false, + "is_playable": true, + "name": "Cold Silver", + "popularity": 36, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0Y0PdrwwWtYTFhCY5Kj0iv" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6TA8mUL3TjaNqf9kuYBojR" + "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" }, - "href": "https://api.spotify.com/v1/tracks/6TA8mUL3TjaNqf9kuYBojR", - "id": "6TA8mUL3TjaNqf9kuYBojR", - "is_local": false, - "is_playable": true, - "name": "Ribbon in my hair", - "popularity": 46, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6TA8mUL3TjaNqf9kuYBojR" + "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", + "id": "7y25aQ8W1jYhdkTdDdiUjH", + "name": "KARAVIRS", + "type": "artist", + "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1ux2pdgf8Bzaz21pxEEKWQ" }, + "href": "https://api.spotify.com/v1/albums/1ux2pdgf8Bzaz21pxEEKWQ", + "id": "1ux2pdgf8Bzaz21pxEEKWQ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2730a1d1416d7e8e0013425220d", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e020a1d1416d7e8e0013425220d", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048510a1d1416d7e8e0013425220d", + "width": 64 + } + ], + "is_playable": true, + "name": "Ribbon in my hair", + "release_date": "2025-07-04", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:1ux2pdgf8Bzaz21pxEEKWQ" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" - }, - "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", - "id": "7k5jeohQCF20a8foBD9ize", - "name": "Battle Beast", - "type": "artist", - "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" - }, - "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", - "id": "2729tzbbE6CeRuFmbGOUry", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c", - "width": 64 - } - ], - "is_playable": true, - "name": "Steelbound", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" - }, - "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", - "id": "7k5jeohQCF20a8foBD9ize", - "name": "Battle Beast", - "type": "artist", - "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 230786, - "explicit": false, - "external_ids": { "isrc": "DED832500343" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/7y25aQ8W1jYhdkTdDdiUjH" + }, + "href": "https://api.spotify.com/v1/artists/7y25aQ8W1jYhdkTdDdiUjH", + "id": "7y25aQ8W1jYhdkTdDdiUjH", + "name": "KARAVIRS", + "type": "artist", + "uri": "spotify:artist:7y25aQ8W1jYhdkTdDdiUjH" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230039, + "explicit": false, + "external_ids": { "isrc": "QZTBD2562114" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6TA8mUL3TjaNqf9kuYBojR" + }, + "href": "https://api.spotify.com/v1/tracks/6TA8mUL3TjaNqf9kuYBojR", + "id": "6TA8mUL3TjaNqf9kuYBojR", + "is_local": false, + "is_playable": true, + "name": "Ribbon in my hair", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6TA8mUL3TjaNqf9kuYBojR" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" }, - "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", - "id": "5CEM8PzhisIOQAr8TmG79e", - "is_local": false, - "is_playable": true, - "name": "Riders Of The Storm", - "popularity": 45, - "preview_url": null, - "track_number": 9, - "type": "track", - "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2729tzbbE6CeRuFmbGOUry" }, + "href": "https://api.spotify.com/v1/albums/2729tzbbE6CeRuFmbGOUry", + "id": "2729tzbbE6CeRuFmbGOUry", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27386ea58e1cdf473eb1dd9ed9c", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0286ea58e1cdf473eb1dd9ed9c", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485186ea58e1cdf473eb1dd9ed9c", + "width": 64 + } + ], + "is_playable": true, + "name": "Steelbound", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:2729tzbbE6CeRuFmbGOUry" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" - }, - "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", - "id": "0wnYgCeP013HkKoOyC5V32", - "name": "Allie X", - "type": "artist", - "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2MhRCfdhN8os29CovIIsqV" - }, - "href": "https://api.spotify.com/v1/albums/2MhRCfdhN8os29CovIIsqV", - "id": "2MhRCfdhN8os29CovIIsqV", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738bc25b0c8091663832455805", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028bc25b0c8091663832455805", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518bc25b0c8091663832455805", - "width": 64 - } - ], - "is_playable": true, - "name": "Happiness Is Going To Get You", - "release_date": "2025-11-07", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:2MhRCfdhN8os29CovIIsqV" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" - }, - "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", - "id": "0wnYgCeP013HkKoOyC5V32", - "name": "Allie X", - "type": "artist", - "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 236026, - "explicit": false, - "external_ids": { "isrc": "QMFME2521305" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/7k5jeohQCF20a8foBD9ize" + }, + "href": "https://api.spotify.com/v1/artists/7k5jeohQCF20a8foBD9ize", + "id": "7k5jeohQCF20a8foBD9ize", + "name": "Battle Beast", + "type": "artist", + "uri": "spotify:artist:7k5jeohQCF20a8foBD9ize" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 230786, + "explicit": false, + "external_ids": { "isrc": "DED832500343" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/5CEM8PzhisIOQAr8TmG79e" + }, + "href": "https://api.spotify.com/v1/tracks/5CEM8PzhisIOQAr8TmG79e", + "id": "5CEM8PzhisIOQAr8TmG79e", + "is_local": false, + "is_playable": true, + "name": "Riders Of The Storm", + "popularity": 45, + "preview_url": null, + "track_number": 9, + "type": "track", + "uri": "spotify:track:5CEM8PzhisIOQAr8TmG79e" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3H2rJN1EXtwchBCSPtQMH1" + "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" }, - "href": "https://api.spotify.com/v1/tracks/3H2rJN1EXtwchBCSPtQMH1", - "id": "3H2rJN1EXtwchBCSPtQMH1", - "is_local": false, - "is_playable": true, - "name": "Reunite", - "popularity": 40, - "preview_url": null, - "track_number": 4, - "type": "track", - "uri": "spotify:track:3H2rJN1EXtwchBCSPtQMH1" + "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", + "id": "0wnYgCeP013HkKoOyC5V32", + "name": "Allie X", + "type": "artist", + "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2MhRCfdhN8os29CovIIsqV" }, + "href": "https://api.spotify.com/v1/albums/2MhRCfdhN8os29CovIIsqV", + "id": "2MhRCfdhN8os29CovIIsqV", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738bc25b0c8091663832455805", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028bc25b0c8091663832455805", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518bc25b0c8091663832455805", + "width": 64 + } + ], + "is_playable": true, + "name": "Happiness Is Going To Get You", + "release_date": "2025-11-07", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2MhRCfdhN8os29CovIIsqV" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" - }, - "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", - "id": "29GuyTDTPnxeRQhEdbmGLn", - "name": "HEXXENMIND", - "type": "artist", - "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" - }, - "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", - "id": "3nL6S2DQUe71FicS2UpJ4b", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487", - "width": 64 - } - ], - "is_playable": true, - "name": "The Fate of Ophelia - Rock", - "release_date": "2025-10-15", - "release_date_precision": "day", - "total_tracks": 4, - "type": "album", - "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" - }, - "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", - "id": "29GuyTDTPnxeRQhEdbmGLn", - "name": "HEXXENMIND", - "type": "artist", - "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 267697, - "explicit": false, - "external_ids": { "isrc": "MXA3V2454127" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/0wnYgCeP013HkKoOyC5V32" + }, + "href": "https://api.spotify.com/v1/artists/0wnYgCeP013HkKoOyC5V32", + "id": "0wnYgCeP013HkKoOyC5V32", + "name": "Allie X", + "type": "artist", + "uri": "spotify:artist:0wnYgCeP013HkKoOyC5V32" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 236026, + "explicit": false, + "external_ids": { "isrc": "QMFME2521305" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3H2rJN1EXtwchBCSPtQMH1" + }, + "href": "https://api.spotify.com/v1/tracks/3H2rJN1EXtwchBCSPtQMH1", + "id": "3H2rJN1EXtwchBCSPtQMH1", + "is_local": false, + "is_playable": true, + "name": "Reunite", + "popularity": 40, + "preview_url": null, + "track_number": 4, + "type": "track", + "uri": "spotify:track:3H2rJN1EXtwchBCSPtQMH1" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" }, - "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", - "id": "7sa0Obv4Y9y7rpIYhudEu7", - "is_local": false, - "is_playable": true, - "name": "The Fate of Ophelia", - "popularity": 56, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3nL6S2DQUe71FicS2UpJ4b" }, + "href": "https://api.spotify.com/v1/albums/3nL6S2DQUe71FicS2UpJ4b", + "id": "3nL6S2DQUe71FicS2UpJ4b", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ef9542dcf36ea3f7f66d2487", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ef9542dcf36ea3f7f66d2487", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ef9542dcf36ea3f7f66d2487", + "width": 64 + } + ], + "is_playable": true, + "name": "The Fate of Ophelia - Rock", + "release_date": "2025-10-15", + "release_date_precision": "day", + "total_tracks": 4, + "type": "album", + "uri": "spotify:album:3nL6S2DQUe71FicS2UpJ4b" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" - }, - "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", - "id": "1A6HQzOvtGaCYihOuIKjE6", - "name": "Mr. Polska", - "type": "artist", - "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" - }, - "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", - "id": "2z9op9COiMU6QquVfY8HTN", - "name": "WINSON", - "type": "artist", - "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" - }, - "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", - "id": "30tToHC6q3nB7Lious0MZW", - "name": "Teletech", - "type": "artist", - "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" - }, - "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", - "id": "6KpFTQPwkK9hY39Tl7Wggv", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9", - "width": 64 - } - ], - "is_playable": true, - "name": "Otherside", - "release_date": "2025-12-19", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" + "external_urls": { + "spotify": "https://open.spotify.com/artist/29GuyTDTPnxeRQhEdbmGLn" + }, + "href": "https://api.spotify.com/v1/artists/29GuyTDTPnxeRQhEdbmGLn", + "id": "29GuyTDTPnxeRQhEdbmGLn", + "name": "HEXXENMIND", + "type": "artist", + "uri": "spotify:artist:29GuyTDTPnxeRQhEdbmGLn" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 267697, + "explicit": false, + "external_ids": { "isrc": "MXA3V2454127" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/7sa0Obv4Y9y7rpIYhudEu7" + }, + "href": "https://api.spotify.com/v1/tracks/7sa0Obv4Y9y7rpIYhudEu7", + "id": "7sa0Obv4Y9y7rpIYhudEu7", + "is_local": false, + "is_playable": true, + "name": "The Fate of Ophelia", + "popularity": 56, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:7sa0Obv4Y9y7rpIYhudEu7" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" - }, - "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", - "id": "1A6HQzOvtGaCYihOuIKjE6", - "name": "Mr. Polska", - "type": "artist", - "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" - }, - "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", - "id": "2z9op9COiMU6QquVfY8HTN", - "name": "WINSON", - "type": "artist", - "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" - }, - "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", - "id": "30tToHC6q3nB7Lious0MZW", - "name": "Teletech", - "type": "artist", - "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 192000, - "explicit": false, - "external_ids": { "isrc": "DEH742537818" }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" }, - "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", - "id": "07Zj558j9j9TWq7HIcTFZn", - "is_local": false, - "is_playable": true, - "name": "Otherside", - "popularity": 44, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/6KpFTQPwkK9hY39Tl7Wggv" }, + "href": "https://api.spotify.com/v1/albums/6KpFTQPwkK9hY39Tl7Wggv", + "id": "6KpFTQPwkK9hY39Tl7Wggv", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273acac489988aaa24f3fec5eb9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02acac489988aaa24f3fec5eb9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851acac489988aaa24f3fec5eb9", + "width": 64 + } + ], + "is_playable": true, + "name": "Otherside", + "release_date": "2025-12-19", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:6KpFTQPwkK9hY39Tl7Wggv" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/4MRcN8PhMhBe84tcPLe2QJ" - }, - "href": "https://api.spotify.com/v1/albums/4MRcN8PhMhBe84tcPLe2QJ", - "id": "4MRcN8PhMhBe84tcPLe2QJ", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2731b029b71b43652cdc6e9fc0f", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e021b029b71b43652cdc6e9fc0f", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048511b029b71b43652cdc6e9fc0f", - "width": 64 - } - ], - "is_playable": true, - "name": "A Moment Apart (Deluxe Edition)", - "release_date": "2018-11-30", - "release_date_precision": "day", - "total_tracks": 25, - "type": "album", - "uri": "spotify:album:4MRcN8PhMhBe84tcPLe2QJ" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" - }, - "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", - "id": "21mKp7DqtSNHhCAU2ugvUw", - "name": "ODESZA", - "type": "artist", - "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/0DGAOR3KtqWwWSwDzhzqOa" - }, - "href": "https://api.spotify.com/v1/artists/0DGAOR3KtqWwWSwDzhzqOa", - "id": "0DGAOR3KtqWwWSwDzhzqOa", - "name": "Zyra", - "type": "artist", - "uri": "spotify:artist:0DGAOR3KtqWwWSwDzhzqOa" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 2, - "duration_ms": 240440, - "explicit": false, - "external_ids": { "isrc": "GBCFB1800360" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/1A6HQzOvtGaCYihOuIKjE6" + }, + "href": "https://api.spotify.com/v1/artists/1A6HQzOvtGaCYihOuIKjE6", + "id": "1A6HQzOvtGaCYihOuIKjE6", + "name": "Mr. Polska", + "type": "artist", + "uri": "spotify:artist:1A6HQzOvtGaCYihOuIKjE6" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/2z9op9COiMU6QquVfY8HTN" + }, + "href": "https://api.spotify.com/v1/artists/2z9op9COiMU6QquVfY8HTN", + "id": "2z9op9COiMU6QquVfY8HTN", + "name": "WINSON", + "type": "artist", + "uri": "spotify:artist:2z9op9COiMU6QquVfY8HTN" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/30tToHC6q3nB7Lious0MZW" + }, + "href": "https://api.spotify.com/v1/artists/30tToHC6q3nB7Lious0MZW", + "id": "30tToHC6q3nB7Lious0MZW", + "name": "Teletech", + "type": "artist", + "uri": "spotify:artist:30tToHC6q3nB7Lious0MZW" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 192000, + "explicit": false, + "external_ids": { "isrc": "DEH742537818" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/07Zj558j9j9TWq7HIcTFZn" + }, + "href": "https://api.spotify.com/v1/tracks/07Zj558j9j9TWq7HIcTFZn", + "id": "07Zj558j9j9TWq7HIcTFZn", + "is_local": false, + "is_playable": true, + "name": "Otherside", + "popularity": 44, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:07Zj558j9j9TWq7HIcTFZn" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/2XyNLoEWc4IDt9OVzXZUXl" + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" }, - "href": "https://api.spotify.com/v1/tracks/2XyNLoEWc4IDt9OVzXZUXl", - "id": "2XyNLoEWc4IDt9OVzXZUXl", - "is_local": false, - "is_playable": true, - "name": "It\u2019s Only - ODESZA VIP Remix", - "popularity": 58, - "preview_url": null, - "track_number": 3, - "type": "track", - "uri": "spotify:track:2XyNLoEWc4IDt9OVzXZUXl" + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/4MRcN8PhMhBe84tcPLe2QJ" }, + "href": "https://api.spotify.com/v1/albums/4MRcN8PhMhBe84tcPLe2QJ", + "id": "4MRcN8PhMhBe84tcPLe2QJ", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2731b029b71b43652cdc6e9fc0f", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e021b029b71b43652cdc6e9fc0f", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048511b029b71b43652cdc6e9fc0f", + "width": 64 + } + ], + "is_playable": true, + "name": "A Moment Apart (Deluxe Edition)", + "release_date": "2018-11-30", + "release_date_precision": "day", + "total_tracks": 25, + "type": "album", + "uri": "spotify:album:4MRcN8PhMhBe84tcPLe2QJ" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" - }, - "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", - "id": "1NcsVSxFdXsnwvE64zV9xX", - "name": "Rave The Reqviem", - "type": "artist", - "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" - }, - "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", - "id": "3ZdwtiZ6iYOtkRtFq2tmO9", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75", - "width": 64 - } - ], - "is_playable": true, - "name": "The Gospel of Nil - Revised Standard Version", - "release_date": "2016-10-06", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" - }, - "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", - "id": "1NcsVSxFdXsnwvE64zV9xX", - "name": "Rave The Reqviem", - "type": "artist", - "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 194085, - "explicit": false, - "external_ids": { "isrc": "TCACP1623532" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/21mKp7DqtSNHhCAU2ugvUw" + }, + "href": "https://api.spotify.com/v1/artists/21mKp7DqtSNHhCAU2ugvUw", + "id": "21mKp7DqtSNHhCAU2ugvUw", + "name": "ODESZA", + "type": "artist", + "uri": "spotify:artist:21mKp7DqtSNHhCAU2ugvUw" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/0DGAOR3KtqWwWSwDzhzqOa" + }, + "href": "https://api.spotify.com/v1/artists/0DGAOR3KtqWwWSwDzhzqOa", + "id": "0DGAOR3KtqWwWSwDzhzqOa", + "name": "Zyra", + "type": "artist", + "uri": "spotify:artist:0DGAOR3KtqWwWSwDzhzqOa" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 2, + "duration_ms": 240440, + "explicit": false, + "external_ids": { "isrc": "GBCFB1800360" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/2XyNLoEWc4IDt9OVzXZUXl" + }, + "href": "https://api.spotify.com/v1/tracks/2XyNLoEWc4IDt9OVzXZUXl", + "id": "2XyNLoEWc4IDt9OVzXZUXl", + "is_local": false, + "is_playable": true, + "name": "It\u2019s Only - ODESZA VIP Remix", + "popularity": 58, + "preview_url": null, + "track_number": 3, + "type": "track", + "uri": "spotify:track:2XyNLoEWc4IDt9OVzXZUXl" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" }, - "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", - "id": "6vy64DzPmsCUNue0FpmM6r", - "is_local": false, - "is_playable": true, - "name": "Mono Heart", - "popularity": 29, - "preview_url": null, - "track_number": 6, - "type": "track", - "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/3ZdwtiZ6iYOtkRtFq2tmO9" }, + "href": "https://api.spotify.com/v1/albums/3ZdwtiZ6iYOtkRtFq2tmO9", + "id": "3ZdwtiZ6iYOtkRtFq2tmO9", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273a289c90263027f60738bed75", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02a289c90263027f60738bed75", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851a289c90263027f60738bed75", + "width": 64 + } + ], + "is_playable": true, + "name": "The Gospel of Nil - Revised Standard Version", + "release_date": "2016-10-06", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:3ZdwtiZ6iYOtkRtFq2tmO9" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" - }, - "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", - "id": "1yqxFtPHKcGcv6SXZNdyT9", - "name": "MK", - "type": "artist", - "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" - }, - "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", - "id": "4DWuml4Jf6K81b5rAPwMb6", - "name": "Clementine Douglas", - "type": "artist", - "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2D48QGD5lU5kErH6PxLjTs" - }, - "href": "https://api.spotify.com/v1/albums/2D48QGD5lU5kErH6PxLjTs", - "id": "2D48QGD5lU5kErH6PxLjTs", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273ff386681b00d7f8ee77734c9", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02ff386681b00d7f8ee77734c9", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851ff386681b00d7f8ee77734c9", - "width": 64 - } - ], - "is_playable": true, - "name": "Come Find Me (with Clementine Douglas)", - "release_date": "2025-09-26", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2D48QGD5lU5kErH6PxLjTs" + "external_urls": { + "spotify": "https://open.spotify.com/artist/1NcsVSxFdXsnwvE64zV9xX" + }, + "href": "https://api.spotify.com/v1/artists/1NcsVSxFdXsnwvE64zV9xX", + "id": "1NcsVSxFdXsnwvE64zV9xX", + "name": "Rave The Reqviem", + "type": "artist", + "uri": "spotify:artist:1NcsVSxFdXsnwvE64zV9xX" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 194085, + "explicit": false, + "external_ids": { "isrc": "TCACP1623532" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6vy64DzPmsCUNue0FpmM6r" + }, + "href": "https://api.spotify.com/v1/tracks/6vy64DzPmsCUNue0FpmM6r", + "id": "6vy64DzPmsCUNue0FpmM6r", + "is_local": false, + "is_playable": true, + "name": "Mono Heart", + "popularity": 29, + "preview_url": null, + "track_number": 6, + "type": "track", + "uri": "spotify:track:6vy64DzPmsCUNue0FpmM6r" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" - }, - "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", - "id": "1yqxFtPHKcGcv6SXZNdyT9", - "name": "MK", - "type": "artist", - "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" - }, - "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", - "id": "4DWuml4Jf6K81b5rAPwMb6", - "name": "Clementine Douglas", - "type": "artist", - "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 207149, - "explicit": false, - "external_ids": { "isrc": "GBARL2501473" }, + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "name": "MK", + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/03AhbPoniP5uqqJKYGWgZE" + "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" }, - "href": "https://api.spotify.com/v1/tracks/03AhbPoniP5uqqJKYGWgZE", - "id": "03AhbPoniP5uqqJKYGWgZE", - "is_local": false, - "is_playable": true, - "name": "Come Find Me (with Clementine Douglas)", - "popularity": 67, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:03AhbPoniP5uqqJKYGWgZE" + "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", + "id": "4DWuml4Jf6K81b5rAPwMb6", + "name": "Clementine Douglas", + "type": "artist", + "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2D48QGD5lU5kErH6PxLjTs" }, + "href": "https://api.spotify.com/v1/albums/2D48QGD5lU5kErH6PxLjTs", + "id": "2D48QGD5lU5kErH6PxLjTs", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273ff386681b00d7f8ee77734c9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02ff386681b00d7f8ee77734c9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851ff386681b00d7f8ee77734c9", + "width": 64 + } + ], + "is_playable": true, + "name": "Come Find Me (with Clementine Douglas)", + "release_date": "2025-09-26", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2D48QGD5lU5kErH6PxLjTs" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" - }, - "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", - "id": "343NN0x0NpJGNjwB52gJ5J", - "name": "FHE", - "type": "artist", - "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" - }, - "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", - "id": "2OMCroH113OoIxVbMUwtSY", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647", - "width": 64 - } - ], - "is_playable": true, - "name": "Beg For More", - "release_date": "2020-07-23", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" - }, - "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", - "id": "343NN0x0NpJGNjwB52gJ5J", - "name": "FHE", - "type": "artist", - "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 203586, - "explicit": false, - "external_ids": { "isrc": "GBKQU2075409" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/1yqxFtPHKcGcv6SXZNdyT9" + }, + "href": "https://api.spotify.com/v1/artists/1yqxFtPHKcGcv6SXZNdyT9", + "id": "1yqxFtPHKcGcv6SXZNdyT9", + "name": "MK", + "type": "artist", + "uri": "spotify:artist:1yqxFtPHKcGcv6SXZNdyT9" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/4DWuml4Jf6K81b5rAPwMb6" + }, + "href": "https://api.spotify.com/v1/artists/4DWuml4Jf6K81b5rAPwMb6", + "id": "4DWuml4Jf6K81b5rAPwMb6", + "name": "Clementine Douglas", + "type": "artist", + "uri": "spotify:artist:4DWuml4Jf6K81b5rAPwMb6" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 207149, + "explicit": false, + "external_ids": { "isrc": "GBARL2501473" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/03AhbPoniP5uqqJKYGWgZE" + }, + "href": "https://api.spotify.com/v1/tracks/03AhbPoniP5uqqJKYGWgZE", + "id": "03AhbPoniP5uqqJKYGWgZE", + "is_local": false, + "is_playable": true, + "name": "Come Find Me (with Clementine Douglas)", + "popularity": 67, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:03AhbPoniP5uqqJKYGWgZE" + }, + { + "album": { + "album_type": "single", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" }, - "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", - "id": "6DEsqinq33fSFFMj6MoEH3", - "is_local": false, - "is_playable": true, - "name": "Beg For More", - "popularity": 31, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2OMCroH113OoIxVbMUwtSY" }, + "href": "https://api.spotify.com/v1/albums/2OMCroH113OoIxVbMUwtSY", + "id": "2OMCroH113OoIxVbMUwtSY", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b273e8622fd0b82b487248ce5647", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e02e8622fd0b82b487248ce5647", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d00004851e8622fd0b82b487248ce5647", + "width": 64 + } + ], + "is_playable": true, + "name": "Beg For More", + "release_date": "2020-07-23", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:2OMCroH113OoIxVbMUwtSY" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" - }, - "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", - "id": "4v4qHupYi7eRJfkniHrp4Z", - "name": "Young Guns", - "type": "artist", - "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" - }, - "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", - "id": "2ZYmViriDHQS2bzBohrLXj", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe", - "width": 64 - } - ], - "is_playable": true, - "name": "Ones And Zeros", - "release_date": "2015-02-18", - "release_date_precision": "day", - "total_tracks": 12, - "type": "album", - "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" - }, - "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", - "id": "4v4qHupYi7eRJfkniHrp4Z", - "name": "Young Guns", - "type": "artist", - "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "XK" - ], - "disc_number": 1, - "duration_ms": 224213, - "explicit": false, - "external_ids": { "isrc": "GBUM71406930" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/343NN0x0NpJGNjwB52gJ5J" + }, + "href": "https://api.spotify.com/v1/artists/343NN0x0NpJGNjwB52gJ5J", + "id": "343NN0x0NpJGNjwB52gJ5J", + "name": "FHE", + "type": "artist", + "uri": "spotify:artist:343NN0x0NpJGNjwB52gJ5J" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 203586, + "explicit": false, + "external_ids": { "isrc": "GBKQU2075409" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/6DEsqinq33fSFFMj6MoEH3" + }, + "href": "https://api.spotify.com/v1/tracks/6DEsqinq33fSFFMj6MoEH3", + "id": "6DEsqinq33fSFFMj6MoEH3", + "is_local": false, + "is_playable": true, + "name": "Beg For More", + "popularity": 31, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:6DEsqinq33fSFFMj6MoEH3" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" }, - "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", - "id": "0QSMTHdo8JRa7PazhGrbIK", - "is_local": false, - "is_playable": true, - "name": "I Want Out", - "popularity": 29, - "preview_url": null, - "track_number": 2, - "type": "track", - "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/2ZYmViriDHQS2bzBohrLXj" }, + "href": "https://api.spotify.com/v1/albums/2ZYmViriDHQS2bzBohrLXj", + "id": "2ZYmViriDHQS2bzBohrLXj", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738f2411416b3b2fe181d559fe", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028f2411416b3b2fe181d559fe", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518f2411416b3b2fe181d559fe", + "width": 64 + } + ], + "is_playable": true, + "name": "Ones And Zeros", + "release_date": "2015-02-18", + "release_date_precision": "day", + "total_tracks": 12, + "type": "album", + "uri": "spotify:album:2ZYmViriDHQS2bzBohrLXj" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" - }, - "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", - "id": "4gfZR0IgXCNrMe1U2QfnyA", - "name": "DummiBoiBeatz", - "type": "artist", - "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" - } - ], - "available_markets": [], - "external_urls": { - "spotify": "https://open.spotify.com/album/3R9XNmwrYl49GE9tKPCtpL" - }, - "href": "https://api.spotify.com/v1/albums/3R9XNmwrYl49GE9tKPCtpL", - "id": "3R9XNmwrYl49GE9tKPCtpL", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2738ac99c178ab3be15dcac0aa9", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e028ac99c178ab3be15dcac0aa9", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048518ac99c178ab3be15dcac0aa9", - "width": 64 - } - ], - "is_playable": true, - "name": "Chosen (Side A)", - "release_date": "2025-09-19", - "release_date_precision": "day", - "total_tracks": 10, - "type": "album", - "uri": "spotify:album:3R9XNmwrYl49GE9tKPCtpL" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" - }, - "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", - "id": "4gfZR0IgXCNrMe1U2QfnyA", - "name": "DummiBoiBeatz", - "type": "artist", - "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/6y6iXD929Jqq0xc6lgwhl1" - }, - "href": "https://api.spotify.com/v1/artists/6y6iXD929Jqq0xc6lgwhl1", - "id": "6y6iXD929Jqq0xc6lgwhl1", - "name": "LAUREL", - "type": "artist", - "uri": "spotify:artist:6y6iXD929Jqq0xc6lgwhl1" - } - ], - "available_markets": [], - "disc_number": 1, - "duration_ms": 222916, - "explicit": false, - "external_ids": { "isrc": "QT3EX2515848" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4v4qHupYi7eRJfkniHrp4Z" + }, + "href": "https://api.spotify.com/v1/artists/4v4qHupYi7eRJfkniHrp4Z", + "id": "4v4qHupYi7eRJfkniHrp4Z", + "name": "Young Guns", + "type": "artist", + "uri": "spotify:artist:4v4qHupYi7eRJfkniHrp4Z" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "XK" + ], + "disc_number": 1, + "duration_ms": 224213, + "explicit": false, + "external_ids": { "isrc": "GBUM71406930" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0QSMTHdo8JRa7PazhGrbIK" + }, + "href": "https://api.spotify.com/v1/tracks/0QSMTHdo8JRa7PazhGrbIK", + "id": "0QSMTHdo8JRa7PazhGrbIK", + "is_local": false, + "is_playable": true, + "name": "I Want Out", + "popularity": 29, + "preview_url": null, + "track_number": 2, + "type": "track", + "uri": "spotify:track:0QSMTHdo8JRa7PazhGrbIK" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/17abRyAYKiIm2B46H2jrix" + "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" }, - "href": "https://api.spotify.com/v1/tracks/17abRyAYKiIm2B46H2jrix", - "id": "17abRyAYKiIm2B46H2jrix", - "is_local": false, - "is_playable": false, - "name": "Drown In Sunlight - DummiBoiBeatz Version", - "popularity": 1, - "preview_url": null, - "restrictions": { "reason": "market" }, - "track_number": 1, - "type": "track", - "uri": "spotify:track:17abRyAYKiIm2B46H2jrix" + "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", + "id": "4gfZR0IgXCNrMe1U2QfnyA", + "name": "DummiBoiBeatz", + "type": "artist", + "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" + } + ], + "available_markets": [], + "external_urls": { + "spotify": "https://open.spotify.com/album/3R9XNmwrYl49GE9tKPCtpL" }, + "href": "https://api.spotify.com/v1/albums/3R9XNmwrYl49GE9tKPCtpL", + "id": "3R9XNmwrYl49GE9tKPCtpL", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2738ac99c178ab3be15dcac0aa9", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e028ac99c178ab3be15dcac0aa9", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048518ac99c178ab3be15dcac0aa9", + "width": 64 + } + ], + "is_playable": true, + "name": "Chosen (Side A)", + "release_date": "2025-09-19", + "release_date_precision": "day", + "total_tracks": 10, + "type": "album", + "uri": "spotify:album:3R9XNmwrYl49GE9tKPCtpL" + }, + "artists": [ { - "album": { - "album_type": "album", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" - }, - "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", - "id": "1jjx7U3tayhJTytJVBj0WY", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", - "width": 64 - } - ], - "is_playable": true, - "name": "Legends", - "release_date": "2025-10-17", - "release_date_precision": "day", - "total_tracks": 11, - "type": "album", - "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY" - }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" - }, - "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", - "id": "3o2dn2O0FCVsWDFSh8qxgG", - "name": "Sabaton", - "type": "artist", - "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 255973, - "explicit": false, - "external_ids": { "isrc": "SE6HE2500105" }, + "external_urls": { + "spotify": "https://open.spotify.com/artist/4gfZR0IgXCNrMe1U2QfnyA" + }, + "href": "https://api.spotify.com/v1/artists/4gfZR0IgXCNrMe1U2QfnyA", + "id": "4gfZR0IgXCNrMe1U2QfnyA", + "name": "DummiBoiBeatz", + "type": "artist", + "uri": "spotify:artist:4gfZR0IgXCNrMe1U2QfnyA" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/6y6iXD929Jqq0xc6lgwhl1" + }, + "href": "https://api.spotify.com/v1/artists/6y6iXD929Jqq0xc6lgwhl1", + "id": "6y6iXD929Jqq0xc6lgwhl1", + "name": "LAUREL", + "type": "artist", + "uri": "spotify:artist:6y6iXD929Jqq0xc6lgwhl1" + } + ], + "available_markets": [], + "disc_number": 1, + "duration_ms": 222916, + "explicit": false, + "external_ids": { "isrc": "QT3EX2515848" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/17abRyAYKiIm2B46H2jrix" + }, + "href": "https://api.spotify.com/v1/tracks/17abRyAYKiIm2B46H2jrix", + "id": "17abRyAYKiIm2B46H2jrix", + "is_local": false, + "is_playable": false, + "name": "Drown In Sunlight - DummiBoiBeatz Version", + "popularity": 1, + "preview_url": null, + "restrictions": { "reason": "market" }, + "track_number": 1, + "type": "track", + "uri": "spotify:track:17abRyAYKiIm2B46H2jrix" + }, + { + "album": { + "album_type": "album", + "artists": [ + { "external_urls": { - "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" }, - "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", - "id": "3CZDkpmq245kzvCe44P2hM", - "is_local": false, - "is_playable": true, - "name": "I, Emperor", - "popularity": 64, - "preview_url": null, - "track_number": 5, - "type": "track", - "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM" + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/1jjx7U3tayhJTytJVBj0WY" }, + "href": "https://api.spotify.com/v1/albums/1jjx7U3tayhJTytJVBj0WY", + "id": "1jjx7U3tayhJTytJVBj0WY", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b2732015d006804756df2e271b74", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e022015d006804756df2e271b74", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d000048512015d006804756df2e271b74", + "width": 64 + } + ], + "is_playable": true, + "name": "Legends", + "release_date": "2025-10-17", + "release_date_precision": "day", + "total_tracks": 11, + "type": "album", + "uri": "spotify:album:1jjx7U3tayhJTytJVBj0WY" + }, + "artists": [ { - "album": { - "album_type": "single", - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" - }, - "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", - "id": "5kDJnYkE7Xm5zgEsJHb23u", - "name": "emi x", - "type": "artist", - "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "external_urls": { - "spotify": "https://open.spotify.com/album/5fuGZizTNkIW3Y0xqJEInl" - }, - "href": "https://api.spotify.com/v1/albums/5fuGZizTNkIW3Y0xqJEInl", - "id": "5fuGZizTNkIW3Y0xqJEInl", - "images": [ - { - "height": 640, - "url": "https://i.scdn.co/image/ab67616d0000b27323e759d17f77ea31f69c3fb2", - "width": 640 - }, - { - "height": 300, - "url": "https://i.scdn.co/image/ab67616d00001e0223e759d17f77ea31f69c3fb2", - "width": 300 - }, - { - "height": 64, - "url": "https://i.scdn.co/image/ab67616d0000485123e759d17f77ea31f69c3fb2", - "width": 64 - } - ], - "is_playable": true, - "name": "unter ihrem dress", - "release_date": "2021-10-29", - "release_date_precision": "day", - "total_tracks": 1, - "type": "album", - "uri": "spotify:album:5fuGZizTNkIW3Y0xqJEInl" + "external_urls": { + "spotify": "https://open.spotify.com/artist/3o2dn2O0FCVsWDFSh8qxgG" + }, + "href": "https://api.spotify.com/v1/artists/3o2dn2O0FCVsWDFSh8qxgG", + "id": "3o2dn2O0FCVsWDFSh8qxgG", + "name": "Sabaton", + "type": "artist", + "uri": "spotify:artist:3o2dn2O0FCVsWDFSh8qxgG" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 255973, + "explicit": false, + "external_ids": { "isrc": "SE6HE2500105" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/3CZDkpmq245kzvCe44P2hM" + }, + "href": "https://api.spotify.com/v1/tracks/3CZDkpmq245kzvCe44P2hM", + "id": "3CZDkpmq245kzvCe44P2hM", + "is_local": false, + "is_playable": true, + "name": "I, Emperor", + "popularity": 64, + "preview_url": null, + "track_number": 5, + "type": "track", + "uri": "spotify:track:3CZDkpmq245kzvCe44P2hM" + }, + { + "album": { + "album_type": "single", + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" }, - "artists": [ - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" - }, - "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", - "id": "17l4XlVVWNktDeJDigQ3HJ", - "name": "Dilla", - "type": "artist", - "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" - }, - { - "external_urls": { - "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" - }, - "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", - "id": "5kDJnYkE7Xm5zgEsJHb23u", - "name": "emi x", - "type": "artist", - "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" - } - ], - "available_markets": [ - "AR", - "AU", - "AT", - "BE", - "BO", - "BR", - "BG", - "CA", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DK", - "DO", - "DE", - "EC", - "EE", - "SV", - "FI", - "FR", - "GR", - "GT", - "HN", - "HK", - "HU", - "IS", - "IE", - "IT", - "LV", - "LT", - "LU", - "MY", - "MT", - "MX", - "NL", - "NZ", - "NI", - "NO", - "PA", - "PY", - "PE", - "PH", - "PL", - "PT", - "SG", - "SK", - "ES", - "SE", - "CH", - "TW", - "TR", - "UY", - "US", - "GB", - "AD", - "LI", - "MC", - "ID", - "JP", - "TH", - "VN", - "RO", - "IL", - "ZA", - "SA", - "AE", - "BH", - "QA", - "OM", - "KW", - "EG", - "MA", - "DZ", - "TN", - "LB", - "JO", - "PS", - "IN", - "BY", - "KZ", - "MD", - "UA", - "AL", - "BA", - "HR", - "ME", - "MK", - "RS", - "SI", - "KR", - "BD", - "PK", - "LK", - "GH", - "KE", - "NG", - "TZ", - "UG", - "AG", - "AM", - "BS", - "BB", - "BZ", - "BT", - "BW", - "BF", - "CV", - "CW", - "DM", - "FJ", - "GM", - "GE", - "GD", - "GW", - "GY", - "HT", - "JM", - "KI", - "LS", - "LR", - "MW", - "MV", - "ML", - "MH", - "FM", - "NA", - "NR", - "NE", - "PW", - "PG", - "PR", - "WS", - "SM", - "ST", - "SN", - "SC", - "SL", - "SB", - "KN", - "LC", - "VC", - "SR", - "TL", - "TO", - "TT", - "TV", - "VU", - "AZ", - "BN", - "BI", - "KH", - "CM", - "TD", - "KM", - "GQ", - "SZ", - "GA", - "GN", - "KG", - "LA", - "MO", - "MR", - "MN", - "NP", - "RW", - "TG", - "UZ", - "ZW", - "BJ", - "MG", - "MU", - "MZ", - "AO", - "CI", - "DJ", - "ZM", - "CD", - "CG", - "IQ", - "LY", - "TJ", - "VE", - "ET", - "XK" - ], - "disc_number": 1, - "duration_ms": 164295, - "explicit": false, - "external_ids": { "isrc": "QZNWV2190153" }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { "external_urls": { - "spotify": "https://open.spotify.com/track/0fUSdXwgftvDECtVpSZ2cn" + "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" }, - "href": "https://api.spotify.com/v1/tracks/0fUSdXwgftvDECtVpSZ2cn", - "id": "0fUSdXwgftvDECtVpSZ2cn", - "is_local": false, - "is_playable": true, - "name": "unter ihrem dress", - "popularity": 46, - "preview_url": null, - "track_number": 1, - "type": "track", - "uri": "spotify:track:0fUSdXwgftvDECtVpSZ2cn" + "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", + "id": "5kDJnYkE7Xm5zgEsJHb23u", + "name": "emi x", + "type": "artist", + "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" + } + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "external_urls": { + "spotify": "https://open.spotify.com/album/5fuGZizTNkIW3Y0xqJEInl" + }, + "href": "https://api.spotify.com/v1/albums/5fuGZizTNkIW3Y0xqJEInl", + "id": "5fuGZizTNkIW3Y0xqJEInl", + "images": [ + { + "height": 640, + "url": "https://i.scdn.co/image/ab67616d0000b27323e759d17f77ea31f69c3fb2", + "width": 640 + }, + { + "height": 300, + "url": "https://i.scdn.co/image/ab67616d00001e0223e759d17f77ea31f69c3fb2", + "width": 300 + }, + { + "height": 64, + "url": "https://i.scdn.co/image/ab67616d0000485123e759d17f77ea31f69c3fb2", + "width": 64 + } + ], + "is_playable": true, + "name": "unter ihrem dress", + "release_date": "2021-10-29", + "release_date_precision": "day", + "total_tracks": 1, + "type": "album", + "uri": "spotify:album:5fuGZizTNkIW3Y0xqJEInl" + }, + "artists": [ + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/17l4XlVVWNktDeJDigQ3HJ" + }, + "href": "https://api.spotify.com/v1/artists/17l4XlVVWNktDeJDigQ3HJ", + "id": "17l4XlVVWNktDeJDigQ3HJ", + "name": "Dilla", + "type": "artist", + "uri": "spotify:artist:17l4XlVVWNktDeJDigQ3HJ" + }, + { + "external_urls": { + "spotify": "https://open.spotify.com/artist/5kDJnYkE7Xm5zgEsJHb23u" + }, + "href": "https://api.spotify.com/v1/artists/5kDJnYkE7Xm5zgEsJHb23u", + "id": "5kDJnYkE7Xm5zgEsJHb23u", + "name": "emi x", + "type": "artist", + "uri": "spotify:artist:5kDJnYkE7Xm5zgEsJHb23u" } - ], - "total": 2742, - "limit": 48, - "offset": 0, - "href": "https://api.spotify.com/v1/me/top/tracks?limit=48", - "next": "https://api.spotify.com/v1/me/top/tracks?offset=48&limit=48", - "previous": null + ], + "available_markets": [ + "AR", + "AU", + "AT", + "BE", + "BO", + "BR", + "BG", + "CA", + "CL", + "CO", + "CR", + "CY", + "CZ", + "DK", + "DO", + "DE", + "EC", + "EE", + "SV", + "FI", + "FR", + "GR", + "GT", + "HN", + "HK", + "HU", + "IS", + "IE", + "IT", + "LV", + "LT", + "LU", + "MY", + "MT", + "MX", + "NL", + "NZ", + "NI", + "NO", + "PA", + "PY", + "PE", + "PH", + "PL", + "PT", + "SG", + "SK", + "ES", + "SE", + "CH", + "TW", + "TR", + "UY", + "US", + "GB", + "AD", + "LI", + "MC", + "ID", + "JP", + "TH", + "VN", + "RO", + "IL", + "ZA", + "SA", + "AE", + "BH", + "QA", + "OM", + "KW", + "EG", + "MA", + "DZ", + "TN", + "LB", + "JO", + "PS", + "IN", + "BY", + "KZ", + "MD", + "UA", + "AL", + "BA", + "HR", + "ME", + "MK", + "RS", + "SI", + "KR", + "BD", + "PK", + "LK", + "GH", + "KE", + "NG", + "TZ", + "UG", + "AG", + "AM", + "BS", + "BB", + "BZ", + "BT", + "BW", + "BF", + "CV", + "CW", + "DM", + "FJ", + "GM", + "GE", + "GD", + "GW", + "GY", + "HT", + "JM", + "KI", + "LS", + "LR", + "MW", + "MV", + "ML", + "MH", + "FM", + "NA", + "NR", + "NE", + "PW", + "PG", + "PR", + "WS", + "SM", + "ST", + "SN", + "SC", + "SL", + "SB", + "KN", + "LC", + "VC", + "SR", + "TL", + "TO", + "TT", + "TV", + "VU", + "AZ", + "BN", + "BI", + "KH", + "CM", + "TD", + "KM", + "GQ", + "SZ", + "GA", + "GN", + "KG", + "LA", + "MO", + "MR", + "MN", + "NP", + "RW", + "TG", + "UZ", + "ZW", + "BJ", + "MG", + "MU", + "MZ", + "AO", + "CI", + "DJ", + "ZM", + "CD", + "CG", + "IQ", + "LY", + "TJ", + "VE", + "ET", + "XK" + ], + "disc_number": 1, + "duration_ms": 164295, + "explicit": false, + "external_ids": { "isrc": "QZNWV2190153" }, + "external_urls": { + "spotify": "https://open.spotify.com/track/0fUSdXwgftvDECtVpSZ2cn" + }, + "href": "https://api.spotify.com/v1/tracks/0fUSdXwgftvDECtVpSZ2cn", + "id": "0fUSdXwgftvDECtVpSZ2cn", + "is_local": false, + "is_playable": true, + "name": "unter ihrem dress", + "popularity": 46, + "preview_url": null, + "track_number": 1, + "type": "track", + "uri": "spotify:track:0fUSdXwgftvDECtVpSZ2cn" + } + ], + "total": 2742, + "limit": 48, + "offset": 0, + "href": "https://api.spotify.com/v1/me/top/tracks?limit=48", + "next": "https://api.spotify.com/v1/me/top/tracks?offset=48&limit=48", + "previous": null }